@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat/Montserrat-VariableFont_wght.ttf");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat" !important;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    overflow-x: hidden;
    max-width: 100%;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

p {
  font-weight: 600;
}

h1, h2, h3, h4, span{
  font-weight: 800;
}

.lotto-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 25px;
    width: 100%;
    overflow-x: hidden;
}

/* Header */
.lotto-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.lotto-logo-img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Hero Section */
.lotto-hero {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 30%, #f59e0b 70%, #d97706 100%);
    padding: 3.5rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.lotto-hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.lotto-hero-text h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    letter-spacing: -0.5px;
}

.lotto-hero-text p {
    font-size: 1.15rem;
    margin-bottom: 2.2rem;
    line-height: 1.85;
    font-weight: 500;
}

.lotto-cta-button {
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.lotto-cta-button:hover {
    background: linear-gradient(45deg, #dc2626, #b91c1c);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}

.lotto-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lotto-balls {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,0.25));
    transition: transform 0.3s ease;
}

.lotto-balls:hover {
    transform: scale(1.03);
}

/* Recent Winners Section */
.lotto-recent-winners {
    background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 3.5rem 0;
}

.lotto-recent-winners h2 {
    font-size: 2.3rem;
    color: #1f2937;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.lotto-recent-winners p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 1.1rem;
    line-height: 1.75;
    font-weight: 500;
}

.lotto-winners-button {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
    color: white;
    padding: 1rem 2.2rem;
    border: none;
    border-radius: 28px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 1.2rem;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.lotto-winners-button:hover {
    background: linear-gradient(45deg, #7c3aed, #6d28d9);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* Games Section */
.lotto-games {
    padding: 4.5rem 0;
    background: linear-gradient(180deg, #fefefe 0%, #f8fafc 100%);
    position: relative;
}

.lotto-games h2 {
    font-size: 2.3rem;
    color: #1f2937;
    margin-bottom: 3.5rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.lotto-game-cards {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
    flex-direction: column;
}

.lotto-game-card {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 20px;
    padding: 2.2rem;
    color: white;
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.lotto-game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.25);
    border-color: rgba(255, 255, 255, 0.2);
}

.lotto-game-header h3 {
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
}

.lotto-game-content {
    margin-bottom: 2rem;
}

.lotto-game-content p {
    margin-bottom: 1.1rem;
    line-height: 1.65;
    font-size: 1rem;
    font-weight: 500;
}

.lotto-play-button {
    background: linear-gradient(45deg, #f97316, #ea580c);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 28px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.lotto-play-button:hover {
    background: linear-gradient(45deg, #ea580c, #c2410c);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.lotto-balls-decoration {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.lotto-balls-decoration-img {
    max-width: 320px;
    height: auto;
    opacity: 0.75;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

/* Results Section */
.lotto-results {
    background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 3.5rem 0;
}

.lotto-results h2 {
    font-size: 2.3rem;
    color: #1f2937;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.lotto-results > .lotto-container > p {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 2.2rem;
    font-weight: 500;
}

.lotto-results-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(520px, 1fr));
    gap: 2.5rem;
}

.lotto-result-card {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
    padding: 2.2rem;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(6, 182, 212, 0.15);
    line-height: 1.6;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.lotto-result-card p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.65;
}

/* Footer */
.lotto-footer {
    background: linear-gradient(180deg, #111827 0%, #0f172a 100%);
    color: white;
    padding: 3.5rem 0 1.5rem;
}

.lotto-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.lotto-responsible-gaming h3 {
    color: #10b981;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    font-weight: 800;
}

.lotto-responsible-gaming p {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.lotto-responsible-gaming a {
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
}

.lotto-responsible-gaming a:hover {
    text-decoration: underline;
}

.lotto-footer-links {
    display: grid;
    gap: 2rem;
}

.lotto-footer-section h4 {
    color: #10b981;
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    font-weight: 800;
}

.lotto-footer-section p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.lotto-footer-logos {
    display: flex;
    /* align-items: center; */
    gap: 2rem;
    margin-top: 2rem;
}

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

.lotto-age-verification {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lotto-age-badge {
    background: #dc2626;
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    
    font-size: 1.2rem;
    min-width: 40px;
    text-align: center;
}

.lotto-age-verification p {
    font-size: 0.8rem;
    line-height: 1.3;
}

.lotto-footer-bottom {
    /* border-top: 1px solid #374151; */
    padding-top: 2rem;
    text-align: center;
    display: flex;
    justify-content: end;
    align-items: end;
}

@media (max-width: 768px) {
    .lotto-footer-bottom {
        align-items: center;
        justify-content: center;
    } 
}

.lotto-footer-links-bottom {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.lotto-footer-links-bottom a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.lotto-footer-links-bottom a:hover {
    color: #10b981;
}

/* Age Verification Modal */
.lotto-age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lotto-age-modal-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    margin: 0 2rem;
}

.lotto-age-modal-content h2 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.lotto-age-modal-content p {
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.lotto-age-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.lotto-age-button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.lotto-age-confirm {
    background: #4ade80;
    color: white;
}

.lotto-age-confirm:hover {
    background: #22c55e;
}

.lotto-age-deny {
    background: #ef4444;
    color: white;
}

.lotto-age-deny:hover {
    background: #dc2626;
}

/* Login Modal */
.lotto-login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.lotto-login-modal-content {
    background: white;
    border-radius: 15px;
    max-width: 450px;
    width: 90%;
    margin: 0 2rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.lotto-login-header {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 2.2rem;
    text-align: center;
    position: relative;
}

.lotto-login-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.lotto-login-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    transition: all 0.3s ease;
}

.lotto-login-close:hover {
    transform: rotate(90deg);
    opacity: 0.8;
}

.lotto-login-form {
    padding: 2rem;
}

.lotto-input-group {
    margin-bottom: 1.5rem;
}

.lotto-input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1f2937;
    
}

.lotto-input-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.lotto-input-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.lotto-login-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.lotto-login-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.lotto-login-submit {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
}

.lotto-login-submit:hover {
    background: linear-gradient(45deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
}

.lotto-register-btn {
    background: linear-gradient(45deg, #f97316, #ea580c);
    color: white;
}

.lotto-register-btn:hover {
    background: linear-gradient(45deg, #ea580c, #c2410c);
    transform: translateY(-2px);
}

.lotto-login-links {
    text-align: center;
}

.lotto-forgot-password {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.lotto-forgot-password:hover {
    text-decoration: underline;
    color: #1d4ed8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .lotto-container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .lotto-hero {
        padding: 2.5rem 0;
    }
    
    .lotto-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .lotto-hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .lotto-hero-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .lotto-cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
    
    .lotto-games {
        padding: 3rem 0;
    }
    
    .lotto-games h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .lotto-game-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .lotto-game-card {
        padding: 1.5rem;
        min-width: 0;
    }
    
    .lotto-play-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .lotto-recent-winners {
        padding: 2.5rem 0;
    }
    
    .lotto-recent-winners h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .lotto-winners-button {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }
    
    .lotto-results {
        padding: 2.5rem 0;
    }
    
    .lotto-results h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .lotto-results-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .lotto-result-card {
        padding: 1.5rem;
        min-width: 0;
    }
    
    .lotto-footer {
        padding: 2.5rem 0 1rem;
    }
    
    .lotto-footer-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .lotto-footer-links-bottom {
        flex-direction: column;
        gap: 1rem;
    }
    
    .lotto-footer-logos {
        flex-wrap: wrap;
        /* justify-content: center; */
        gap: 1rem;
    }
    
    .lotto-balls-decoration {
        display: none;
    }
    
    .lotto-age-modal-buttons {
        flex-direction: column;
    }
    
    .lotto-login-modal-content {
        width: 95%;
        margin: 0 1rem;
    }
    
    .lotto-login-header {
        padding: 1.5rem;
    }
    
    .lotto-login-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .lotto-container {
        padding: 0 12px;
        max-width: 100%;
    }
    
    .lotto-header {
        padding: 1rem 0;
    }
    
    .lotto-logo-img {
        height: 35px;
    }
    
    .lotto-hero {
        padding: 2rem 0;
    }
    
    .lotto-hero-text h1 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .lotto-hero-text p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        line-height: 1.6;
    }
    
    .lotto-cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        border-radius: 25px;
    }
    
    .lotto-games {
        padding: 2.5rem 0;
    }
    
    .lotto-games h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .lotto-game-cards {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .lotto-game-card {
        padding: 1.2rem;
        border-radius: 15px;
    }
    
    .lotto-game-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
    }
    
    .lotto-play-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        border-radius: 25px;
    }
    
    .lotto-recent-winners {
        padding: 2rem 0;
    }
    
    .lotto-recent-winners h2 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .lotto-recent-winners p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    
    .lotto-winners-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 25px;
    }
    
    .lotto-results {
        padding: 2rem 0;
    }
    
    .lotto-results h2 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .lotto-results > .lotto-container > p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .lotto-results-cards {
        gap: 1.2rem;
    }
    
    .lotto-result-card {
        padding: 1.2rem;
        border-radius: 15px;
    }
    
    .lotto-result-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .lotto-footer {
        padding: 2rem 0 1rem;
    }
    
    .lotto-footer-content {
        grid-template-columns: 1fr !important;
        gap: 1.2rem;
    }
    
    .lotto-responsible-gaming h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .lotto-responsible-gaming p {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }
    
    .lotto-footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .lotto-footer-section p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .lotto-footer-logos {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .lotto-footer-logo {
        height: 28px;
    }
    
    .lotto-footer-links-bottom {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .lotto-footer-links-bottom a {
        font-size: 0.8rem;
    }
    
    .lotto-responsible-gaming {
        text-align: center;
    }
    
    .lotto-footer-links {
        text-align: center;
    }
    
    .lotto-age-modal-content {
        padding: 1.5rem;
        margin: 0 0.8rem;
    }
    
    .lotto-login-modal-content {
        width: 98%;
        margin: 0 0.5rem;
    }
    
    .lotto-login-header {
        padding: 1.2rem;
    }
    
    .lotto-login-form {
        padding: 1.2rem;
    }
    
    .lotto-input-group input {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .lotto-login-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

.lotto-footer-logos {
    flex-direction: column;
}

.lotto-footer-logos ul {
    list-style-type: none;
}

.lotto-footer-logos a {
    color: #10b981;
    transition: color 0.3s ease;
}
.lotto-box-menu--list-svg {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    margin: 22px 0;
}