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

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

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

p {
  font-weight: 600;
}

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

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

/* Header */
.header {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 50%, #fbbf24 100%);
    padding: 3rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

.hero-text h1 {
    font-size: 2.5rem;
    
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
    background: #f59e0b;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-button:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

.lottery-balls {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

/* Recent Winners Section */
.recent-winners {
    background: #e5e7eb;
    padding: 3rem 0;
}

.recent-winners h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.recent-winners p {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.winners-button {
    background: #fbbf24;
    color: #1f2937;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 1rem;
}

.winners-button:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Games Section */
.games {
    padding: 4rem 0;
    background: #f9fafb;
    position: relative;
}

.games h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 3rem;
    text-align: center;
    text-transform: uppercase;
}

.game-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.game-card {
    background: #4ade80;
    border-radius: 15px;
    padding: 2rem;
    color: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.game-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    
}

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

.game-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.play-button {
    background: #f59e0b;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: 100%;
}

.play-button:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

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

.balls-decoration {
    max-width: 300px;
    height: auto;
    opacity: 0.7;
}

/* Results Section */
.results {
    background: #e5e7eb;
    padding: 3rem 0;
}

.results h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.results > .container > p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

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

.result-card {
    background: #4ade80;
    color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    line-height: 1.6;
}

.result-card p {
    margin: 0;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

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

.responsible-gaming h3 {
    color: #4ade80;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

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

.responsible-gaming a {
    color: #4ade80;
    text-decoration: none;
}

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

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

.footer-section h4 {
    color: #4ade80;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

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

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

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

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

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

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

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

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

.footer-links-bottom a:hover {
    color: #4ade80;
}

/* Age Verification Modal */
.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;
}

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

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

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

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

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

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

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

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

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

/* Login Modal */
.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;
}

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

.login-header {
    background: #4ade80;
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

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

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

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

.login-form {
    padding: 2rem;
}

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

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

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

.input-group input:focus {
    outline: none;
    border-color: #4ade80;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.1);
}

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

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

.login-submit {
    background: #4ade80;
    color: white;
}

.login-submit:hover {
    background: #22c55e;
    transform: translateY(-2px);
}

.register-btn {
    background: #f59e0b;
    color: white;
}

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

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

.forgot-password {
    color: #4ade80;
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

/* Header */
.header {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 50%, #fbbf24 100%);
    padding: 3rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
    background: #f59e0b;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-button:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

.lottery-balls {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

/* Recent Winners Section */
.recent-winners {
    background: #e5e7eb;
    padding: 3rem 0;
}

.recent-winners h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.recent-winners p {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.winners-button {
    background: #fbbf24;
    color: #1f2937;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 1rem;
}

.winners-button:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Games Section */
.games {
    padding: 4rem 0;
    background: #f9fafb;
    position: relative;
}

.games h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 3rem;
    text-align: center;
    text-transform: uppercase;
}

.game-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.game-card {
    background: #4ade80;
    border-radius: 15px;
    padding: 2rem;
    color: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.game-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

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

.game-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.play-button {
    background: #f59e0b;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: 100%;
}

.play-button:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

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

.balls-decoration {
    max-width: 300px;
    height: auto;
    opacity: 0.7;
}

/* Results Section */
.results {
    background: #e5e7eb;
    padding: 3rem 0;
}

.results h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.results > .container > p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

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

.result-card {
    background: #4ade80;
    color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    line-height: 1.6;
}

.result-card p {
    margin: 0;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

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

.responsible-gaming h3 {
    color: #4ade80;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

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

.responsible-gaming a {
    color: #4ade80;
    text-decoration: none;
}

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

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

.footer-section h4 {
    color: #4ade80;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

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

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

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

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

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

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

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

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

.footer-links-bottom a:hover {
    color: #4ade80;
}

/* Age Verification Modal */
.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;
}

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

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

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

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

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

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

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

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

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

/* Login Modal */
.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;
}

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

.login-header {
    background: #4ade80;
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

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

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

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

.login-form {
    padding: 2rem;
}

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

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

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

.input-group input:focus {
    outline: none;
    border-color: #4ade80;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.1);
}

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

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

.login-submit {
    background: #4ade80;
    color: white;
}

.login-submit:hover {
    background: #22c55e;
    transform: translateY(-2px);
}

.register-btn {
    background: #f59e0b;
    color: white;
}

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

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

.forgot-password {
    color: #4ade80;
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .game-cards {
        grid-template-columns: 1fr;
    }
    
    .results-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .footer-links-bottom {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .lottery-balls-decoration {
        display: none;
    }
    
    .age-modal-buttons {
        flex-direction: column;
    }
    
    .login-modal-content {
        width: 95%;
        margin: 0 1rem;
    }
    
    .login-header {
        padding: 1.5rem;
    }
    
    .login-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .game-cards {
        grid-template-columns: 1fr;
    }
    
    .game-card {
        padding: 1.5rem;
    }
    
    .age-modal-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .footer-logos {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-logo {
        height: 30px;
    }
    
    .responsible-gaming {
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
}