/*
Theme Name: AI5 Annalottery
Theme URI: https://annalottery.net
Description: Dark Gold Flow - Neural Deployment for Annalottery
Author: AI Agent
Version: 1.0
*/

:root {
    --bg-color: #0B0F19;
    --text-color: #E2E8F0;
    --accent-color: #FFD700; /* Gold */
    --accent-hover: #D4AF37;
    --success-color: #00E396;
    --header-height: 60px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 80px; /* Space for sticky footer */
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* ================= Header & Nav (Checkbox Hack) ================= */
.site-header {
    background: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(10px);
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.site-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Checkbox Hack Logic */
#nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none; /* Hidden on Desktop */
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--accent-color);
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-navigation a {
    font-weight: 500;
    color: #fff;
}

.main-navigation a:hover {
    color: var(--accent-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle-label {
        display: block; /* Show Hamburger on Mobile */
    }

    .main-navigation {
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--bg-color);
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease-in-out;
    }

    .main-navigation ul {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }

    /* The Magic: When Checkbox is Checked, Grow Height */
    #nav-toggle:checked ~ .main-navigation {
        height: 250px; /* Adjust based on menu items */
    }
}

/* ================= Hero Section ================= */
.hero-section {
    margin-top: var(--header-height);
    padding: 60px 20px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(11, 15, 25, 0) 70%);
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(to right, #fff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #a0a0a0;
    margin-bottom: 30px;
}

/* ================= Buttons ================= */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
}

/* ================= Content Sections ================= */
.section-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-title {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-align: center;
}

.feature-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-title {
    color: var(--success-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* ================= Sticky Footer & Floating Telegram ================= */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    padding: 15px;
    display: flex;
    justify-content: center;
    border-top: 1px solid var(--accent-color);
    z-index: 900;
}

.sticky-footer .btn {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.telegram-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #0088cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 950;
    transition: transform 0.2s;
}

.telegram-float:hover {
    transform: scale(1.1);
}

.telegram-float svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.compliance-text {
    font-size: 0.7rem;
    text-align: center;
    color: #666;
    margin-top: 40px;
    padding: 20px;
}
