/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 2;
    color: #333;
    background: #f8f9fa;
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* ===== VARIABLES ===== */
:root {
    /* Linebet Green 2025 */
    --linebet-green-dark: #006400;
    --linebet-green-light: #228B22;
    --linebet-orange: #ff6b35;
    --linebet-white: #ffffff;
    --linebet-gray: #f8f9fa;
    --linebet-green-light-bg: #d4edda;

    /* Additional Variables */
    --primary-blue: #123361;
    --accent-gold: #ffcc00;
    --bg-light: #f8f9fa;
    --text-main: #333333;
    --section-gap: 80px;
}

/* ===== HEADER ===== */
.site-header {
    background: linear-gradient(135deg, var(--linebet-green-dark), var(--linebet-green-light));
    color: var(--linebet-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0 1.5rem;
}

/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 100%;
}

.logo a {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo-img {
    height: 30px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo a:hover {
    transform: scale(1.05);
}

/* ===== MOBILE LOGO ===== */
@media (max-width: 768px) {
    .logo-img {
        height: 30px;
    }
}

@media (max-width: 400px) {
    .logo-img {
        height: 28px;
    }
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--linebet-white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== NAVIGATION ===== */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-menu a {
    color: var(--linebet-white);
    font-weight: 500;
    padding: 0.75rem 1.2rem;
    border-radius: 30px;
    transition: all 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ===== LANGUAGE SWITCHER ===== */
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-item {
    position: relative;
    display: inline-block;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: white;
    color: #0d47a1;
}

.lang-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    border-radius: 8px;
    margin-top: 10px;
    overflow: hidden;
    border: 1px solid #eee;
}

.lang-item:hover .lang-content {
    display: block;
}

.lang-content a {
    color: #333 !important;
    padding: 10px 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s;
}

.lang-content a:hover {
    background-color: #f0f7ff;
    color: #0d47a1 !important;
}

/* ===== MOBILE MENU ===== */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        background: var(--linebet-green-dark);
        padding: 6rem 1.5rem 2rem;
        transition: left 0.4s ease;
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0.8rem;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        border-radius: 12px;
    }
}

/* ===== OVERLAY ===== */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s;
    margin: 0.5rem;
}

.btn.primary {
    background: var(--linebet-orange);
    color: var(--linebet-white);
}

.btn.secondary {
    background: var(--linebet-green-light);
    color: var(--linebet-white);
}

.btn.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ===== FOOTER ===== */
.site-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid #333;
}

.footer-container {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--linebet-orange);
    font-weight: 500;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background: var(--linebet-orange);
    transition: width 0.3s;
    transform: translateX(-50%);
}

.footer-links a:hover::after {
    width: 100%;
}

.disclaimer {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ===== SECTIONS ===== */
section {
    background: var(--linebet-white);
    padding: 60px 40px;
    margin-bottom: var(--section-gap);
    margin-top: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

section h1 {
    font-size: 2rem;
    color: var(--linebet-green-dark);
    margin-bottom: 1rem;
}

section h2 {
    color: var(--primary-blue);
    font-size: 2.2rem;
    margin-bottom: 30px;
    border-bottom: 3px solid var(--accent-gold);
    display: inline-block;
    padding-bottom: 10px;
}

section h3 {
    color: var(--primary-blue);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.lead {
    font-size: 1.1rem;
    margin: 1rem 0;
    color: #444;
}

/* ===== GRIDS ===== */
.download-grid,
.bonus-table,
.review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.download-card,
.bonus-item {
    background: var(--linebet-gray);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

/* ===== CTA BUTTONS ===== */
.intro-cta,
.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 1.5rem 0;
}

/* ===== FEATURE LIST ===== */
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.feature-list li {
    background: var(--linebet-green-light-bg);
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: linear-gradient(135deg, var(--linebet-green-light-bg), #d1e7dd);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 16px;
}

/* ===== STEPS LIST ===== */
.steps-list {
    counter-reset: my-counter;
    list-style: none;
    padding: 0;
}

.steps-list li {
    counter-increment: my-counter;
    position: relative;
    padding: 20px 20px 20px 60px;
    background: #f1f4f8;
    margin-bottom: 15px;
    border-radius: 10px;
}

.steps-list li::before {
    content: counter(my-counter);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-blue);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
}

/* ===== TABLES ===== */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
}

.info-table th {
    background-color: var(--primary-blue);
    color: white;
    padding: 15px;
    text-align: left;
}

.info-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.info-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* ===== NOTES ===== */
.note {
    background-color: #fffbdd;
    border-left: 5px solid var(--accent-gold);
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    font-style: italic;
}

/* ===== CHECK FEATURE LIST ===== */
.feature-list-check {
    list-style: none;
    padding: 0;
}

.feature-list-check li {
    padding: 10px 10px;
    border-bottom: 1px dashed #ddd;
}

.feature-list-check li::before {
    content: "✔️";
    margin-right: 10px;
    color: #28a745;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    section {
        padding: 30px 20px;
        margin-bottom: 40px;
    }

    section h1 {
        font-size: 1.6rem;
    }

    section h2 {
        font-size: 1.6rem;
    }

    .download-grid,
    .bonus-table,
    .review-grid,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}