/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-primary {
    background: #1E88E5;
    color: white;
}

.btn-primary:hover {
    background: #1976D2;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-return {
    background: white;
    color: #1E88E5;
    border: 2px solid #1E88E5;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 500;
}

.btn-return:hover {
    background: #1E88E5;
    color: white;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #1E88E5;
    color: white;
    padding: 24px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(30, 136, 229, 0.3);
}

.cookie-consent.hidden {
    display: none;
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cookie-icon {
    font-size: 24px;
}

.cookie-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.cookie-content p {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-accept,
.btn-refuse {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: white;
    color: #1E88E5;
}

.btn-accept:hover {
    background: #f5f5f5;
}

.btn-refuse {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-refuse:hover {
    background: white;
    color: #1E88E5;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-list a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover,
.nav-list a.active {
    color: #1E88E5;
}

.nav-list a.active {
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    background-image: url(../images/hero.png);
    background-position: center;
    background-size: cover;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step {
    background: #f8fafb;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background: #1E88E5;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.step ul {
    text-align: left;
    list-style: none;
    color: #666;
}

.step li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.step li::before {
    content: '•';
    color: #1E88E5;
    position: absolute;
    left: 0;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: #f8fafb;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature {
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #E3F2FD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon img {
    width: 40px;
    height: 40px;
}

.feature h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial {
    position: relative;
    padding: 32px;
    background: #f8fafb;
    border-radius: 12px;
}

.quote-number {
    position: absolute;
    top: -10px;
    left: 32px;
    background: #1E88E5;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.testimonial p {
    color: #333;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.6;
}

.testimonial cite {
    color: #666;
    font-style: normal;
    font-weight: 500;
}

/* Mobile App */
.mobile-app {
    padding: 80px 0;
    background: #f8fafb;
}

.mobile-app-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.mobile-app-image img {
    max-width: 100%;
    height: auto;
}

.mobile-app-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.mobile-app-text > p {
    color: #666;
    margin-bottom: 32px;
    font-size: 16px;
}

.app-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.app-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.app-feature-icon {
    width: 40px;
    height: 40px;
    background: #E3F2FD;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-feature-icon img {
    width: 20px;
    height: 20px;
}

.app-feature h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.app-feature p {
    font-size: 12px;
    color: #666;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: #1E88E5;
}

.faq-icon {
    font-size: 20px;
    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-bottom: 24px;
    color: #666;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    padding: 80px 0;
    background: #f8fafb;
}

.form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1E88E5;
}

.form-group label input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.form-group label a {
    color: #1E88E5;
    text-decoration: none;
}

.form-group label a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
   
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    border-bottom: 1px solid #555;
    padding-bottom: 40px;
}

.footer-section h3 {
    font-size: 24px;
    font-weight: 700;
  
    margin-bottom: 0;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
  
    margin-bottom: 20px;
}

.footer-section p {
  
    font-size: 14px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-section ul li a:hover {
    
}

.responsible-gaming,
.legal-disclaimer {
    margin-bottom: 40px;
}

.responsible-gaming h4,
.legal-disclaimer h4 {
    font-size: 18px;
    font-weight: 600;
   
    margin-bottom: 16px;
}

.responsible-gaming p {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

.responsible-gaming p strong {
   
}

.legal-disclaimer p {
  
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

.responsible-gambling-partners h4 {
    font-size: 18px;
    font-weight: 600;
 
    margin-bottom: 20px;
}

.partner-logos {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.partner-logos img {
    height: 50px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    filter: brightness(0.9);
}

.partner-logos img:hover {
    opacity: 1;
    filter: brightness(1);
}

/* Thank You Page */
.thank-page {
    background: linear-gradient(135deg, #1E88E5 0%, #1976D2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-container {
    text-align: center;
    color: white;
}

.thank-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.thank-content p {
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mobile-app-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-features {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .steps,
    .features,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cookie-consent {
        width: 95%;
        padding: 20px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .thank-content h1 {
        font-size: 36px;
    }

    .thank-content p {
        font-size: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 30px;
    }

    .partner-logos {
        justify-content: flex-start;
        gap: 20px;
    }

    .partner-logos img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .how-it-works,
    .why-choose-us,
    .testimonials,
    .mobile-app,
    .faq,
    .contact-form {
        padding: 60px 0;
    }

    .form {
        padding: 30px 20px;
    }

    .thank-content h1 {
        font-size: 28px;
    }

    .thank-content p {
        font-size: 18px;
    }
}

/* Lotteries Page Styles */

/* Active nav link */
.nav-list a.active {
    color: #1E88E5;
    font-weight: 600;
}

/* Lotteries Hero Section */
.lotteries-hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 120px 0 60px;
    text-align: center;
}

.lotteries-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.lotteries-hero-content p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Lotteries Grid Section */
.lotteries-grid-section {
    padding: 80px 0;
    background: white;
}

.lotteries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Lottery Card */
.lottery-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.lottery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

/* Lottery Image */
.lottery-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.lottery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.lottery-card:hover .lottery-image img {
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #1E88E5;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Lottery Content */
.lottery-content {
    padding: 24px;
}

.lottery-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.lottery-content > p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Lottery Details */
.lottery-details {
    margin-bottom: 24px;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 13px;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.jackpot-icon {
    color: #FF9800;
}

.draw-icon {
    color: #4CAF50;
}

.time-icon {
    color: #9C27B0;
}

.price-icon {
    color: #2196F3;
}

.detail-text {
    color: #666;
    font-weight: 500;
}

/* Buy Tickets Button */
.btn-lottery {
    width: 100%;
    background: #1E88E5;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-lottery:hover {
    background: #1976D2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.3);
}

.btn-lottery:active {
    transform: translateY(0);
}

/* Why Lotto-Auhor Section */
.why-lotto-auhor {
    padding: 80px 0;
    background: #f8fafb;
}

.why-lotto-auhor h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 32px;
}

.why-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.why-content p strong {
    color: #333;
    font-weight: 600;
}

.why-content p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .lotteries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .lotteries-hero {
        padding: 100px 0 50px;
    }

    .lotteries-hero-content h1 {
        font-size: 32px;
    }

    .lotteries-hero-content p {
        font-size: 16px;
    }

    .lotteries-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lottery-card {
        margin: 0 auto;
        max-width: 400px;
    }

    .lotteries-grid-section,
    .why-lotto-auhor {
        padding: 60px 0;
    }

    .why-lotto-auhor h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .lotteries-hero-content h1 {
        font-size: 28px;
    }

    .lotteries-hero-content p {
        font-size: 15px;
    }

    .lottery-content {
        padding: 20px;
    }

    .lottery-content h3 {
        font-size: 20px;
    }

    .detail-item {
        font-size: 12px;
    }

    .btn-lottery {
        padding: 12px 20px;
        font-size: 15px;
    }

    .lotteries-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .lottery-card {
        max-width: 100%;
    }

    .why-lotto-auhor h2 {
        font-size: 24px;
    }

    .why-content p {
        font-size: 15px;
    }
}

/* Animation for cards on load */
.lottery-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.lottery-card:nth-child(1) { animation-delay: 0.1s; }
.lottery-card:nth-child(2) { animation-delay: 0.2s; }
.lottery-card:nth-child(3) { animation-delay: 0.3s; }
.lottery-card:nth-child(4) { animation-delay: 0.4s; }
.lottery-card:nth-child(5) { animation-delay: 0.5s; }
.lottery-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects for detail items */
.detail-item {
    transition: color 0.3s ease;
}

.lottery-card:hover .detail-item .detail-text {
    color: #333;
}

/* Focus styles for accessibility */
.btn-lottery:focus {
    outline: 2px solid #1E88E5;
    outline-offset: 2px;
}

/* Loading state for buttons */
.btn-lottery:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.btn-lottery:disabled:hover {
    background: #ccc;
    transform: none;
    box-shadow: none;
}

/* Results Page Styles */

/* Results Hero Section */
.results-hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 120px 0 60px;
    text-align: center;
}

.results-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.results-hero-content p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Latest Results Section */
.latest-results {
    padding: 80px 0;
    background: white;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Result Card */
.result-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

/* Result Image */
.result-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.result-card:hover .result-image img {
    transform: scale(1.05);
}

.you-win-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 0, 0, 0.9);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

/* Result Content */
.result-content {
    padding: 24px;
}

.result-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.draw-info {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
    font-weight: 500;
}

/* Winning Numbers Section */
.winning-numbers-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.winning-numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    justify-content: center;
}

.number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.number:hover {
    transform: scale(1.1);
}

.number.blue {
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

.number.orange {
    background: linear-gradient(135deg, #FF9800, #F57C00);
}

.number.red {
    background: linear-gradient(135deg, #F44336, #D32F2F);
}

.number.powerball {
    border: 3px solid #FFD700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 0 0 2px #FFD700;
}

/* Result Buttons */
.btn-result {
    width: 100%;
    background: transparent;
    color: #1E88E5;
    border: 2px solid #1E88E5;
    padding: 14px 24px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-result:hover {
    background: #1E88E5;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.3);
}

/* Check Your Tickets Section */
.check-tickets {
    padding: 80px 0;
    background: #f8fafb;
    text-align: center;
}

.check-tickets-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.check-tickets-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* More Results Section */
.more-results {
    padding: 80px 0;
    background: white;
}

.more-results h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

/* Results Table */
.results-table {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.table-header {
    background: #f8fafb;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 3fr 1fr;
    gap: 20px;
    padding: 20px;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #e0e0e0;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 3fr 1fr;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
    transition: background-color 0.3s ease;
}

.table-row:hover {
    background: #f8fafb;
}

.table-row:last-child {
    border-bottom: none;
}

.col-lottery strong {
    color: #333;
    font-weight: 600;
}

.col-draw,
.col-date {
    color: #666;
    font-size: 14px;
}

/* Mini Numbers */
.mini-numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.mini-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.mini-number.supp {
    background: linear-gradient(135deg, #FF9800, #F57C00);
}

.btn-mini {
    background: #1E88E5;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-mini:hover {
    background: #1976D2;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .results-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1.5fr 0.8fr 0.8fr 2fr 0.8fr;
        gap: 15px;
        padding: 15px;
    }

    .mini-numbers {
        gap: 4px;
    }

    .mini-number {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .results-hero {
        padding: 100px 0 50px;
    }

    .results-hero-content h1 {
        font-size: 32px;
    }

    .results-hero-content p {
        font-size: 16px;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .result-card {
        margin: 0 auto;
        max-width: 450px;
    }

    .latest-results,
    .check-tickets,
    .more-results {
        padding: 60px 0;
    }

    .check-tickets-content h2,
    .more-results h2 {
        font-size: 28px;
    }

    /* Mobile Table */
    .results-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .table-header {
        display: none;
    }

    .table-row {
        display: block;
        background: #f8fafb;
        margin-bottom: 16px;
        border-radius: 8px;
        border: none;
        white-space: normal;
    }

    .table-row > div {
        display: block;
        margin-bottom: 8px;
    }

    .table-row > div:before {
        content: attr(data-label) ": ";
        font-weight: 600;
        color: #333;
    }

    .table-row .col-action:before {
        content: "";
    }
}

@media (max-width: 480px) {
    .results-hero-content h1 {
        font-size: 28px;
    }

    .results-hero-content p {
        font-size: 15px;
    }

    .result-content {
        padding: 20px;
    }

    .result-content h3 {
        font-size: 22px;
    }

    .winning-numbers {
        gap: 8px;
    }

    .number {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .btn-result {
        padding: 12px 20px;
        font-size: 15px;
    }

    .check-tickets-content h2,
    .more-results h2 {
        font-size: 24px;
    }

    .check-tickets-content p {
        font-size: 15px;
    }

    .mini-numbers {
        gap: 3px;
    }

    .mini-number {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }
}

/* Animation for cards on load */
.result-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.result-card:nth-child(1) { animation-delay: 0.1s; }
.result-card:nth-child(2) { animation-delay: 0.2s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Focus styles for accessibility */
.btn-result:focus,
.btn-mini:focus {
    outline: 2px solid #1E88E5;
    outline-offset: 2px;
}

/* Loading state for buttons */
.btn-result:disabled,
.btn-mini:disabled {
    background: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

.btn-result:disabled:hover,
.btn-mini:disabled:hover {
    background: #ccc;
    transform: none;
    box-shadow: none;
}

/* About Page Styles */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 120px 0 60px;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero-content p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Content Section */
.about-content {
    padding: 80px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Our Values Section */
.our-values {
    padding: 80px 0;
    background: #f8fafb;
}

.our-values h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-item {
    background: white;
    padding: 40px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: transform 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1);
}

.value-icon img {
    width: 40px;
    height: 40px;
}

.value-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.value-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Our Team Section */
.our-team {
    padding: 80px 0;
    background: white;
}

.our-team h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.member-photo {
    height: 200px;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-photo img {
    transform: scale(1.1);
}

.member-info {
    padding: 24px;
}

.member-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.member-title {
    font-size: 14px;
    color: #1E88E5;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Licensing & Compliance Section */
.licensing-compliance {
    padding: 80px 0;
    background: #f8fafb;
    text-align: center;
}

.licensing-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 32px;
}

.licensing-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.licensing-content p:last-of-type {
    margin-bottom: 40px;
}

.btn-license {
    background: #1E88E5;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-license:hover {
    background: #1976D2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 50px;
    }

    .about-hero-content h1 {
        font-size: 32px;
    }

    .about-hero-content p {
        font-size: 16px;
    }

    .about-content,
    .our-values,
    .our-team,
    .licensing-compliance {
        padding: 60px 0;
    }

    .about-text h2,
    .our-values h2,
    .our-team h2,
    .licensing-content h2 {
        font-size: 28px;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .value-item {
        padding: 32px 20px;
    }

    .value-icon {
        width: 70px;
        height: 70px;
    }

    .value-icon img {
        width: 35px;
        height: 35px;
    }

    .licensing-content p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 28px;
    }

    .about-hero-content p {
        font-size: 15px;
    }

    .about-text h2,
    .our-values h2,
    .our-team h2,
    .licensing-content h2 {
        font-size: 24px;
    }

    .about-text p {
        font-size: 15px;
    }

    .value-item {
        padding: 24px 16px;
    }

    .value-icon {
        width: 60px;
        height: 60px;
    }

    .value-icon img {
        width: 30px;
        height: 30px;
    }

    .value-item h3 {
        font-size: 18px;
    }

    .value-item p {
        font-size: 13px;
    }

    .member-info {
        padding: 20px;
    }

    .member-info h3 {
        font-size: 18px;
    }

    .member-title {
        font-size: 13px;
    }

    .member-description {
        font-size: 13px;
    }

    .btn-license {
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* Animation for elements on load */
.value-item,
.team-member {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.value-item:nth-child(1) { animation-delay: 0.1s; }
.value-item:nth-child(2) { animation-delay: 0.2s; }
.value-item:nth-child(3) { animation-delay: 0.3s; }
.value-item:nth-child(4) { animation-delay: 0.4s; }

.team-member:nth-child(1) { animation-delay: 0.1s; }
.team-member:nth-child(2) { animation-delay: 0.2s; }
.team-member:nth-child(3) { animation-delay: 0.3s; }
.team-member:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Focus styles for accessibility */
.btn-license:focus {
    outline: 2px solid #1E88E5;
    outline-offset: 2px;
}

/* Loading state for license button */
.btn-license:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.btn-license:disabled:hover {
    background: #ccc;
    transform: none;
    box-shadow: none;
}

/* Additional hover effects */
.about-text {
    transition: transform 0.3s ease;
}

.about-grid:hover .about-text {
    transform: translateY(-5px);
}

.about-image {
    transition: transform 0.3s ease;
}

.about-grid:hover .about-image {
    transform: translateY(-5px);
}

/* Licensing section special styling */
.licensing-compliance {
    position: relative;
}

.licensing-compliance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #1E88E5, #42A5F5);
}

/* Team member special hover effects */
.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.1), rgba(66, 165, 245, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.team-member:hover::before {
    opacity: 1;
}

.team-member {
    position: relative;
}
              .page {
                padding: 180px 0 80px;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              .thank {
                padding-top: 140px;
                padding-bottom: 140px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 40px;
                text-align: center;
              }

              .thank-list {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto 40px;
                display: flex;
                flex-direction: column;
                padding: 40px 24px;
                color: #121212;
                background: #E1E0DA;
              }

              .consent {
                border-radius: 10px;
                  background: #F5F5F5;
                    padding: 30px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    gap: 15px;
                    max-width: 830px;
                    width: 95%;
                    position: fixed;
                    left: 10%;
                    bottom: 50px;
                    transform: translateX(-10%);
                    z-index: 21;
                 
                   
                }

               
                
                .consent__text {
                  font-size: 14px;
                  color: #131313;
                  span {
                    display: block;
                    font-size: 30px;
                    text-transform: uppercase;
                  }
                }
                
                .consent__buttons {
                  display: flex;
                 
                  gap: 30px;
                  align-items: center;
                  width: 100%;
                 
                }       
                
                @media (max-width: 900px) {
                  .consent {
                    left: 50%;
                    transform: translateX(-50%);
                  }
                  .consent__buttons {
                    justify-content: center;
                    flex-direction: column;
                  }
                }

                .button {
                  position: relative;
                  align-self: center;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  text-decoration: none;
                  border: none;
                  border-radius: 20px;
                 
                  max-width: 400px;
                  min-height: 48px;
                  padding: 0 24px;
                  font-family:
                    Roboto,
                    -apple-system,
                    Roboto,
                    Helvetica,
                    sans-serif;
                  font-size: 18px;
                  font-weight: 700;
                  color: rgba(255, 255, 255, 1);
                  white-space: nowrap;
                  text-transform: uppercase;
                  cursor: pointer;
                }

                