/* Cyberpunk Gaming Theme - BADSHAH */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #0a1a2e 100%);
  color: #00ff88;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 191, 255, 0.05) 0%, transparent 50%);
  z-index: -1;
}

/* Cyberpunk Sticky Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid #00ff88;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #00ff88;
  text-decoration: none;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
  position: relative;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #00ff88, #8a2be2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.logo:hover::after {
  transform: scaleX(1);
}

.crown-icon {
  font-size: 2rem;
  animation: cyberGlow 2s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.8));
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: #00ff88;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.nav-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #00ff88, #8a2be2);
  transition: left 0.3s ease;
  z-index: -1;
}

.nav-links a:hover::before,
.nav-links a.active::before {
  left: 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: #000;
  border-color: #00ff88;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
  text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
}

/* Mobile Menu Styles */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #00ff88;
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
}

/* Mobile Menu Button Animation */
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.royal-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-crown,
.floating-diamond,
.floating-gold,
.floating-trophy {
  position: absolute;
  font-size: 2rem;
  animation: cyberFloat 6s ease-in-out infinite;
  opacity: 0.4;
  filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

.floating-crown { top: 20%; left: 10%; animation-delay: 0s; }
.floating-diamond { top: 60%; right: 15%; animation-delay: 2s; }
.floating-gold { bottom: 30%; left: 20%; animation-delay: 4s; }
.floating-trophy { top: 40%; right: 30%; animation-delay: 1s; }

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.royal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #00ff88, #8a2be2);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #000;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
  border: 1px solid rgba(0, 255, 136, 0.5);
}

.badge-icon {
  font-size: 1.2rem;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.golden-text {
  background: linear-gradient(135deg, #00ff88 0%, #8a2be2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: cyberPulse 2s ease-in-out infinite alternate;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #00cc6a;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.royal-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: rgba(0, 255, 136, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 136, 0.3);
  backdrop-filter: blur(10px);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #00ff88;
  display: block;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.stat-label {
  font-size: 0.9rem;
  color: #00cc6a;
  font-weight: 500;
}

.royal-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn-royal,
.btn-noble {
  padding: 1rem 2rem;
  border: 2px solid #00ff88;
  background: transparent;
  color: #00ff88;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn-royal {
  background: linear-gradient(135deg, #00ff88, #8a2be2);
  color: #000;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.btn-noble {
  background: transparent;
  color: #00ff88;
}

.btn-royal:hover,
.btn-noble:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 255, 136, 0.4);
  text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
}

.royal-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #00cc6a;
  font-size: 0.9rem;
}

.trust-icon {
  font-size: 1.2rem;
  filter: drop-shadow(0 0 5px rgba(0, 255, 136, 0.5));
}

.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
  border: 2px solid rgba(0, 255, 136, 0.5);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.hero-image-container:hover .hero-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(138, 43, 226, 0.1));
  pointer-events: none;
}

/* Games Section */
.games-section {
  padding: 6rem 2rem;
  background: rgba(0, 255, 136, 0.02);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #00ff88;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.section-subtitle {
  font-size: 1.2rem;
  color: #00cc6a;
  max-width: 600px;
  margin: 0 auto;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.game-card {
  background: rgba(0, 255, 136, 0.05);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 255, 136, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
  transition: left 0.5s ease;
}

.game-card:hover::before {
  left: 100%;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
  border-color: rgba(0, 255, 136, 0.6);
}

.game-card.featured {
  border-color: #8a2be2;
  box-shadow: 0 0 30px rgba(138, 43, 226, 0.3);
}

.game-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

.game-card h3 {
  font-size: 1.5rem;
  color: #00ff88;
  margin-bottom: 1rem;
  font-weight: 600;
}

.game-card p {
  color: #00cc6a;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.game-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, #00ff88, #8a2be2);
  color: #000;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* Features Section */
.features-section {
  padding: 6rem 2rem;
  background: rgba(138, 43, 226, 0.02);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(138, 43, 226, 0.05);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  border: 1px solid rgba(138, 43, 226, 0.3);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(138, 43, 226, 0.2);
  border-color: rgba(138, 43, 226, 0.6);
}

.feature-card.featured {
  border-color: #00ff88;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
  filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.5));
}

.feature-card h3 {
  font-size: 1.5rem;
  color: #8a2be2;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-card p {
  color: #00cc6a;
  line-height: 1.6;
}

.feature-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(135deg, #00ff88, #8a2be2);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 2rem;
  background: rgba(0, 255, 136, 0.02);
}

.rating-summary {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: rgba(0, 255, 136, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(0, 255, 136, 0.3);
}

.rating-stars {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.rating-text {
  font-size: 1.2rem;
  color: #00ff88;
  font-weight: 600;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(0, 255, 136, 0.05);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 255, 136, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 255, 136, 0.2);
  border-color: rgba(0, 255, 136, 0.6);
}

.testimonial-card.featured {
  border-color: #8a2be2;
  box-shadow: 0 0 30px rgba(138, 43, 226, 0.3);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.user-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00ff88, #8a2be2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
  font-size: 1.2rem;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.user-info h4 {
  color: #00ff88;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.user-rating {
  color: #ffd700;
  font-size: 0.9rem;
}

.testimonial-card p {
  color: #00cc6a;
  line-height: 1.6;
  font-style: italic;
}

.featured-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(135deg, #00ff88, #8a2be2);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* Gallery Section */
.gallery-section {
  padding: 6rem 2rem;
  background: rgba(138, 43, 226, 0.02);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid rgba(0, 255, 136, 0.3);
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
  border-color: rgba(0, 255, 136, 0.6);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #00ff88;
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #00ff88;
}

.gallery-overlay p {
  color: #00cc6a;
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(138, 43, 226, 0.1));
  text-align: center;
  position: relative;
}

.cta-content h2 {
  font-size: 3rem;
  color: #00ff88;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.cta-content p {
  font-size: 1.2rem;
  color: #00cc6a;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-royal.large,
.btn-noble.large {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 10px;
}

/* Footer */
.royal-footer {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-top: 2px solid #00ff88;
  padding: 3rem 0 1rem;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #00ff88;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
  margin-bottom: 1rem;
}

.footer-about p {
  color: #00cc6a;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #00ff88, #8a2be2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 255, 136, 0.4);
}

.footer-links h4,
.contact-info h4 {
  color: #00ff88;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color: #00cc6a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #00ff88;
  text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #00cc6a;
}

.contact-icon {
  color: #00ff88;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(0, 255, 136, 0.3);
  color: #00cc6a;
}

/* Animations */
@keyframes cyberGlow {
  from { filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.8)); }
  to { filter: drop-shadow(0 0 20px rgba(0, 255, 136, 1)); }
}

@keyframes cyberFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes cyberPulse {
  from { text-shadow: 0 0 20px rgba(0, 255, 136, 0.5); }
  to { text-shadow: 0 0 30px rgba(0, 255, 136, 0.8); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    border-left: 2px solid #00ff88;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .royal-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .royal-actions {
    flex-direction: column;
  }
  
  .royal-trust {
    justify-content: center;
  }
  
  .games-grid,
  .features-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 6rem 1rem 3rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .games-section,
  .features-section,
  .testimonials-section,
  .gallery-section,
  .cta-section {
    padding: 4rem 1rem;
  }
} 