* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #FFD700;
  --primary-dark: #FFA500;
  --secondary: #4ECDC4;
  --accent: #E74C3C;
  --success: #2ECC71;
  --warning: #F39C12;
  --dark: #1a1a2e;
  --darker: #0f0f1e;
  --light: #f5f5f5;
  --gray: #666;
  --border: #ddd;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: linear-gradient(135deg, var(--dark) 0%, #1f1f3a 100%);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  color: var(--primary);
  font-size: 24px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s;
  padding: 5px 10px;
}

.nav-menu a:hover {
  color: var(--primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  margin: 5px 0;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }
  
  .nav-menu.active {
    max-height: 400px;
  }
  
  .nav-menu a {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2a2a4e 100%);
  color: white;
  padding: 80px 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-text h2 {
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.3;
  color: var(--primary);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-text p {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

.hero-text .highlight {
  font-weight: 700;
  color: var(--primary);
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--primary);
  color: var(--dark);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255,215,0,0.3);
}

.btn-secondary {
  background: rgba(255,255,255,0.2);
  color: white;
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--dark);
}

.btn-large {
  padding: 15px 50px;
  font-size: 18px;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(255,215,0,0.2);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  
  .hero-text h2 {
    font-size: 28px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
}

/* Features Banner */
.features-banner {
  background: var(--darker);
  padding: 60px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  transition: all 0.3s;
  border-left: 4px solid var(--primary);
}

.feature-item:hover {
  background: rgba(255,215,0,0.1);
  transform: translateY(-5px);
}

.feature-item svg {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: block;
}

.feature-item h3 {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 10px;
}

.feature-item p {
  color: white;
  font-size: 14px;
  margin-bottom: 8px;
}

.feature-item .subtext {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-box {
  max-width: 600px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: 36px;
  color: var(--dark);
  margin-bottom: 15px;
  font-weight: 800;
}

.cta-box p {
  font-size: 18px;
  color: rgba(26,26,46,0.8);
  margin-bottom: 30px;
}

/* App Details */
.app-details {
  background: #f9f9f9;
  padding: 80px 0;
}

.app-details h2 {
  text-align: center;
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 50px;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.detail-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-top: 4px solid var(--primary);
}

.detail-card h4 {
  color: var(--gray);
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.detail-card p {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}

.security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.security-item {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.security-item svg {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: block;
}

.security-item h4 {
  color: var(--dark);
  font-size: 18px;
  margin-bottom: 10px;
}

.security-item p {
  color: var(--gray);
  font-size: 14px;
}

/* How to Play */
.how-to-play {
  background: white;
  padding: 80px 0;
}

.how-to-play h2 {
  text-align: center;
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 50px;
}

.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.faq-header {
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, var(--dark) 0%, #2a2a4e 100%);
  color: var(--primary);
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
}

.faq-header:hover {
  background: linear-gradient(135deg, #252545 0%, #35355a 100%);
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  padding: 20px;
  background: #f9f9f9;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}

.faq-item.active .faq-content {
  max-height: 500px;
}

.faq-content p {
  color: var(--gray);
  line-height: 1.7;
}

/* Tips Section */
.tips-section {
  background: linear-gradient(135deg, var(--dark) 0%, #2a2a4e 100%);
  padding: 80px 0;
  color: white;
}

.tips-section h2 {
  text-align: center;
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 20px;
}

.intro-text {
  text-align: center;
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.tip-card {
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 10px;
  border-left: 4px solid var(--primary);
  transition: all 0.3s;
}

.tip-card:hover {
  background: rgba(255,215,0,0.15);
  transform: translateY(-5px);
}

.tip-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.tip-card h3 {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 10px;
}

.tip-card p {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  line-height: 1.6;
}

/* Features Showcase */
.exciting-features {
  background: #f9f9f9;
  padding: 80px 0;
}

.exciting-features h2 {
  text-align: center;
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 20px;
}

.features-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-showcase-item {
  background: white;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s;
}

.feature-showcase-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-showcase-item svg {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: block;
}

.feature-showcase-item h3 {
  color: var(--dark);
  font-size: 18px;
  margin-bottom: 15px;
}

.feature-showcase-item p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
}

/* Games Showcase */
.games-showcase {
  background: linear-gradient(135deg, var(--dark) 0%, #2a2a4e 100%);
  padding: 80px 0;
  color: white;
}

.games-showcase h2 {
  text-align: center;
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 20px;
}

.games-grid-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.game-showcase-card {
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 10px;
  border-top: 3px solid var(--primary);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.game-showcase-card:hover {
  background: rgba(255,215,0,0.15);
  transform: translateY(-10px);
}

.game-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
}

.game-showcase-card h3 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 15px;
}

.game-showcase-card p {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.game-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s;
  display: inline-block;
}

.game-link:hover {
  color: var(--primary-dark);
}

/* Blog Section */
.blog-section {
  background: white;
  padding: 80px 0;
}

.blog-section h2 {
  text-align: center;
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 20px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-card h3 {
  padding: 20px 20px 10px;
  color: var(--dark);
  font-size: 18px;
}

.blog-card p {
  padding: 0 20px 15px;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
}

.read-more {
  padding: 0 20px 20px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: color 0.3s;
}

.read-more:hover {
  color: var(--primary-dark);
}

/* About Section */
.about-section {
  background: #f9f9f9;
  padding: 80px 0;
}

.about-section h2 {
  text-align: center;
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 50px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-text h3 {
  color: var(--dark);
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.about-list {
  list-style: none;
}

.about-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: var(--gray);
  font-size: 15px;
}

.about-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }
}

/* Social CTA */
.social-cta {
  background: linear-gradient(135deg, var(--dark) 0%, #2a2a4e 100%);
  padding: 60px 0;
  text-align: center;
  color: white;
}

.social-cta h2 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 15px;
}

.social-cta p {
  font-size: 16px;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.9);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: white;
  text-decoration: none;
}

.social-icon svg {
  width: 30px;
  height: 30px;
}

.social-icon.instagram {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.social-icon.instagram:hover {
  transform: translateY(-5px);
}

.social-icon.telegram {
  background: #0088cc;
}

.social-icon.telegram:hover {
  transform: translateY(-5px);
  background: #0077b5;
}

.social-icon.whatsapp {
  background: #25D366;
}

.social-icon.whatsapp:hover {
  transform: translateY(-5px);
  background: #20ba5d;
}

.social-icon.facebook {
  background: #1877F2;
}

.social-icon.facebook:hover {
  transform: translateY(-5px);
  background: #165ac0;
}

.social-icon.youtube {
  background: #FF0000;
}

.social-icon.youtube:hover {
  transform: translateY(-5px);
  background: #cc0000;
}

/* Footer */
.footer {
  background: var(--darker);
  color: white;
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 16px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 14px;
}

.footer-section ul a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}

.dmca-badge {
  margin-top: 15px;
  color: var(--primary);
}

/* Utility Classes */
.section-title {
  font-size: 32px;
  color: var(--dark);
  text-align: center;
  margin-bottom: 15px;
}
