:root {
  --primary-color: #3a4a6b;
  --secondary-color: #4a5d7a;
  --accent-color: #6b7c95;
  --dark-gray: #171d34;
  --light-gray: #1e2440;
  --medium-gray: #8a96a8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #e8eaf0;
  background-color: #171d34;
}

.navbar {
  background: rgba(23, 29, 52, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(58, 74, 107, 0.3);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color) !important;
}

.navbar-nav .nav-link {
  color: #e8eaf0 !important;
  margin: 0 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-color) !important;
}

.hero {
  min-height: 100vh;
  background: var(--dark-gray);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(58, 74, 107, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(74, 93, 122, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 60%,
      rgba(107, 124, 149, 0.2) 0%,
      transparent 50%
    );
  animation: floatingGradients 12s ease-in-out infinite;
}

@keyframes floatingGradients {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translate(20px, -20px) rotate(1deg);
    opacity: 0.8;
  }
  50% {
    transform: translate(-10px, 30px) rotate(-1deg);
    opacity: 0.9;
  }
  75% {
    transform: translate(30px, 10px) rotate(0.5deg);
    opacity: 0.7;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.btn-primary-custom {
  background: var(--primary-color);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  margin-right: 1rem;
  transition: all 0.3s ease;
  color: white;
}

.btn-primary-custom:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 144, 164, 0.3);
}

.btn-outline-custom {
  border: 2px solid white;
  color: white;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background: white;
  color: var(--primary-color);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.services {
  padding: 100px 0;
  background: var(--light-gray);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e8eaf0;
}

.service-card {
  background: var(--dark-gray);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(58, 74, 107, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 1px solid rgba(107, 124, 149, 0.2);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(58, 74, 107, 0.4);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.why-us {
  padding: 100px 0;
  background: var(--dark-gray);
}

.why-us-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #e8eaf0;
}

.why-us-content .subtitle {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.why-us-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(58, 74, 107, 0.4);
}

.tariffs {
  padding: 100px 0;
  background: var(--light-gray);
}

.tariff-card {
  background: var(--dark-gray);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(58, 74, 107, 0.3);
  transition: transform 0.3s ease;
  height: 100%;
  position: relative;
  border: 1px solid rgba(107, 124, 149, 0.2);
}

.tariff-card.featured {
  border: 3px solid var(--accent-color);
  transform: scale(1.05);
}

.tariff-card:hover {
  transform: translateY(-5px);
}

.tariff-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 1rem 0;
}

.price-period {
  color: var(--medium-gray);
  font-size: 1rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.feature-list li {
  padding: 0.5rem 0;
  color: var(--medium-gray);
}

.feature-list li i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.winners {
  padding: 100px 0;
  background: var(--dark-gray);
}

.winner-card {
  background: var(--light-gray);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(58, 74, 107, 0.3);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
  border: 1px solid rgba(107, 124, 149, 0.2);
}

.winner-card:hover {
  transform: translateY(-5px);
}

.winner-info {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.winner-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  margin-right: 1rem;
}

.lottery-name {
  background: var(--accent-color);
  color: var(--dark-gray);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.footer {
  background: #0f1422;
  color: #e8eaf0;
  padding: 60px 0 30px;
}

.footer-content {
  text-align: center;
  margin-bottom: 3rem;
}

.footer-text {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.footer h5 {
  color: var(--accent-color);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.footer-images {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 3rem 0;
  flex-wrap: wrap;
  background: var(--dark-gray);
}

.footer-image {
  max-width: 200px;
  height: 150px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  transition: transform 0.3s ease;
}

.footer-image:hover {
  transform: translateY(-5px);
}

.footer-links {
  text-align: center;
  margin: 2rem 0;
}

.footer-links a {
  color: var(--accent-color);
  text-decoration: none;
  margin: 0 2rem;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #e8eaf0;
}

.copyright {
  border-top: 1px solid rgba(107, 124, 149, 0.3);
  padding-top: 2rem;
  text-align: center;
  color: var(--medium-gray);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .tariff-card.featured {
    transform: none;
  }
}
.about-hero {
  min-height: 60vh;
  background: #171d34;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(58, 74, 107, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(74, 93, 122, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 60%,
      rgba(107, 124, 149, 0.2) 0%,
      transparent 50%
    );
  animation: floatingGradients 12s ease-in-out infinite;
}

@keyframes floatingGradients {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translate(20px, -20px) rotate(1deg);
    opacity: 0.8;
  }
  50% {
    transform: translate(-10px, 30px) rotate(-1deg);
    opacity: 0.9;
  }
  75% {
    transform: translate(30px, 10px) rotate(0.5deg);
    opacity: 0.7;
  }
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}

.about-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-content {
  padding: 100px 0;
  background: #171d34;
}

.about-image {
  position: relative;
  margin-bottom: 2rem;
}

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(58, 74, 107, 0.4);
}

.about-text {
  padding-left: 3rem;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e8eaf0;
  margin-bottom: 2rem;
  position: relative;
}

.about-text h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #3a4a6b, #6b7c95);
  border-radius: 2px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e8eaf0;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.testimonials {
  padding: 100px 0;
  background: #1e2440;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  color: #6b7c95;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e8eaf0;
}

.testimonial-card {
  background: #171d34;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(58, 74, 107, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 1px solid rgba(107, 124, 149, 0.2);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(58, 74, 107, 0.4);
}

.testimonial-rating {
  margin-bottom: 1.5rem;
}

.testimonial-rating i {
  color: #ffd700;
  font-size: 1.1rem;
  margin-right: 0.2rem;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e8eaf0;
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: -10px;
  font-size: 3rem;
  color: #6b7c95;
  opacity: 0.3;
  font-family: serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3a4a6b, #4a5d7a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  margin-right: 1rem;
  font-size: 0.9rem;
}

.author-info h5 {
  color: #e8eaf0;
  margin-bottom: 0.2rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.author-info small {
  color: #8a96a8;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .about-text {
    padding-left: 0;
    margin-top: 3rem;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-image img {
    height: 400px;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .testimonial-card {
    padding: 2rem;
  }
}

@media (max-width: 992px) {
  .about-text {
    padding-left: 1rem;
  }
}

.ticket-purchase {
  padding: 100px 0;
  background: #171d34;
}

.purchase-form-wrapper {
  background: #1e2440;
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 25px 50px rgba(58, 74, 107, 0.4);
  border: 1px solid rgba(107, 124, 149, 0.2);
}

.form-section {
  margin-bottom: 2rem;
}

.form-section h3 {
  color: #e8eaf0;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
}

.form-section h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, #3a4a6b, #6b7c95);
  border-radius: 2px;
}

.game-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.game-card {
  background: #171d34;
  border: 2px solid rgba(107, 124, 149, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.game-card:hover {
  border-color: #6b7c95;
  transform: translateY(-2px);
}

.game-card.active {
  border-color: #6b7c95;
  background: rgba(107, 124, 149, 0.1);
}

.game-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.game-card h4 {
  color: #e8eaf0;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.game-price {
  background: linear-gradient(135deg, #3a4a6b, #6b7c95);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.game-card p {
  color: #6b7c95;
  margin: 0.5rem 0;
  font-weight: 600;
}

.game-card small {
  color: #8a96a8;
  font-size: 0.85rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  color: #e8eaf0;
  font-weight: 600;
  margin-bottom: 0.8rem;
  display: block;
}

.number-selection {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.or-text {
  color: #8a96a8;
  font-size: 0.9rem;
}

.selected-numbers {
  background: #171d34;
  border: 1px solid rgba(107, 124, 149, 0.3);
  border-radius: 10px;
  padding: 1rem;
  min-height: 60px;
  display: flex;
  align-items: center;
}

.number-display {
  color: #8a96a8;
  font-style: italic;
}

.quantity-selector {
  display: flex;
  align-items: center;
  background: #171d34;
  border-radius: 10px;
  overflow: hidden;
  width: fit-content;
}

.quantity-btn {
  background: transparent;
  border: none;
  color: #6b7c95;
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  transition: background 0.3s ease;
}

.quantity-btn:hover {
  background: rgba(107, 124, 149, 0.2);
}

#ticketQuantity {
  background: transparent;
  border: none;
  color: #e8eaf0;
  text-align: center;
  width: 60px;
  padding: 0.8rem 0;
  font-weight: 600;
}

.form-select {
  background: #171d34;
  border: 1px solid rgba(107, 124, 149, 0.3);
  border-radius: 10px;
  color: #e8eaf0;
  padding: 0.8rem 1rem;
  width: 100%;
}

.form-select:focus {
  border-color: #6b7c95;
  box-shadow: 0 0 0 0.2rem rgba(107, 124, 149, 0.25);
  outline: none;
}

.form-check {
  position: relative;
}

.form-check-input {
  margin-right: 0.8rem;
  accent-color: #6b7c95;
}

.form-check-label {
  color: #e8eaf0;
  display: flex;
  flex-direction: column;
}

.form-check-label small {
  color: #8a96a8;
  margin-top: 0.2rem;
}

.cost-summary {
  background: #171d34;
  border-radius: 15px;
  padding: 1.5rem;
  margin: 2rem 0;
  border: 1px solid rgba(107, 124, 149, 0.2);
}

.cost-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  color: #e8eaf0;
}

.cost-row.total {
  border-top: 1px solid rgba(107, 124, 149, 0.3);
  padding-top: 0.8rem;
  margin-top: 1rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: #6b7c95;
}

.btn-purchase {
  background: linear-gradient(135deg, #3a4a6b, #6b7c95);
  border: none;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  width: 100%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-purchase:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(58, 74, 107, 0.4);
}

.notification {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: rgba(23, 29, 52, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  z-index: 1000;
  transition: transform 0.3s ease;
  border: 1px solid rgba(107, 124, 149, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.notification.show {
  transform: translate(-50%, -50%) scale(1);
}

.notification-content {
  text-align: center;
  position: relative;
  max-width: 300px;
}

.notification-content i {
  font-size: 3rem;
  color: #28a745;
  margin-bottom: 1rem;
}

.notification-content h4 {
  color: #e8eaf0;
  margin-bottom: 0.5rem;
}

.notification-content p {
  color: #8a96a8;
  margin-bottom: 0;
}

.notification-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: transparent;
  border: none;
  color: #8a96a8;
  font-size: 1.5rem;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-close:hover {
  background: rgba(107, 124, 149, 0.2);
}

@media (max-width: 768px) {
  .buy-hero h1 {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .purchase-form-wrapper {
    padding: 2rem;
    margin: 0 1rem;
  }

  .number-selection {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .or-text {
    text-align: center;
  }
}

@media (max-width: 992px) {
  .form-section {
    margin-bottom: 3rem;
  }
}
.lottery-hero {
  padding: 120px 0 80px;
  background: #171d34;
  position: relative;
  overflow: hidden;
}

.lottery-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(58, 74, 107, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(74, 93, 122, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 60%,
      rgba(107, 124, 149, 0.2) 0%,
      transparent 50%
    );
  animation: floatingGradients 12s ease-in-out infinite;
}

@keyframes floatingGradients {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translate(20px, -20px) rotate(1deg);
    opacity: 0.8;
  }
  50% {
    transform: translate(-10px, 30px) rotate(-1deg);
    opacity: 0.9;
  }
  75% {
    transform: translate(30px, 10px) rotate(0.5deg);
    opacity: 0.7;
  }
}

.lottery-hero-content {
  position: relative;
  z-index: 2;
}

.lottery-badge {
  margin-bottom: 1rem;
}

.badge-text {
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: #171d34;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lottery-hero h1 {
  font-size: 4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.lottery-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #6b7c95;
  margin-bottom: 0.5rem;
}

.stat-item span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn-play-now {
  background: linear-gradient(135deg, #28a745, #20c997);
  border: none;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-play-now:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(40, 167, 69, 0.4);
}

.btn-quick-pick {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-quick-pick:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

.lottery-visual {
  text-align: center;
  position: relative;
}

.jackpot-display {
  background: linear-gradient(135deg, #ffd700, #ffa500);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.jackpot-amount {
  font-size: 3rem;
  font-weight: 900;
  color: #171d34;
  line-height: 1;
}

.jackpot-label {
  font-size: 1.2rem;
  font-weight: 700;
  color: #171d34;
  margin-top: 0.5rem;
  letter-spacing: 2px;
}

.lottery-balls {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.ball {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6b7c95, #3a4a6b);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(58, 74, 107, 0.4);
  animation: bounce 2s ease-in-out infinite;
}

.ball.mega {
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: #171d34;
  transform: scale(1.1);
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.ball.mega {
  animation: bounce 2s ease-in-out infinite,
    glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
  }
  to {
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.8);
  }
}

.draw-countdown {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.time-unit {
  text-align: center;
}

.time-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  line-height: 1;
}

.time-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.how-to-play {
  padding: 100px 0;
  background: #1e2440;
}

.section-title {
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e8eaf0;
  margin-bottom: 0.5rem;
}

.section-title p {
  color: #8a96a8;
  font-size: 1.1rem;
}

.play-step {
  background: #171d34;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(107, 124, 149, 0.2);
  transition: transform 0.3s ease;
  position: relative;
}

.play-step:hover {
  transform: translateY(-10px);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #6b7c95, #3a4a6b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 1.2rem;
}

.step-icon {
  font-size: 3rem;
  color: #6b7c95;
  margin: 2rem 0 1.5rem;
}

.play-step h4 {
  color: #e8eaf0;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.play-step p {
  color: #8a96a8;
  line-height: 1.6;
}

.prize-breakdown {
  padding: 100px 0;
  background: #171d34;
}

.prize-table-wrapper {
  overflow-x: auto;
  background: #1e2440;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(58, 74, 107, 0.4);
  border: 1px solid rgba(107, 124, 149, 0.2);
}

.prize-table {
  width: 100%;
  border-collapse: collapse;
  color: #e8eaf0;
}

.prize-table th {
  background: linear-gradient(135deg, #3a4a6b, #6b7c95);
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  border-radius: 10px 10px 0 0;
}

.prize-table th:first-child {
  border-radius: 10px 0 0 0;
}

.prize-table th:last-child {
  border-radius: 0 10px 0 0;
}

.prize-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(107, 124, 149, 0.2);
}

.prize-table tbody tr:hover {
  background: rgba(107, 124, 149, 0.1);
}

.jackpot-row {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.1),
    rgba(255, 165, 0, 0.1)
  );
}

.jackpot-row td {
  font-weight: 600;
}

.prize-amount {
  color: #ffd700;
  font-weight: 700;
  font-size: 1.1rem;
}

.game-features {
  padding: 100px 0;
  background: #1e2440;
}

.feature-card {
  background: #171d34;
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  border: 1px solid rgba(107, 124, 149, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(58, 74, 107, 0.4);
}

.feature-icon {
  font-size: 3.5rem;
  color: #6b7c95;
  margin-bottom: 1.5rem;
}

.feature-card h4 {
  color: #e8eaf0;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #8a96a8;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.feature-list li {
  color: #6b7c95;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: 700;
}

.recent-winners-detailed {
  padding: 100px 0;
  background: #171d34;
}

.winners-showcase {
  margin-bottom: 4rem;
}

.winner-spotlight {
  background: linear-gradient(135deg, #1e2440, #2a3454);
  border-radius: 25px;
  padding: 2.5rem;
  border: 1px solid rgba(107, 124, 149, 0.3);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.winner-spotlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #ffd700, #ffa500);
}

.winner-amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffd700;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.winner-details h4 {
  color: #e8eaf0;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.win-date {
  color: #6b7c95;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.winner-story {
  color: #8a96a8;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.winning-numbers {
  background: rgba(107, 124, 149, 0.1);
  border-radius: 15px;
  padding: 1rem;
}

.winning-numbers > span {
  color: #6b7c95;
  font-weight: 600;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.8rem;
}

.number-set {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.number-set .num {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6b7c95, #3a4a6b);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.number-set .num.mega {
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: #171d34;
}

.winner-stats {
  margin-top: 3rem;
}

.stat-card {
  background: rgba(107, 124, 149, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(107, 124, 149, 0.2);
}

.stat-card h3 {
  color: #6b7c95;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-card p {
  color: #8a96a8;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.lottery-faq {
  padding: 100px 0;
  background: #1e2440;
}

.faq-accordion {
  background: #171d34;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(107, 124, 149, 0.2);
}

.faq-item {
  border-bottom: 1px solid rgba(107, 124, 149, 0.2);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(107, 124, 149, 0.1);
}

.faq-question h4 {
  color: #e8eaf0;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.faq-question i {
  color: #6b7c95;
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.active {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 2rem 1.5rem;
  color: #8a96a8;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .lottery-hero h1 {
    font-size: 2.8rem;
  }

  .lottery-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }

  .lottery-balls {
    gap: 0.5rem;
  }

  .ball {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }

  .countdown-timer {
    gap: 1rem;
  }

  .time-number {
    font-size: 1.5rem;
  }

  .jackpot-amount {
    font-size: 2rem;
  }

  .winner-amount {
    font-size: 2rem;
  }

  .prize-table-wrapper {
    padding: 1rem;
  }

  .prize-table th,
  .prize-table td {
    padding: 0.8rem 0.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .feature-card,
  .play-step {
    padding: 2rem;
  }

  .winner-spotlight {
    padding: 2rem;
  }

  .number-set .num {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
}
