section {
  padding: 5rem 0;
  position: relative;
}

.hero-section {
  padding: 8rem 0 6rem;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 0, 247, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 10s ease-in-out infinite reverse;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.hero-section .container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-section h1 {
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease;
}

.hero-section p {
  font-size: 19px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-section .cta-button {
  animation: fadeInUp 0.8s ease 0.4s both;
  font-size: 20px;
  padding: 20px 50px;
}

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

.quick-links {
  background: var(--dark-surface);
  padding: 3rem 0;
  border-top: 1px solid rgba(0, 240, 255, 0.1);
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.quick-links h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 32px;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.links-grid a {
  background: var(--dark-card);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  border: 1px solid rgba(0, 240, 255, 0.1);
  transition: all 0.3s ease;
  display: block;
}

.links-grid a:hover {
  transform: translateY(-4px);
  border-color: var(--primary-electric);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.1) 0%, rgba(0, 119, 255, 0.1) 100%);
}

.login-section,
.pokies-section,
.mobile-section,
.advantages-section,
.providers-section {
  background: var(--dark-bg);
}

.login-section h2,
.pokies-section h2,
.mobile-section h2,
.advantages-section h2,
.providers-section h2 {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.login-section h2::after,
.pokies-section h2::after,
.mobile-section h2::after,
.advantages-section h2::after,
.providers-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

article {
  margin-bottom: 4rem;
}

article h3 {
  margin-top: 2rem;
}

.text-block,
.feature-list,
.numbered-list,
.steps-list {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.cards-grid article {
  background: var(--dark-card);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 240, 255, 0.1);
  transition: all 0.4s ease;
}

.cards-grid article:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 240, 255, 0.3);
}

.comparison-table {
  margin: 2rem 0;
}

dl {
  margin: 1.5rem 0;
}

dt {
  color: var(--primary-electric);
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 16px;
}

dd {
  color: var(--text-muted);
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(0, 240, 255, 0.2);
}

.faq-section {
  background: var(--dark-bg);
  padding: 5rem 0;
}

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

.accordion-item {
  background: var(--dark-card);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: rgba(0, 240, 255, 0.3);
}

.accordion-header {
  padding: 1.5rem 2rem;
  cursor: pointer;
  user-select: none;
  position: relative;
  transition: all 0.3s ease;
  margin: 0;
  font-size: 20px;
  color: var(--text-light);
}

.accordion-header::after {
  content: '+';
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: var(--primary-electric);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
  transform: translateY(-50%) rotate(45deg);
}

.accordion-header:hover {
  background: rgba(0, 240, 255, 0.05);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem 0.3rem 1.5rem !important;
}

.accordion-item.active .accordion-body {
  max-height: 2000px;
  padding: 0 1.5rem 0.3rem 1.5rem !important;
}

.cta-section {
  background: var(--gradient-dark);
  text-align: center;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 0, 247, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 19px;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .cta-button {
  font-size: 20px;
  padding: 22px 55px;
}

@media (max-width: 1199px) {
  .cards-grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  section {
    padding: 3rem 0;
  }

  .hero-section {
    padding: 5rem 0 4rem;
  }

  .hero-section p {
    font-size: 16px;
  }

  .hero-section .cta-button {
    font-size: 18px;
    padding: 18px 40px;
  }

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

  .cards-grid-2 {
    grid-template-columns: 1fr;
  }

  .cards-grid-3 {
    grid-template-columns: 1fr;
  }

  .cards-grid article {
    padding: 1.5rem;
  }

  .accordion-header {
    padding: 1.25rem 1.5rem;
    font-size: 18px;
    padding-right: 3rem;
  }

  .accordion-header::after {
    right: 1.5rem;
  }

  .accordion-body {
    padding: 0 1.5rem;
  }

  .accordion-item.active .accordion-body {
    padding: 0 1.5rem 1.25rem;
  }

  .cta-section {
    padding: 4rem 0;
  }

  .cta-section p {
    font-size: 16px;
  }

  .cta-section .cta-button {
    font-size: 18px;
    padding: 18px 40px;
  }

  h2 {
    font-size: 32px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  .hero-section .cta-button,
  .cta-section .cta-button {
    width: 100%;
    padding: 16px 30px;
  }
}