/*
Theme Name: 18View Landing
Theme URI: https://18view.com
Description: Minimal landing page theme for 18View - redirects to Chaturbate affiliate.
Author: 18View
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: eighteenview
*/

/* ===== 18View Landing Page Theme ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background: #0a0a14;
    background-image: radial-gradient(circle at 50% 30%, #1a0a2e 0%, #0a0a14 60%);
    color: #f0f0f5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Age Gate Card ===== */

.age-gate {
    width: 100%;
    max-width: 520px;
    padding: 20px;
    z-index: 10;
}

.gate-card {
    background: linear-gradient(145deg, #15151f, #1a1a28);
    border: 1px solid #2a2a3e;
    border-radius: 20px;
    padding: 48px 40px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 80px rgba(232, 67, 147, 0.08);
    position: relative;
    overflow: hidden;
}

.gate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #e84393, transparent);
}

/* ===== Logo ===== */

.gate-logo {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1;
}

.logo-18 {
    color: #e84393;
}

.logo-view {
    color: #ffffff;
}

/* ===== Badge ===== */

.gate-badge {
    display: inline-block;
    background: #e84393;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

/* ===== Warning ===== */

.gate-warning {
    font-size: 15px;
    line-height: 1.6;
    color: #a0a0b5;
    margin-bottom: 32px;
}

.gate-warning strong {
    color: #e84393;
}

/* ===== Buttons ===== */

.gate-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 32px;
}

.gate-enter,
.gate-exit {
    flex: 1;
    max-width: 180px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.gate-enter {
    background: #e84393;
    color: #fff;
    border: 2px solid #e84393;
    box-shadow: 0 4px 20px rgba(232, 67, 147, 0.35);
}

.gate-enter:hover {
    background: #fd79a8;
    border-color: #fd79a8;
    box-shadow: 0 6px 28px rgba(232, 67, 147, 0.5);
    transform: translateY(-2px);
}

.gate-exit {
    background: transparent;
    color: #a0a0b5;
    border: 2px solid #3a3a4e;
}

.gate-exit:hover {
    background: #1a1a28;
    color: #fff;
    border-color: #4a4a5e;
}

/* ===== Footer ===== */

.gate-footer {
    border-top: 1px solid #2a2a3e;
    padding-top: 24px;
}

.gate-links {
    font-size: 13px;
    margin-bottom: 16px;
}

.gate-links a {
    color: #707085;
    text-decoration: none;
    transition: color 0.2s;
}

.gate-links a:hover {
    color: #e84393;
}

.gate-links .dot {
    color: #3a3a4e;
    margin: 0 8px;
}

.gate-disclaimer {
    font-size: 11px;
    line-height: 1.5;
    color: #505060;
    max-width: 400px;
    margin: 0 auto;
}

/* ===== SEO Content (hidden from users) ===== */

.seo-content {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

/* ===== Responsive ===== */

@media (max-width: 480px) {
    .gate-card {
        padding: 36px 24px 32px;
    }

    .gate-logo {
        font-size: 36px;
    }

    .gate-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .gate-enter,
    .gate-exit {
        max-width: 100%;
    }
}
