/* RESET & BASICS - SKEET AESTHETIC */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: default;
}

body {
    font-family: Verdana, sans-serif;
    background: #050505;
    color: #ccc;
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 11px;
}

/* CUSTOM SCROLLBAR SKEET */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: #95C021; }

/* LOADING SCREEN */
.loading-screen {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #050505; /* Solid dark background */
    display: flex; justify-content: center; align-items: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden { 
    opacity: 0; 
    visibility: hidden; 
}

.brand-reveal {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.loading-logo {
    height: 140px; /* Big enough to read easily */
    width: auto;
    transform: scale(1.5); /* Helps with removebg padding */
    
    /* Starts out Gray and slightly faded */
    filter: grayscale(100%);
    opacity: 0.3;
    
    /* Animation controls */
    transition: all 1s ease-in-out;
}

/* This class gets added by JS when the loading finishes */
.loading-logo.color-up {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.6); /* Slight pop effect */
}

/* NAVIGATION */
nav {
    position: fixed; top: 0; left: 0; right: 0; background: #050505;
    border-bottom: 1px solid #1a1a1a; z-index: 1000; opacity: 0;
    animation: navSlideDown 0.6s ease 1.5s forwards;
}
@keyframes navSlideDown { from { opacity: 0; transform: translateY(-100%); } to { opacity: 1; transform: translateY(0); } }
.nav-container { 
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 15px 40px; 
    display: flex; 
    justify-content: space-between; /* Keeps Logo left and Button right */
    align-items: center; 
    position: relative; /* Needed for centering the links */
}

.nav-logo { 
    display: flex; 
    align-items: center;
    height: 24px; /* Fixăm înălțimea la cât era textul original */
    position: relative;
}

.nav-logo img { 
    height: 167px; /* Acum poți face logo-ul uriaș (ex: 80px, 100px) */
    width: auto; 
    position: absolute; /* Scoate imaginea din flow-ul paginii ca să nu mai împingă navbar-ul */
    left: -130px; /* Ajustează stânga-dreapta dacă e nevoie */
    top: 50%;
    transform: translateY(-50%); /* O ține perfect centrată pe verticală față de navbar */
}
.nav-links { 
    display: flex; 
    gap: 40px; 
    list-style: none; 
    position: absolute; 
    left: 50%; 
    transform: translateX(-50%); /* This forces it to the exact middle of the screen */}
.nav-links a { color: #888; text-decoration: none; font-size: 11px; font-weight: bold; text-transform: uppercase; transition: color 0.1s ease; cursor: pointer; }
.nav-links a:hover { color: #95C021; }

.nav-cta {
    padding: 8px 20px; background: #111; color: #888; border: 1px solid #2a2a2a;
    text-decoration: none; font-size: 10px; font-weight: bold; text-transform: uppercase;
    transition: all 0.1s ease; cursor: pointer;
}
.nav-cta:hover { background: #1a1a1a; color: #fff; border-color: #95C021; }

/* HERO SECTION */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 40px 80px; opacity: 0; animation: contentFadeIn 1s ease 1.5s forwards; }
@keyframes contentFadeIn { to { opacity: 1; } }
.intro-wrapper { max-width: 1400px; margin: 0 auto; width: 100%; display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; }
.intro-text { z-index: 1; flex: 1; }

.badge { display: inline-block; padding: 6px 12px; background: #111; border: 1px solid #2a2a2a; color: #95C021; font-size: 10px; font-weight: bold; text-transform: uppercase; margin-bottom: 25px; }
.hero h1 { font-size: 64px; font-weight: bold; margin-bottom: 15px; color: #fff; letter-spacing: -1px; }
.undetected-text { font-size: 16px; color: #95C021; font-weight: bold; margin-bottom: 30px; text-transform: lowercase; }

.buttons { display: flex; gap: 10px; }
.btn-primary, .btn-secondary {
    padding: 12px 30px; font-size: 11px; font-weight: bold; text-transform: uppercase;
    text-decoration: none; transition: all 0.1s ease; cursor: pointer; display: inline-block;
}
.btn-primary { background: #95C021; color: #000; border: 1px solid #95C021; }
.btn-primary:hover { background: #a6d325; }
.btn-secondary { background: #111; color: #888; border: 1px solid #2a2a2a; }
.btn-secondary:hover { background: #1a1a1a; color: #fff; border-color: #95C021; }

/* THE CHEAT MENU (Skeet / Gamesense Core) */
.menu {
    width: 800px;
    background: #111;
    border: 4px double #2a2a2a;
    border-radius: 0;
    max-height: 600px; height: 600px; display: flex; flex-direction: column;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
    position: relative; /* Necesar pentru skeet bar */
}

/* SKEET BAR INJECTAT DIN CSS */
.menu::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, #57baff, #ff5e57, #ffdd59, #3ae374);
    z-index: 10;
}

.menu-header { background: #111; padding: 12px 20px; border-bottom: 1px solid #222; display: flex; flex-direction: column; gap: 5px; position: relative; z-index: 11; margin-top: 3px; }
.menu-header-top { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.menu-title { font-size: 12px; font-weight: bold; color: #fff; text-transform: uppercase; }
.menu-subtitle { font-size: 9px; color: #666; font-style: normal; }

.menu-game-select select {
    background: #1a1a1a; border: 1px solid #2d2d2d; color: #ccc; font-size: 10px; font-weight: bold;
    padding: 4px 20px 4px 8px; cursor: pointer; outline: none; appearance: none;
    text-transform: uppercase; transition: all 0.1s ease;
}
.menu-game-select select:hover { border-color: #95C021; color: #fff; }
.menu-game-select::after { content: "▼"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); color: #666; font-size: 8px; pointer-events: none; }

.menu-tabs { display: flex; background: #111; border-bottom: 1px solid #222; width: 100%; }
.menu-tab {
    padding: 10px 15px; background: transparent; border: none; color: #666; font-family: Verdana, sans-serif;
    font-size: 10px; font-weight: bold; cursor: pointer; text-transform: uppercase;
    border-bottom: 1px solid transparent; transition: all 0.1s ease;
}
.menu-tab:hover { color: #ccc; background: #161616; }
.menu-tab.active { color: #95C021; border-bottom-color: #95C021; background: #1a1a1a; }

.menu-content { flex: 1; overflow-y: auto; padding: 20px; background: #111; position: relative; }
.menu-panel { display: none; animation: fadeIn 0.1s ease; }
.menu-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.menu-category { margin-bottom: 20px; }
.menu-category-title {
    font-size: 10px; font-weight: bold; color: #fff; margin-bottom: 10px; text-transform: uppercase;
    border-left: 2px solid #95C021; padding-left: 6px; padding-bottom: 0; border-bottom: none;
}
.menu-feature-list { list-style: none; }
.menu-feature-item { padding: 4px 0; color: #888; font-size: 10px; transition: color 0.1s ease; cursor: pointer; }
.menu-feature-item:hover { color: #fff; }
.menu-feature-item::before { content: "☐"; color: #444; margin-right: 6px; font-size: 12px; vertical-align: middle; }
.menu-feature-item:hover::before { color: #95C021; }

/* PRODUCTS SECTION */
.products { padding: 100px 40px; background: #050505; }
.products-container { 
    max-width: 1400px; 
    margin: 0 auto; 
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.section-header { 
    margin-bottom: 60px; 
    text-align: center; 
    width: 100%;
}
.section-label { font-size: 11px; color: #95C021; font-weight: bold; text-transform: uppercase; margin-bottom: 5px; }
.section-title { font-size: 32px; font-weight: bold; color: #fff; letter-spacing: -1px; margin-bottom: 10px; }
.section-description { font-size: 12px; color: #888; }

.products-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 20px; 
    width: 100%; 
    max-width: 1200px;
}
.product-item { background: #111; border: 4px double #2a2a2a; transition: all 0.1s ease; display: flex; flex-direction: column; }
.product-item:hover { border-color: #444; box-shadow: 0 5px 20px rgba(0,0,0,0.8); }

.product-image { height: 140px; background: #0a0a0a; border-bottom: 1px solid #222; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 0; }
.product-image img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }
.product-image-placeholder { font-size: 24px; color: #333; font-weight: bold; }

/* THESE ARE THE STYLES I ACCIDENTALLY WIPED OUT - NOW RESTORED */
.product-header { background: #111; padding: 15px; border-bottom: 1px solid #222; }
.product-name-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 5px; }
.product-name { font-size: 14px; font-weight: bold; color: #fff; }
.product-status { padding: 2px 6px; background: #1a1a1a; color: #95C021; border: 1px solid #95C021; font-size: 9px; font-weight: bold; text-transform: uppercase; }
.product-status.coming-soon { color: #888; border-color: #444; }
.product-desc { font-size: 10px; color: #666; }

.product-body { padding: 15px; flex: 1; }
.product-features { list-style: none; padding: 0; margin: 0; }
.product-features li { padding: 4px 0; color: #888; font-size: 10px; border-bottom: 1px solid #1a1a1a; display: flex; align-items: center; }
.product-features li::before { content: "✓"; color: #95C021; margin-right: 8px; font-weight: bold; }

.product-features-label { font-size: 9px; color: #fff; font-weight: bold; text-transform: uppercase; margin-bottom: 5px; border-bottom: 1px solid #222; padding-bottom: 4px; }
.product-features-free .product-features-label { color: #888; }
.product-features-paid .product-features-label { color: #95C021; }

.product-duration { padding: 0 15px 15px; background: #111; }
.product-duration-label { font-size: 9px; color: #666; text-transform: uppercase; margin-bottom: 5px; }
.product-duration-options { display: flex; gap: 5px; }
.product-duration-btn { flex: 1; padding: 6px; background: #0a0a0a; border: 1px solid #222; color: #666; font-size: 9px; font-weight: bold; text-transform: uppercase; cursor: pointer; transition: all 0.1s ease; }
.product-duration-btn:hover { background: #1a1a1a; color: #ccc; }
.product-duration-btn.active { background: #1a1a1a; border-color: #95C021; color: #95C021; }

.product-footer { padding: 15px; background: #0a0a0a; border-top: 1px solid #222; display: flex; justify-content: space-between; align-items: center; }
.product-price-label { font-size: 9px; color: #666; text-transform: uppercase; display: block; }
.product-price-value { font-size: 16px; font-weight: bold; color: #95C021; }
.product-buy-btn { padding: 8px 15px; background: #111; color: #ccc; border: 1px solid #2a2a2a; text-decoration: none; font-size: 10px; font-weight: bold; text-transform: uppercase; transition: all 0.1s ease; cursor: pointer; }
.product-buy-btn:hover { background: #1a1a1a; border-color: #95C021; color: #fff; }
.product-buy-btn:disabled { background: #050505; color: #444; border-color: #111; cursor: not-allowed; }

.product-notice { margin-top: 10px; padding: 6px; background: #050505; border: 1px solid #95C021; color: #95C021; font-size: 9px; font-weight: bold; text-transform: uppercase; text-align: center; opacity: 0; pointer-events: none; }
.product-notice.show { opacity: 1; }

.products-discord-message { 
    margin-top: 40px; 
    text-align: center; 
    padding: 20px; 
    background: #111; 
    border: 4px double #2a2a2a; 
    width: 100%; 
    max-width: 1200px;
}
.products-discord-message p { font-size: 11px; color: #888; }
.products-discord-message a { color: #95C021; text-decoration: none; font-weight: bold; }
.products-discord-message a:hover { text-decoration: underline; }

/* SPECS SECTION */
.specs { padding: 80px 40px; background: #050505; }
.specs-container { 
    max-width: 1400px; 
    margin: 0 auto; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
}
.specs-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
    width: 100%; 
    max-width: 1200px; 
    margin-top: 20px;
}
.spec-item { background: #111; border: 1px solid #222; padding: 30px; text-align: center; transition: all 0.1s ease;}
.spec-item:hover { border-color: #95C021; }
.spec-value { font-size: 32px; font-weight: bold; color: #95C021; margin-bottom: 5px; }
.spec-label { font-size: 10px; color: #666; text-transform: uppercase; font-weight: bold; }

/* CTA SECTION */
.cta-section { padding: 80px 40px; background: #0a0a0a; border-top: 4px double #2a2a2a; border-bottom: 4px double #2a2a2a; text-align: center; }
.cta-section h2 { font-size: 32px; font-weight: bold; color: #fff; margin-bottom: 15px; }
.cta-section p { font-size: 12px; color: #888; margin-bottom: 30px; }
.cta-section .btn-primary { background: #111; color: #ccc; border: 1px solid #95C021; }
.cta-section .btn-primary:hover { background: #95C021; color: #000; }

/* FOOTER */
footer { padding: 40px; background: #050505; border-top: 1px solid #111; }
.footer-simple { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
    gap: 0; /* Anulam gap-ul pentru a restrange spatiul */
}

.footer-brand { 
    height: 40px; /* Tinem distanta spre tagline mica */
    display: flex; 
    justify-content: center; 
    align-items: center;
    overflow: visible; /* Lasam imaginea sa se mareasca fara sa se taie textul ei */
    margin-bottom: 10px; /* Spatiul corect catre "made on earth" */
}

.footer-brand { 
    height: 40px; 
    width: 140px; /* Force a strict width to cut off the invisible sides */
    display: flex; 
    justify-content: center; 
    align-items: center;
    /* Changed from visible to hidden to cut off the invisible hover area */
    overflow: hidden; 
    margin-bottom: 10px; 
    border-radius: 4px; /* Optional, softens the invisible edges */
}

.footer-brand img { 
    height: 120px; 
    width: auto; 
    opacity: 0.6; 
    filter: grayscale(100%);
    transition: all 0.3s ease;
    transform: scale(1.5); 
    pointer-events: none; /* Stops the image itself from catching weird hover areas */
}

/* Move the hover effect to the PARENT container instead of the image */
.footer-brand:hover img { 
    opacity: 1; 
    filter: grayscale(0%);
    transform: scale(1.55);
}

.footer-brand img:hover { opacity: 1; }
.footer-tagline { font-size: 10px; color: #444; z-index: 2; position: relative; }

/* RESPONSIVE */
@media (max-width: 1200px) {
    .intro-wrapper { flex-direction: column; align-items: center; }
    .menu { width: 100%; max-width: 600px; margin-top: 40px; }
}
@media (max-width: 1024px) {
    .products-grid, .specs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .terminal-window { width: 95%; max-width: 450px; }
    .hero h1 { font-size: 36px; }
    .section-title { font-size: 24px; }
    .buttons { flex-direction: column; width: 100%; max-width: 300px; }
    .btn-primary, .btn-secondary { text-align: center; }
    .products-grid, .specs-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}