html, body { overflow-x: hidden; }

.hero-zone {
    padding: 190px 0 130px;
    background: linear-gradient(135deg, #0d2137 0%, #1a365d 100%);
    position: relative;
    overflow: hidden;
}
.hero-zone::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.07) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}
.hero-content h1 {
    font-family: 'Georgia', serif;
    font-size: 60px;
    color: #ffffff;
    margin-bottom: 32px;
    line-height: 1.08;
}
.hero-content p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 19px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9;
}

.lottery-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}
.lottery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #1a365d, #d4a853, #1a365d);
}
.lottery-container {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(26, 54, 93, 0.02) 0%, rgba(212, 168, 83, 0.04) 100%);
    border-radius: 32px;
    padding: 48px;
    border: 1px solid rgba(26, 54, 93, 0.08);
    box-shadow: 0 14px 50px rgba(0,0,0,0.05);
}

.cta-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #f7fafc 0%, #f0f4f8 100%);
    text-align: center;
}
.cta-section h2 {
    font-family: 'Georgia', serif;
    font-size: 40px;
    color: #0d2137;
    margin-bottom: 28px;
}
.cta-section p {
    color: #4a5568;
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.9;
}

.site-footer {
    background: #0a1a2c;
    padding: 90px 0 36px;
    color: #ffffff;
    border-top: 8px solid #d4a853;
}
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 56px; margin-bottom: 56px; }
.footer-logo img { height: 58px; margin-bottom: 28px; }
.footer-about p { color: rgba(255, 255, 255, 0.55); line-height: 1.9; font-size: 14px; }
.footer-col h4 {
    color: #d4a853;
    margin-bottom: 28px;
    font-size: 15px;
    font-family: 'Georgia', serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 16px; }
.footer-col a { color: rgba(255, 255, 255, 0.55); text-decoration: none; transition: all 0.3s ease; font-size: 14px; }
.footer-col a:hover { color: #d4a853; padding-left: 8px; }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 36px;
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
}

@media (max-width: 767px) {
    .hero-content h1 { font-size: 40px; }
    .lottery-container { padding: 24px; }
    .footer-grid { grid-template-columns: 1fr; }
}
@media (min-width: 768px) and (max-width: 991px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}