:root {
    --bg-dark: #050505;
    --bg-panel: #111111;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --primary-red: #ff1744;
    --primary-red-hover: #d50000;
    --accent-glow: 0 0 10px rgba(255, 23, 68, 0.6);
    --card-border: 1px solid #333;
    --font-stack: 'Inter', sans-serif;
    --font-header: 'Orbitron', 'Inter', sans-serif;
    /* Fallback to Inter if Orbitron fails */
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-dark);
    background-image: url('assets/bg_red_glow.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    font-family: var(--font-stack);
    color: var(--text-white);
    overflow-x: hidden;
    user-select: none;
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE10+/Edge */
}

/* Header */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: rgba(5, 5, 5, 0.95);
    border-bottom: 1px solid rgba(255, 23, 68, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-white);
    cursor: pointer;
}

.logo .icon {
    color: var(--primary-red);
    text-shadow: var(--accent-glow);
    font-size: 24px;
}



/* Hero Section */
.hero-container {
    display: flex;
    align-items: center;
    /* Center Vertically */
    justify-content: center;
    min-height: 85vh;
    /* Almost full screen */
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

/* Left Content */
.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 10;
}

.hero-title {
    font-family: var(--font-header);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.highlight-text {
    color: var(--primary-red);
    text-shadow: var(--accent-glow);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Primary Button (The "Shop Now" Style) */
.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #b71c1c 100%);
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 4px;
    /* Sharper edges for gamer look */
    border: 1px solid #ff5252;
    box-shadow: 0 4px 15px rgba(255, 23, 68, 0.4);
    transition: all 0.2s ease;
    width: fit-content;
    text-transform: uppercase;
    font-family: var(--font-header);
    font-weight: 700;
    letter-spacing: 1px;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 23, 68, 0.6);
    filter: brightness(1.2);
}

.btn-download:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(255, 23, 68, 0.3);
}

.btn-icon {
    font-size: 32px;
    font-weight: bold;
}

.btn-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-title {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
}

.btn-subtitle {
    font-size: 13px;
    opacity: 0.9;
    font-weight: 500;
}

.compatibility-text {
    margin-top: 15px;
    font-size: 13px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Right Visual */
/* Single Hero Image */
.hero-image-single {
    width: 100%;
    max-width: 780px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    display: block;
    transition: transform 0.3s ease;
}

.hero-image-single:hover {
    transform: scale(1.02);
}

/* Features Strip (Now "Why Play With Cheats") */
.features-strip {
    background-color: var(--bg-panel);
    padding: 60px 10%;
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
    max-width: 1400px;
}

.feature-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 30px;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid #333;
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.feature-item:hover {
    border-color: var(--primary-red);
    box-shadow: 0 0 20px rgba(255, 23, 68, 0.2);
    transform: translateY(-5px);
}

/* Number Overlay (01, 02, etc.) */
.feature-number {
    font-family: var(--font-header);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 10px;
    right: 20px;
    transition: color 0.3s ease;
    z-index: 0;
}

.feature-item:hover .feature-number {
    color: rgba(255, 23, 68, 0.2);
}

.feature-content-wrapper {
    z-index: 1;
    width: 100%;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: var(--font-header);
    border-left: 3px solid var(--primary-red);
    padding-left: 10px;
}

.feature-desc {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.6;
}

/* Feature Connecting Line (Optional - can be done with pseudo, keeping simple for now) */

/* Footer / FAQ Updates */
.seo-content h2,
.notice-strip p {
    color: #ddd !important;
}

.question-highlight {
    color: var(--primary-red) !important;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}


/* Products Grid Section */
.products-section {
    padding: 80px 10%;
    text-align: center;
}

.section-title {
    font-family: var(--font-header);
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 50px;
    color: var(--text-white);
}

.section-title span {
    color: var(--primary-red);
    text-shadow: var(--accent-glow);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 0 20px rgba(255, 23, 68, 0.15);
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 200px;
    background-color: #222;
    /* Placeholder bg */
    object-fit: cover;
    border-bottom: 1px solid #222;
}

.product-info {
    padding: 25px;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 10px;
    color: white;
    font-family: var(--font-header);
}

.product-desc {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 20px;
    flex: 1;
}

.btn-product {
    display: inline-block;
    width: auto;
    min-width: 150px;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--primary-red);
    color: var(--primary-red);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-product:hover {
    background: var(--primary-red);
    color: white;
    box-shadow: 0 0 15px rgba(255, 23, 68, 0.4);
}

/* Footer */
footer {
    background-color: #050505;
    padding: 40px;
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-top: 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-content a {
    color: #888;
    text-decoration: none;
}

.footer-content a:hover {
    color: var(--primary-green);
}

/* Responsive */
@media (max-width: 900px) {
    .hero-container {
        flex-direction: column-reverse;
        /* Image on top on mobile usually, or text? Let's keep Text to action first or image first? Usually text first for CTA */
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
        gap: 30px;
    }

    .hero-content {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .btn-content {
        text-align: center;
    }

    .board-mockup {
        max-width: 90%;
    }

    .analysis-bar {
        display: none;
        /* Hide complex overlay on mobile */
    }
}

/* Language Switcher */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 700;
}

.lang-switch a {
    text-decoration: none;
    color: var(--text-gray);
    transition: color 0.2s;
}

.lang-switch a:hover {
    color: var(--text-white);
}

.lang-switch .lang-active {
    color: var(--primary-green);
    pointer-events: none;
    /* Disable click on active */
}

.lang-switch .divider {
    color: #555;
    font-size: 12px;
}