.policy,
.success,
.contact-section {
  padding-block: 130px 60px;
  min-height: 92vh;
}

.success__text {
  margin-bottom: 30px;
}

.policy__title,
.success__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;

  margin-bottom: 30px;
}

.policy__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
}

.policy__text h2,
.policy__text p,
.policy__text ul {
  margin-bottom: 14px;
}

.policy__link {
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

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

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

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #4a90e2, #357abd);
  color: white;
  padding: 20px;
  border-radius: 15px;
  max-width: 500px;
  width: 90%;
  z-index: 10000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: none;
}

.cookie-popup.show {
  display: block;
  animation: slideUp 0.3s ease-out;
}

.cookie-content {
  text-align: center;
}

.cookie-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.cookie-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.cookie-content p {
  margin-bottom: 20px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-accept,
.btn-refuse {
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 100px;
}

.btn-accept {
  background: white;
  color: #4a90e2;
}

.btn-refuse {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-accept:hover {
  background: #f0f8ff;
  transform: translateY(-2px);
}

.btn-refuse:hover {
  background: white;
  color: #4a90e2;
  transform: translateY(-2px);
}

/* Success Popup */
.success-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #4a90e2, #357abd);
  color: white;
  padding: 40px;
  border-radius: 15px;
  max-width: 400px;
  width: 90%;
  z-index: 10001;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: none;
}

.success-popup.show {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

.success-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.success-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.btn-return {
  background: white;
  color: #4a90e2;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-return:hover {
  background: #f0f8ff;
  transform: translateY(-2px);
}

/* Header */
.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: #4a90e2;
}

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

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #4a90e2;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  transition: 0.3s;
}

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

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #4a90e2, #357abd);
  color: white;
  padding: 120px 0 80px;
  margin-top: 70px;
  overflow: hidden;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-primary {
  display: inline-block;
  background: white;
  color: #4a90e2;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-image img {
  width: 100%;
  height: auto;
  max-width: 500px;
}

/* Latest Results Section */
.latest-results {
  padding: 80px 0;
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

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

.result-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.result-card:hover {
  transform: translateY(-5px);
}

.card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #4a90e2, #357abd);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon img {
  width: 50px;
  height: 50px;
  
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #4a90e2;
  margin-bottom: 0.5rem;
}

.card-draw,
.card-date {
  color: #666;
  margin-bottom: 0.5rem;
}

.winning-numbers {
  margin-top: 1.5rem;
}

.numbers-label {
  display: block;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #333;
}

.numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.number {
  width: 35px;
  height: 35px;
  background: #4a90e2;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

/* How to Start Section */
.how-to-start {
  padding: 80px 0;
  background: linear-gradient(135deg, #4a90e2, #357abd);
  color: white;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

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

.step-card {
  background: white;
  color: #333;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.step-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.step-description {
  color: #666;
  line-height: 1.6;
}

/* Customer Reviews Section */
.customer-reviews {
  padding: 80px 0;
  background: linear-gradient(135deg, #4a90e2, #357abd);
  color: white;
}

.slider-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.slider-wrapper {
  overflow: hidden;
  border-radius: 15px;
}

.slider-track {
  display: flex;
  transition: transform 0.3s ease;
}

.slide {
  min-width: 100%;
  padding: 2rem;
}

.testimonial {
  text-align: center;
}

.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
}

.author-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.rating {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.author-info {
  opacity: 0.8;
  font-size: 0.9rem;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: -25px;
}

.next-btn {
  right: -25px;
}

/* Mobile App & Contact Section */
.mobile-contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #4a90e2, #357abd);
  color: white;
}

.mobile-contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.mobile-app {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.mobile-image img {
  width: 200px;
  height: auto;
}

.mobile-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.mobile-description {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #4a90e2;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 25px;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Footer */
.footer {
  background: #f8f9fa;
  padding: 3rem 0 2rem;
  border-top: 1px solid #e0e0e0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-link {
  text-decoration: none;
  color: #4a90e2;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #357abd;
}

.footer-info {
  margin-bottom: 2rem;
}

.footer-text {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.footer-logos {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.footer-logo-img {
  height: 40px;
  width: auto;
}

/* Animations */
@keyframes slideUp {
  from {
    transform: translate(-50%, 100%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-title {
    font-size: 3rem;
  }

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

  .mobile-app {
    flex-direction: column;
    text-align: center;
  }

  .slider-btn {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

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

  .nav-item {
    margin: 1rem 0;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

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

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

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

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

  .btn-accept,
  .btn-refuse {
    width: 200px;
  }
}

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

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .result-card,
  .step-card {
    padding: 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .mobile-image img {
    width: 150px;
  }

  .mobile-title {
    font-size: 1.5rem;
  }

  .footer-logos {
    gap: 1rem;
  }

  .footer-logo-img {
    height: 30px;
  }
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.show {
  display: block !important;
}

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