:root {
    --bg: #0d0d0d;
    --red: #e61e1e;
    --text: #ffffff;
    --border: rgba(255, 255, 255, 0.08);
    --font-main: 'Outfit', sans-serif;
    --font-code: 'Space Grotesk', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; outline: none; }
html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.5;
}

body::after {
    content: "";
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.04; pointer-events: none; z-index: 9999;
}

#cursor-glow {
    position: fixed; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(230, 30, 30, 0.08) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none; z-index: -1;
    transform: translate(-50%, -50%); transition: transform 0.1s ease;
}

.hero-box {
    position: relative; height: 100vh;
    padding: 40px; display: flex; flex-direction: column; justify-content: flex-end;
}

.video-shield {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -2;
}

.video-shield video { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5); }

.video-shield::after {
    content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: 50%;
    background: linear-gradient(to top, var(--bg), transparent);
}

.top-nav {
    position: absolute; top: 40px; left: 40px; right: 40px;
    display: flex; justify-content: space-between; align-items: center;
}

.logo { font-weight: 800; font-size: 1.5rem; letter-spacing: -1px; }
.logo span { color: var(--red); }

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 128, 0.05); /* Çok hafif yeşil arka plan */
    padding: 6px 15px;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 128, 0.1);
    transition: 0.3s ease;
}

.status-indicator:hover {
    background: rgba(0, 255, 128, 0.1);
    border-color: rgba(0, 255, 128, 0.3);
    box-shadow: 0 0 15px rgba(0, 255, 128, 0.1);
}

.status-indicator a {
    color: #00ff80; /* Canlı Yeşil */
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font-code);
    letter-spacing: 0.5px;
}

.status-indicator .dot {
    width: 6px;
    height: 6px;
    background: #00ff80;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #00ff80;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

.hero-inner { max-width: 800px; z-index: 10; margin-bottom: 60px; }
h1 { font-size: clamp(3rem, 10vw, 7rem); font-weight: 800; line-height: 0.9; letter-spacing: -4px; }
.accent { color: var(--red); }

.hero-desc { font-weight: 300; font-size: 1.1rem; opacity: 0.6; margin: 30px 0; max-width: 500px; }

.btn-primary {
    background: var(--red); color: white; text-decoration: none;
    padding: 16px 32px; border-radius: 2px; font-weight: 600; transition: 0.3s;
}

.btn-link { color: white; text-decoration: none; margin-left: 30px; font-size: 0.9rem; opacity: 0.7; }
.btn-link:hover { opacity: 1; }

.main-content {
    background-color: var(--bg);
    background-image: 
        radial-gradient(var(--border) 1px, transparent 0);
    background-size: 30px 30px;
    border-top: 1px solid var(--border);
}

.news-ticker {
    background: #111; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; padding: 0 20px;
}

.tag { background: var(--red); font-size: 0.6rem; font-weight: 900; padding: 15px; margin-right: 20px; }

.content-section { padding: 100px 40px; max-width: 1400px; margin: 0 auto; }
.section-head { margin-bottom: 60px; }
.sub { font-family: var(--font-code); color: var(--red); font-size: 0.8rem; letter-spacing: 2px; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 20px; }

.card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 24px; transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.card:hover { border-color: var(--red); background: rgba(255, 30, 30, 0.03); transform: translateY(-5px); }

.card img { width: 100%; height: 200px; object-fit: cover; margin-bottom: 20px; filter: grayscale(0.5); }
.card:hover img { filter: grayscale(0); }

.card h3 { font-size: 1.4rem; font-weight: 600; margin-bottom: 10px; }
.card p { font-size: 0.9rem; font-weight: 300; opacity: 0.5; margin-bottom: 20px; }

.plan-btn-group { display: flex; gap: 4px; margin-bottom: 20px; }
.plan-btn {
    flex: 1; background: transparent; border: 1px solid var(--border);
    color: #666; padding: 10px; cursor: pointer; font-size: 0.75rem; font-weight: 600;
}

.plan-btn.active { border-color: var(--red); color: white; background: var(--red); }

.price-display { display: block; font-size: 2rem; font-family: var(--font-code); margin-bottom: 20px; }

.buy-now {
    display: block; width: 100%; text-align: center; border: 1px solid white;
    color: white; text-decoration: none; padding: 14px; font-weight: 600; transition: 0.3s;
}

.buy-now:hover { background: white; color: black; }

.dock {
    position: fixed; 
    bottom: 30px; 
    left: 50%; 
    transform: translateX(-50%);
    background: rgba(10, 10, 10, 0.6); 
    backdrop-filter: blur(20px);
    border: 1px solid var(--border); 
    border-radius: 100px; 
    padding: 8px;
    display: flex; 
    gap: 8px; 
    z-index: 1000;
}

.dock-item {
    width: 50px; 
    height: 50px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    color: #555; 
    text-decoration: none; 
    border-radius: 50%; 
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.dock-item:hover, .dock-item.active { 
    background: rgba(255, 62, 62, 0.1); /* Nexus kırmızısı hafif arka plan */
    color: white; 
}

.dock-item::after {
    content: attr(data-name); 
    position: absolute; 
    bottom: 75px; /* Başlangıç pozisyonu */
    background: #111; /* Koyu arka plan */
    color: var(--red); /* Kırmızı yazı */
    font-size: 0.7rem; 
    font-weight: 700;
    font-family: var(--font-code);
    padding: 6px 12px; 
    border-radius: 6px; 
    border: 1px solid var(--border);
    opacity: 0; 
    transition: 0.3s; 
    pointer-events: none;
    transform: translateX(0) scale(0.8);
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.dock-item::before {
    content: '';
    position: absolute;
    bottom: 68px;
    width: 8px;
    height: 8px;
    background: #111;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transform: rotate(45deg) scale(0.8);
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
}

.dock-item:hover::after,
.dock-item:hover::before { 
    opacity: 1; 
    bottom: 65px; /* Yukarı süzülme efekti */
    transform: rotate(45deg) scale(1); /* Ok için */
}

.dock-item:hover::after {
    transform: scale(1); /* Yazı için */
}

@media (max-width: 768px) {
    h1 { font-size: 4rem; }
    .hero-box { padding: 20px; }
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.review-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.rev-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.user { font-weight: 700; font-family: var(--font-code); }
.platform { font-size: 0.65rem; background: #222; padding: 2px 8px; border-radius: 2px; color: var(--red); }

.review-card p {
    font-size: 0.95rem;
    font-weight: 300;
    opacity: 0.7;
    line-height: 1.6;
    font-style: italic;
}

.rev-footer {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stars { color: #f1c40f; font-size: 0.8rem; letter-spacing: 2px; }
.date { font-size: 0.7rem; opacity: 0.4; }

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    padding: 25px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 400;
    transition: 0.3s;
}

.faq-question:hover { color: var(--red); }

.faq-question i {
    font-size: 0.8rem;
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-answer p {
    padding-bottom: 25px;
    font-weight: 300;
    opacity: 0.6;
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer { max-height: 200px; }
.faq-item.active i { transform: rotate(45deg); color: var(--red); }
.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Yan yana 3 kutu */
    gap: 20px;
    margin-top: 40px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 40px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.box-number {
    font-family: var(--font-code);
    font-size: 0.8rem;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.feature-box p {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.5;
}

.box-status {
    margin-top: 30px;
    font-family: var(--font-code);
    font-size: 0.65rem;
    letter-spacing: 2px;
    opacity: 0.3;
    font-weight: 700;
}

.feature-box:hover {
    border-color: var(--red);
    background: rgba(230, 30, 30, 0.04);
    transform: translateY(-5px);
}

.feature-box:hover .box-status {
    opacity: 1;
    color: var(--red);
}

@media (max-width: 1024px) {
    .features-container {
        grid-template-columns: 1fr;
    }
    .feature-box {
        min-height: auto;
    }
}
.demo-viewport {
    position: relative;
    width: 100%;
    height: 600px;
    background: #050505;
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
}

.game-scene {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.target-container {
    position: relative;
    width: 200px; /* Görsel boyutuna göre ayarlı */
    height: 350px;
    transition: 0.3s;
}

.character-model {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

.flux-gui {
    position: absolute;
    top: 50px;
    left: 50px;
    width: 240px;
    background: #0f0f0f;
    border: 1px solid #222;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    z-index: 100;
    font-family: var(--font-code);
}

.gui-header {
    background: #151515;
    padding: 10px 15px;
    border-bottom: 1px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--red);
}

.gui-tabs {
    display: flex;
    border-bottom: 1px solid #222;
}

.tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: #555;
    padding: 8px;
    font-size: 0.7rem;
    cursor: pointer;
}

.tab-btn.active {
    color: white;
    background: rgba(255,255,255,0.05);
}

.gui-content {
    padding: 15px;
}

.switch-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.75rem;
    color: #bbb;
}

.switch-label input { display: none; }
.slider {
    width: 30px;
    height: 16px;
    background: #222;
    position: relative;
    border-radius: 10px;
    cursor: pointer;
}
.slider::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background: #555;
    left: 2px;
    top: 2px;
    border-radius: 50%;
    transition: 0.3s;
}
input:checked + .slider { background: var(--red); }
input:checked + .slider::before { transform: translateX(14px); background: white; }

.esp-box-2d {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border: 1px solid red;
    display: none;
}

.esp-corners {
    position: absolute;
    top: -5px; left: -5px; width: calc(100% + 10px); height: calc(100% + 10px);
}

.c { position: absolute; width: 15px; height: 15px; border-color: red; border-style: solid; border-width: 0; }
.top-l { top: 0; left: 0; border-top-width: 2px; border-left-width: 2px; }
.top-r { top: 0; right: 0; border-top-width: 2px; border-right-width: 2px; }
.bot-l { bottom: 0; left: 0; border-bottom-width: 2px; border-left-width: 2px; }
.bot-r { bottom: 0; right: 0; border-bottom-width: 2px; border-right-width: 2px; }

.esp-health {
    position: absolute;
    left: -15px; top: 0; width: 4px; height: 100%;
    background: rgba(0,0,0,0.5);
}
.health-inner { background: #00ff00; width: 100%; height: 85%; position: absolute; bottom: 0; }

.esp-name {
    position: absolute;
    top: -25px; left: 50%; transform: translateX(-50%);
    font-size: 10px; color: red; white-space: nowrap; font-weight: bold;
}
.nav-links { display: flex; gap: 20px; }
.nav-links a { color: #888; text-decoration: none; font-size: 13px; transition: 0.3s; font-family: var(--font-code); }
.nav-links a:hover { color: var(--red); }

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.video-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
}

.video-card:hover { border-color: var(--red); transform: translateY(-5px); }

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info { padding: 15px; }
.video-info h4 { margin: 0; font-size: 14px; color: #fff; font-family: var(--font-code); }
/* Product Status Badge */
.product-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border);
    z-index: 5;
}

.status-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.status-text { font-size: 9px; font-weight: 700; font-family: var(--font-code); letter-spacing: 1px; }

/* Dinamik Renkler */
.status-undetected .status-dot { background: #00ff80; box-shadow: 0 0 8px #00ff80; }
.status-undetected .status-text { color: #00ff80; }

.status-updating .status-dot { background: #ffcc00; box-shadow: 0 0 8px #ffcc00; }
.status-updating .status-text { color: #ffcc00; }

.status-detected .status-dot { background: #ff3e3e; box-shadow: 0 0 8px #ff3e3e; }
.status-detected .status-text { color: #ff3e3e; }

/* Açıklama Yazısı */
.product-note {
    font-size: 11px;
    color: #888;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px;
    border-radius: 4px;
    margin: 10px 0;
    font-style: italic;
    border-left: 2px solid var(--border);
}

.status-detected .product-note { border-left-color: #ff3e3e; color: #ff3e3e; }
/* Main Footer Styling */
.main-footer {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(15px);
    border-top: 1px solid var(--border);
    padding: 60px 40px 100px 40px; /* Dock için alt boşluk fazla bırakıldı */
    margin-top: 50px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-left {
    max-width: 400px;
}

.footer-left p {
    font-size: 0.9rem;
    opacity: 0.5;
    margin-top: 10px;
    font-weight: 300;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-3px);
    background: rgba(230, 30, 30, 0.05);
}

.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    font-family: var(--font-code);
    opacity: 0.3;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-socials {
        justify-content: center;
    }
}
/* Referans Linki Stilleri */
.footer-refs {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ref-title {
    font-family: var(--font-code);
    font-size: 0.7rem;
    color: var(--red);
    letter-spacing: 1.5px;
    font-weight: 700;
}

.ref-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.6;
    transition: 0.3s;
    width: fit-content;
}

.ref-link:hover {
    opacity: 1;
    color: var(--red);
    padding-left: 5px; /* Hafif bir kayma efekti */
}

/* Mobil için hizalama düzeltmesi */
@media (max-width: 768px) {
    .footer-refs {
        align-items: center;
    }
}