
:root { --primary: #ff0000; --bg: #121212; --surface: #1e1e1e; --text: #e0e0e0; }
body { background: var(--bg); color: var(--text); font-family: -apple-system, sans-serif; margin: 0; padding: 0; line-height: 1.6; overflow: hidden; /* Scroll engelle */ }
a { color: var(--text); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary); }

/* MAIN CONTENT BLURRED */
.container { max-width: 1200px; margin: 0 auto; padding: 15px; filter: blur(8px); pointer-events: none; user-select: none; }

.header { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; border-bottom: 2px solid var(--primary); margin-bottom: 20px; }
.logo { font-size: 28px; font-weight: 900; color: var(--primary); text-transform: uppercase; letter-spacing: -1px; }
.video-container { position: relative; width: 100%; aspect-ratio: 16/9; background: #000; margin-bottom: 20px; border-radius: 4px; overflow: hidden; }
.css-thumb { width: 100%; height: 100%; background: #333; }

/* FULL SCREEN GATE OVERLAY */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000; /* Tam siyah */
    z-index: 99999; /* En üstte */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.gate-content {
    max-width: 600px;
    background: #111;
    padding: 40px;
    border: 2px solid #333;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.2);
}

.gate-icon {
    font-size: 60px;
    color: var(--primary);
    border: 4px solid var(--primary);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-weight: bold;
}

.gate-title {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gate-text {
    font-size: 15px;
    color: #aaa;
    margin-bottom: 30px;
    line-height: 1.5;
}

.enter-btn {
    background: var(--primary);
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    padding: 20px 60px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.2s;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
    animation: pulse 1.5s infinite;
}

.enter-btn:hover {
    transform: scale(1.05);
    background: #cc0000;
}

@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.03); } 100% { transform: scale(1); } }

/* Diğer stil öğeleri (Arka plan için) */
.info-bar { display: flex; gap: 20px; margin-bottom: 20px; color: #aaa; }
.grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media(min-width: 992px) { .grid { grid-template-columns: 3fr 1fr; } }
.footer-links-box { margin-top:40px; border-top:1px solid #333; padding-top:20px; }
.link-cloud a { color:#666; margin-right:8px; font-size:11px; }
