 body {
     margin: 0;
     font-family: 'Segoe UI', sans-serif;
     background-color: #0d0d0d;
     color: #fff;
     scroll-behavior: smooth;
 }

 header {
     background-color: #000;
     padding: 16px 0;
     border-bottom: 3px solid #ff6a00;
     box-shadow: 0 4px 8px rgba(255, 106, 0, 0.1);
     position: sticky;
     top: 0;
     z-index: 1000;
 }

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

 /* Логотип */
 .logo a {
     font-size: 28px;
     text-decoration: none;
     font-weight: 700;
     color: #ff6a00;
     letter-spacing: 1px;
 }

 /* Меню */
 .menu a {
     margin-left: 32px;
     font-size: 16px;
     text-decoration: none;
     color: #fff;
     position: relative;
     padding-bottom: 4px;
     transition: color 0.3s ease;
 }

 .menu a:hover {
     color: #ff6a00;
 }

 .menu a::after {
     content: '';
     position: absolute;
     left: 0;
     bottom: 0;
     width: 0%;
     height: 2px;
     background-color: #ff6a00;
     transition: width 0.3s ease;
 }

 .menu a:hover::after {
     width: 100%;
 }

 /* Адаптив */
 @media (max-width: 768px) {
     .menu a {
         margin-left: 16px;
         font-size: 14px;
     }

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

 .hero {
     background-image: url('../img/hero.png');
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     min-height: 90vh;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     position: relative;
     padding: 60px 20px;
 }

 .hero::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(0, 0, 0, 0.65);
     z-index: 1;
 }

 .hero-content {
     position: relative;
     z-index: 2;
     color: #fff;
     max-width: 800px;
 }

 .hero h1 {
     font-size: 42px;
     color: #ff6a00;
     margin-bottom: 20px;
     font-weight: 700;
     text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
 }

 .hero p {
     font-size: 18px;
     line-height: 1.6;
     color: #fff;
     text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
 }

 /* Адаптив */
 @media (max-width: 768px) {
     .hero h1 {
         font-size: 32px;
     }

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

 .countdown-section {
     background-color: #111;
     padding: 60px 20px;
     text-align: center;
     color: #fff;
 }

 .countdown-container h2 {
     font-size: 32px;
     margin-bottom: 30px;
     color: #ff6a00;
 }

 .timer {
     display: flex;
     justify-content: center;
     gap: 30px;
     font-size: 32px;
     font-weight: bold;
     margin-bottom: 40px;
     flex-wrap: wrap;
 }

 .timer div {
     background: #000;
     padding: 20px 30px;
     border-radius: 12px;
     border: 2px solid #ff6a00;
     box-shadow: 0 4px 10px rgba(255, 106, 0, 0.3);
 }

 .timer span {
     display: block;
     font-size: 36px;
     color: #ff6a00;
 }

 .timer small {
     font-size: 14px;
     color: #ccc;
 }

 .buy-button {
     display: inline-block;
     background: #ff6a00;
     color: #000;
     font-weight: 600;
     padding: 14px 28px;
     border-radius: 8px;
     text-decoration: none;
     font-size: 18px;
     transition: background 0.3s;
 }

 .buy-button:hover {
     background: #ffa033;
 }

 .why-LuckyRoos {
     background-color: #0d0d0d;
     padding: 80px 20px;
     color: #fff;
 }

 .container-why {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     gap: 40px;
 }

 .why-text {
     flex: 1 1 500px;
 }

 .why-text h2 {
     color: #ff6a00;
     font-size: 32px;
     margin-bottom: 20px;
 }

 .why-text p {
     font-size: 17px;
     line-height: 1.8;
     color: #eee;
 }

 .why-image {
     flex: 1 1 400px;
     text-align: center;
 }

 .why-image img {
     max-width: 100%;
     height: auto;
     border-radius: 12px;
     box-shadow: 0 4px 12px rgba(255, 106, 0, 0.2);
 }

 /* Адаптивність */
 @media (max-width: 768px) {
     .container-why {
         flex-direction: column;
         text-align: center;
     }

     .why-text h2 {
         font-size: 28px;
     }

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

 .how-it-works {
     background-color: #000;
     padding: 80px 20px;
     text-align: center;
     color: #fff;
 }

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

 .how-it-works h2 {
     font-size: 34px;
     color: #ff6a00;
     margin-bottom: 50px;
 }

 .steps {
     display: flex;
     flex-wrap: wrap;
     gap: 30px;
     justify-content: center;
 }

 .step {
     background: #111;
     border: 2px solid #ff6a00;
     border-radius: 12px;
     padding: 30px 20px;
     max-width: 260px;
     flex: 1 1 240px;
     box-shadow: 0 6px 12px rgba(255, 106, 0, 0.15);
     transition: transform 0.3s ease;
 }

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

 .step-number {
     background: #ff6a00;
     color: #000;
     font-weight: bold;
     font-size: 22px;
     width: 44px;
     height: 44px;
     border-radius: 50%;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 16px;
 }

 .step h3 {
     font-size: 18px;
     margin-bottom: 12px;
     color: #fff;
 }

 .step p {
     font-size: 15px;
     line-height: 1.5;
     color: #ccc;
 }

 /* Адаптивність */
 @media (max-width: 768px) {
     .steps {
         flex-direction: column;
         align-items: center;
     }

     .step {
         max-width: 100%;
     }
 }

 .winners-section {
     background-color: #0d0d0d;
     padding: 70px 20px;
     color: #fff;
     text-align: center;
 }

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

 .winners-section h2 {
     color: #ff6a00;
     font-size: 32px;
     margin-bottom: 40px;
 }

 .winners-table {
     display: flex;
     flex-direction: column;
     gap: 12px;
     font-size: 16px;
 }

 .winner-row {
     display: grid;
     grid-template-columns: 1fr 1fr 2fr 1fr;
     background-color: #111;
     padding: 16px 20px;
     border: 1px solid #ff6a00;
     border-radius: 10px;
     transition: transform 0.2s;
 }

 .winner-row:hover {
     transform: scale(1.01);
 }

 .winner-row.header {
     background-color: #ff6a00;
     color: #000;
     font-weight: bold;
     border: none;
 }

 .winner-row.header:hover {
     transform: none;
 }

 /* Адаптивність */
 @media (max-width: 768px) {
     .winner-row {
         grid-template-columns: 1fr;
         text-align: left;
     }

     .winner-row.header {
         display: none;
     }

     .winner-row>div {
         padding: 6px 0;
         border-bottom: 1px dashed #333;
     }

     .winner-row>div:last-child {
         border-bottom: none;
     }
 }

 .testimonials {
     background-color: #000;
     padding: 80px 20px;
     text-align: center;
     color: #fff;
 }

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

 .testimonials h2 {
     font-size: 32px;
     color: #ff6a00;
     margin-bottom: 10px;
 }

 .testimonials .subtitle {
     font-size: 18px;
     color: #ccc;
     margin-bottom: 50px;
 }

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

 .testimonial {
     background-color: #111;
     border: 2px solid #ff6a00;
     border-radius: 12px;
     padding: 30px 20px;
     box-shadow: 0 4px 12px rgba(255, 106, 0, 0.15);
     transition: transform 0.3s ease;
 }

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

 .testimonial .avatar {
     font-size: 40px;
     margin-bottom: 15px;
 }

 .testimonial h3 {
     font-size: 18px;
     margin-bottom: 12px;
     color: #ff6a00;
 }

 .testimonial p {
     font-size: 15px;
     line-height: 1.6;
     color: #ddd;
 }

 .footer-info {
     background-color: #0a0a0a;
     color: #ccc;
     padding: 50px 20px;
     font-size: 14px;
     text-align: center;
 }

 .footer-info strong {
     color: #fff;
 }

 .footer-wrapper {
     max-width: 1000px;
     margin: 0 auto;
 }

 .footer-info p {
     margin: 10px 0;
     line-height: 1.6;
 }

 .footer-info .warning-text {
     color: #ff4444;
     font-weight: bold;
     margin-top: 20px;
 }

 .footer-links {
     margin: 25px 0 15px;
 }

 .footer-links a {
     color: #fff;
     margin: 0 15px;
     text-decoration: underline;
     font-weight: bold;
 }

 .footer-buttons {
     margin: 15px 0;
 }

 .blue-button {
     display: inline-block;
     background: #1e90ff;
     color: #fff;
     font-weight: bold;
     padding: 10px 20px;
     border-radius: 8px;
     margin: 5px 10px;
     text-decoration: none;
     box-shadow: 0 0 12px rgba(30, 144, 255, 0.4);
     transition: background 0.3s ease;
 }

 .blue-button:hover {
     background: #339aff;
 }

 .footer-logos {
     display: flex;
     justify-content: center;
     gap: 25px;
     align-items: center;
     flex-wrap: wrap;
     margin: 30px 0;
 }

 .footer-logos img {
     height: 60px;
     background: #ffcda9;
     padding: 20px;
     border-radius: 5px;
     opacity: 0.9;
     transition: opacity 0.3s;
 }

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

 .footer-info .copyright {
     color: #777;
     font-size: 13px;
     margin-top: 30px;
 }

 .buy-section {
     background: #0d0d0d;
     color: #fff;
     padding: 80px 20px;
     text-align: center;
 }

 .buy-container {
     max-width: 900px;
     margin: 0 auto;
 }

 .buy-section h2 {
     font-size: 38px;
     color: #ff6a00;
     margin-bottom: 10px;
 }

 .buy-subtitle {
     font-size: 18px;
     color: #ccc;
     margin-bottom: 30px;
 }

 .ticket-options {
     margin-bottom: 30px;
 }

 .ticket-options label {
     display: block;
     margin-bottom: 8px;
     font-size: 16px;
 }

 .ticket-options input {
     padding: 10px;
     font-size: 16px;
     width: 100px;
     text-align: center;
     margin-right: 10px;
     border-radius: 6px;
     border: 1px solid #ff6a00;
     background: #111;
     color: #fff;
 }

 .ticket-buttons {
     margin-top: 20px;
 }

 .ticket-buttons button {
     padding: 10px 16px;
     background: #ff6a00;
     border: none;
     border-radius: 6px;
     font-weight: bold;
     color: #000;
     cursor: pointer;
     margin-right: 10px;

     transition: background 0.3s;
 }

 .ticket-buttons button:hover {
     background: #ffa03c;
 }

 .number-pool {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     justify-content: center;
     margin: 30px 0;
 }

 .number-pool .num {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background: #111;
     border: 2px solid #444;
     color: #ccc;
     display: flex;
     justify-content: center;
     align-items: center;
     cursor: pointer;
     font-weight: bold;
     transition: 0.2s;
 }

 .number-pool .num:hover {
     border-color: #ff6a00;
     color: #ff6a00;
 }

 .number-pool .selected {
     background: #ff6a00;
     color: #000;
     border-color: #ff6a00;
     box-shadow: 0 0 10px rgba(255, 106, 0, 0.5);
 }

 .buy-now-button {
     padding: 14px 28px;
     background: #ff6a00;
     border: none;
     color: #000;
     font-size: 18px;
     font-weight: bold;
     border-radius: 10px;
     cursor: pointer;
     transition: background 0.3s;
 }

 .buy-now-button:hover {
     background: #ffa03c;
 }

 .user-form {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 15px;
     margin-bottom: 30px;
 }

 .user-form input {
     padding: 12px 16px;
     font-size: 16px;
     border-radius: 8px;
     border: 1px solid #ff6a00;
     background: #111;
     color: #fff;
     width: 260px;
 }

 .user-form input::placeholder {
     color: #888;
 }

 .results-section {
     background-color: #0a0a0a;
     padding: 80px 20px;
     color: #fff;
     text-align: center;
 }

 .results-container {
     max-width: 1100px;
     margin: 0 auto;
 }

 .results-section h2 {
     color: #ff6a00;
     font-size: 34px;
     margin-bottom: 10px;
 }

 .results-section .subtitle {
     color: #ccc;
     font-size: 18px;
     margin-bottom: 40px;
 }

 .latest-numbers ul {
     list-style: none;
     padding: 0;
     margin-bottom: 40px;
 }

 .latest-numbers li {
     margin: 8px 0;
     font-size: 16px;
 }

 .top-winners table {
     width: 100%;
     border-collapse: collapse;
     margin-bottom: 40px;
 }

 .top-winners th,
 .top-winners td {
     border: 1px solid #444;
     padding: 12px;
     font-size: 15px;
 }

 .top-winners th {
     background: #ff6a00;
     color: #000;
 }

 .check-ticket form {
     margin-top: 20px;
 }

 .check-ticket input {
     padding: 12px 16px;
     width: 60%;
     max-width: 400px;
     border: 1px solid #ff6a00;
     border-radius: 8px;
     background: #111;
     color: #fff;
     margin-bottom: 15px;
 }

 .check-ticket button {
     padding: 12px 20px;
     background: #ff6a00;
     color: #000;
     font-weight: bold;
     border: none;
     border-radius: 8px;
     cursor: pointer;
     transition: background 0.3s;
 }

 .check-ticket button:hover {
     background: #ffa63f;
 }

 .result-text {
     margin-top: 15px;
     font-size: 16px;
     color: #0f0;
 }

 .privacy-policy {
     background: #000;
     color: #eee;
     padding: 80px 20px;
     font-size: 15px;
     line-height: 1.7;
 }

 .privacy-container {
     max-width: 900px;
     margin: 0 auto;
 }

 .privacy-policy h2 {
     font-size: 32px;
     color: #ff6a00;
     text-align: center;
     margin-bottom: 10px;
 }

 .privacy-policy .effective-date {
     text-align: center;
     color: #999;
     margin-bottom: 40px;
 }

 .privacy-policy h3 {
     color: #ff6a00;
     font-size: 20px;
     margin-top: 30px;
 }

 .privacy-policy ul {
     padding-left: 20px;
     margin-top: 10px;
 }

 .privacy-policy li {
     margin-bottom: 8px;
 }.terms-section {
  background: #0d0d0d;
  color: #eee;
  padding: 80px 20px;
  font-size: 15px;
  line-height: 1.7;
}

.terms-container {
  max-width: 900px;
  margin: 0 auto;
}

.terms-section h2 {
  font-size: 32px;
  color: #ff6a00;
  text-align: center;
  margin-bottom: 10px;
}

.terms-section .effective-date {
  text-align: center;
  color: #999;
  margin-bottom: 40px;
}

.terms-section h3 {
  color: #ff6a00;
  font-size: 20px;
  margin-top: 30px;
}

.terms-section ul {
  padding-left: 20px;
  margin-top: 10px;
}

.terms-section li {
  margin-bottom: 8px;
}

.terms-section a {
  color: #ffa63f;
  text-decoration: underline;
}
.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.age-box {
  background: #111;
  border: 2px solid #ff6a00;
  padding: 40px 30px;
  text-align: center;
  max-width: 400px;
  border-radius: 10px;
  color: #fff;
}

.age-box h2 {
  color: #ff6a00;
  margin-bottom: 20px;
}

.age-box p {
  font-size: 15px;
  margin-bottom: 25px;
  color: #ddd;
}

.age-box a {
  color: #ffa63f;
  text-decoration: underline;
}

.age-buttons button {
  padding: 12px 20px;
  margin: 0 10px;
  font-weight: bold;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.age-buttons button:first-child {
  background: #ff6a00;
  color: #000;
}

.age-buttons button:last-child {
  background: #444;
  color: #fff;
}
