.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;
}

html {
  scroll-behavior: smooth;
}

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #e67e22, #d35400);
  transform: translateY(-2px);
}

.btn-large {
  padding: 15px 35px;
  font-size: 16px;
}

/* Header */
.header {
  background: #2c3e50;
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
  font-size: 24px;
  font-weight: 700;
}

.logo-bro {
  color: #f39c12;
}

.logo-lotto {
  color: white;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-list a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: color 0.3s ease;
}

.nav-list a:hover {
  color: #f39c12;
}

.burger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.burger span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: #2c3e50;
  transform: translateY(-130%);
  transition: transform 0.3s ease;
  z-index: 999;
  padding: 20px;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-nav-list {
  list-style: none;
  margin-bottom: 20px;
}

.mobile-nav-list li {
  margin: 15px 0;
}

.mobile-nav-list a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
}

.mobile-cta {
  width: 100%;
  display: block;
  text-align: center;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
              url('/assets/images/hero-bg.png') center / cover no-repeat;
  color: white;
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}


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

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #f39c12, #e74c3c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #ecf0f1;
}

.how-it-works-preview {
  margin: 30px 0;
}

.how-it-works-preview h3 {
  color: #f39c12;
  margin-bottom: 15px;
  font-size: 20px;
}

.how-it-works-preview ul {
  list-style: none;
}

.how-it-works-preview li {
  margin: 10px 0;
  padding-left: 20px;
  position: relative;
}

.how-it-works-preview li::before {
  content: "•";
  color: #f39c12;
  font-size: 20px;
  position: absolute;
  left: 0;
}

.payment-methods {
  display: flex;
  gap: 15px;
  margin: 30px 0;
  align-items: center;
}

.payment-icon {
  height: 40px;
  width: auto;
  filter: brightness(0.8);
  transition: filter 0.3s ease;
}

.payment-icon:hover {
  filter: brightness(1);
}

.countdown {
  display: flex;
  gap: 20px;
  margin: 40px 0;
}

.countdown-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px 15px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #f39c12;
}

.countdown-label {
  font-size: 14px;
  color: #bdc3c7;
  text-transform: uppercase;
}

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

.hero-image {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* How It Works */
.how-it-works {
  padding: 80px 0;
  background: #f8f9fa;
}

.how-it-works h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  color: #2c3e50;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

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

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

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #f39c12, #e67e22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.step h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #2c3e50;
}

.step p {
  color: #7f8c8d;
  line-height: 1.6;
}

/* Prize Fund */
.prize-fund {
  padding: 80px 0;
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: white;
}

.prize-fund-content {
  margin-bottom: 60px;
}

.prize-fund h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

.grand-prize {
  text-align: center;
  margin-bottom: 40px;
}

.grand-prize h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.prize-amount {
  font-size: 48px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 15px;
  display: inline-block;
}

.prize-table {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.prize-header,
.prize-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 15px 20px;
  text-align: center;
}

.prize-header {
  background: rgba(255, 255, 255, 0.2);
  font-weight: 700;
}

.prize-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.prize-row:last-child {
  border-bottom: none;
}

.prize-note {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.8;
}

/* Lottery Results */
.lottery-results {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('/assets/images/results-bg.png') center / cover no-repeat;
  padding: 60px 0;
  border-radius: 20px;
  margin-top: 40px;
}

.lottery-results h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 30px;
}

.results-container h3 {
  font-size: 24px;
  margin-bottom: 30px;
  text-align: center;
}

.results-table {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.results-header,
.results-row {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr 0.5fr 1fr 1fr;
  padding: 15px 10px;
  text-align: center;
  font-size: 14px;
}

.results-header {
  background: rgba(255, 255, 255, 0.2);
  font-weight: 700;
}

.results-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.results-row:last-child {
  border-bottom: none;
}

.results-note {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  opacity: 0.8;
}

/* Trust Section */
.trust-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.trust-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  color: #2c3e50;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

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

.trust-item:hover {
  transform: translateY(-5px);
}

.trust-item.featured {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: white;
  transform: scale(1.05);
}

.trust-item.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.trust-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #f39c12, #e67e22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-item.featured .trust-icon {
  background: rgba(255, 255, 255, 0.2);
}

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

.trust-item h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #2c3e50;
}

.trust-item.featured h3 {
  color: white;
}

.trust-item p {
  color: #7f8c8d;
  line-height: 1.6;
}

.trust-item.featured p {
  color: rgba(255, 255, 255, 0.9);
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: white;
}

.about-section h2 {
  font-size: 36px;
  margin-bottom: 60px;
  color: #2c3e50;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #555;
}

.more-about h2 {
  font-size: 36px;
  margin-bottom: 60px;
  color: #2c3e50;
}

.more-about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.more-about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #555;
}

.more-about-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
              url('/assets/images/faq-bg.png') center / cover no-repeat;;
  color: white;
}

.faq-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 20px;
}

.faq-subtitle {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0.8;
}

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

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.1);
}

.faq-icon {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 20px 20px 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: #2c3e50;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: white;
  margin-bottom: 8px;
  font-weight: 700;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 16px;
  backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .btn {
  width: auto;
  margin-top: 20px;
}

/* Responsible Gambling */
.responsible-gambling {
  padding: 80px 0;
  background: #f8f9fa;
}

.responsible-gambling h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #2c3e50;
  text-align: center;
}

.responsible-gambling p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #555;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.gambling-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.gambling-logos img {
  height: 60px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.gambling-logos img:hover {
  opacity: 1;
}

/* Footer */
.footer {
  background: #2c3e50;
  color: white;
  padding: 20px 0;
  text-align: center;
}

/* Popups */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup {
  background: #2c3e50;
  color: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.popup-overlay.active .popup {
  transform: scale(1);
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup h2 {
  margin-bottom: 30px;
  text-align: center;
  color: #f39c12;
}

.popup p {
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.6;
}

.popup-form {
  margin-bottom: 20px;
}

.popup-form .form-group {
  margin-bottom: 20px;
}

.popup-form label {
  display: block;
  color: white;
  margin-bottom: 8px;
  font-weight: 700;
}

.popup-form input {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 16px;
  backdrop-filter: blur(10px);
}

.popup-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.popup .btn {
  width: 100%;
  margin-top: 10px;
}

.popup-ok {
  width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav,
  .header .btn-primary {
    display: none;
  }

  .burger {
    display: flex;
  }

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

  .hero-text h1 {
    font-size: 36px;
  }

  .countdown {
    justify-content: center;
    gap: 15px;
  }

  .countdown-item {
    padding: 15px 10px;
  }

  .countdown-number {
    font-size: 24px;
  }

  .about-content,
  .more-about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .results-header,
  .results-row {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .results-header {
    display: none;
  }

  .results-row {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .results-row::before {
    content: attr(data-label);
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
  }

  .gambling-logos {
    gap: 20px;
  }

  .gambling-logos img {
    height: 40px;
  }

  .payment-methods {
    justify-content: center;
    flex-wrap: wrap;
  }

  .payment-icon {
    height: 30px;
  }
}

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

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

  .hero-text h1 {
    font-size: 28px;
  }

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

  .countdown {
    gap: 10px;
  }

  .countdown-item {
    padding: 10px 8px;
  }

  .countdown-number {
    font-size: 20px;
  }

  .countdown-label {
    font-size: 12px;
  }

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

  .prize-header,
  .prize-row {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 10px;
  }

  .prize-header {
    display: none;
  }

  .popup {
    padding: 20px;
    margin: 20px;
  }

  .faq-question {
    font-size: 16px;
    padding: 15px;
  }

  section {
    padding: 60px 0;
  }
}

/* Focus and accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
  outline: 2px solid #f39c12;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .header,
  .mobile-menu,
  .popup-overlay,
  .burger {
    display: none !important;
  }

  .hero {
    padding-top: 20px;
  }

  * {
    background: white !important;
    color: black !important;
  }
}
