/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #0a0e1a;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
  color: #00d4ff;
}

h2 {
  font-size: 2rem;
  color: #00d4ff;
  text-align: center;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.5rem;
  color: #00d4ff;
}

h4 {
  font-size: 1.25rem;
  color: #00d4ff;
}

p {
  margin-bottom: 1rem;
  color: #e0e6ed;
}

.section-intro {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: #b8c5d1;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0099cc, #007aa3);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.btn-outline {
  background: transparent;
  color: #00d4ff;
  border: 2px solid #00d4ff;
}

.btn-outline:hover {
  background: #00d4ff;
  color: #0a0e1a;
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* Header */
.header {
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  font-size: 2rem;
  font-weight: 900;
  color: #00d4ff;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.flag {
  width: 32px;
  height: 24px;
  border-radius: 4px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: #e0e6ed;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #00d4ff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #00d4ff;
  transition: 0.3s;
}

.header-buttons {
  display: flex;
  gap: 1rem;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #00d4ff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #b8c5d1;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-features {
  display: flex;
  gap: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #b8c5d1;
}

.feature i {
  color: #00d4ff;
  font-size: 1.2rem;
}

.hero-image {
  text-align: center;
}

.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

/* Sections */
section {
  padding: 80px 0;
}

.why-1win {
  background: linear-gradient(135deg, #1a1f2e 0%, #0a0e1a 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
}

.feature-card {
  background: rgba(26, 31, 46, 0.5);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon i {
  font-size: 1.5rem;
  color: white;
}

/* Navigation Section */
.navigation-section {
  background: #0a0e1a;
}

.registration-steps {
  max-width: 800px;
  margin: 0 auto;
}

.registration-list {
  background: rgba(26, 31, 46, 0.5);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  margin: 2rem 0;
}

.registration-list li {
  margin-bottom: 1rem;
  color: #e0e6ed;
}

.sub-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.sub-section {
  background: rgba(26, 31, 46, 0.5);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

/* Casino Games Section */
.casino-games {
  background: linear-gradient(135deg, #1a1f2e 0%, #0a0e1a 100%);
}

.casino-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.casino-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.casino-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(26, 31, 46, 0.3);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 212, 255, 0.1);
}

.casino-feature i {
  font-size: 1.5rem;
  color: #00d4ff;
}

.casino-feature h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.casino-feature p {
  margin: 0;
  font-size: 0.9rem;
  color: #b8c5d1;
}

.casino-img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.casino-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.detail-section {
  background: rgba(26, 31, 46, 0.5);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

/* Sports Betting Section */
.sports-betting {
  background: #0a0e1a;
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.sport-card {
  background: rgba(26, 31, 46, 0.5);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sport-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.sport-card i {
  font-size: 2.5rem;
  color: #00d4ff;
  margin-bottom: 1rem;
}

.sport-card h4 {
  margin-bottom: 0.5rem;
}

.sport-card p {
  font-size: 0.9rem;
  color: #b8c5d1;
  margin: 0;
}

.sports-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

/* Mobile Experience Section */
.mobile-experience {
  background: linear-gradient(135deg, #1a1f2e 0%, #0a0e1a 100%);
}

.mobile-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.mobile-feature {
  background: rgba(26, 31, 46, 0.5);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.mobile-feature ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.mobile-feature li {
  margin-bottom: 0.5rem;
  color: #e0e6ed;
}

/* Payment Methods Section */
.payment-methods {
  background: #0a0e1a;
}

.payment-table {
  max-width: 800px;
  margin: 0 auto;
}

.payment-options {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: rgba(26, 31, 46, 0.5);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.payment-options th,
.payment-options td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.payment-options th {
  background: rgba(0, 212, 255, 0.1);
  color: #00d4ff;
  font-weight: 600;
}

.payment-options td {
  color: #e0e6ed;
}

.payment-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Bonuses Section */
.bonuses {
  background: linear-gradient(135deg, #1a1f2e 0%, #0a0e1a 100%);
}

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.bonus-card {
  background: rgba(26, 31, 46, 0.5);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.bonus-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.bonus-icon i {
  font-size: 1.5rem;
  color: white;
}

/* Community Section */
.community {
  background: #0a0e1a;
}

.community-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.community-img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.community-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.stat {
  text-align: center;
  background: rgba(26, 31, 46, 0.5);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: #00d4ff;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #b8c5d1;
  font-size: 0.9rem;
}

/* Why Choose Section */
.why-choose {
  background: linear-gradient(135deg, #1a1f2e 0%, #0a0e1a 100%);
}

.choice-reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.reason {
  background: rgba(26, 31, 46, 0.5);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.reason-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.reason-icon i {
  font-size: 1.5rem;
  color: white;
}

.reason ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.reason li {
  margin-bottom: 0.5rem;
  color: #e0e6ed;
}

/* FAQ Section */
.faq {
  background: #0a0e1a;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(26, 31, 46, 0.5);
  border-radius: 16px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(0, 212, 255, 0.05);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
}

.faq-question i {
  color: #00d4ff;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: white;
  text-align: center;
}

.cta h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

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

.cta .btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
}

.cta .btn:hover {
  background: white;
  color: #00d4ff;
}

/* Footer */
.footer {
  background: #0a0e1a;
  border-top: 1px solid rgba(0, 212, 255, 0.2);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: #00d4ff;
}

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

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

.footer-section ul li a {
  color: #b8c5d1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #00d4ff;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 900;
  color: #00d4ff;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
  margin-bottom: 1rem;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00d4ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #00d4ff;
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  color: #b8c5d1;
  font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: left 0.3s ease;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .header-buttons {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .casino-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .casino-features {
    grid-template-columns: 1fr;
  }

  .community-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .community-stats {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .payment-options {
    font-size: 0.9rem;
  }

  .payment-options th,
  .payment-options td {
    padding: 0.5rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .btn-large {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }

  .cta h2 {
    font-size: 2rem;
  }

  .logo {
    font-size: 1.5rem;
  }

  .features-grid,
  .casino-features,
  .sports-grid,
  .mobile-features,
  .bonus-cards,
  .choice-reasons {
    grid-template-columns: 1fr;
  }

  .sub-sections,
  .casino-details,
  .sports-details,
  .payment-details {
    grid-template-columns: 1fr;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation for images */
img {
  transition: opacity 0.3s ease;
}

img:not([src]) {
  opacity: 0;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-menu a:focus,
.faq-question:focus {
  outline: 2px solid #00d4ff;
  outline-offset: 2px;
}
