:root {
    --accent: #c8ff00;
    --accent-dim: rgba(200, 255, 0, 0.15);
    --bg: #0a0a0a;
    --bg-card: #141414;
    --bg-elevated: #1a1a1a;
    --text: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.5);
    --border: rgba(255, 255, 255, 0.08);
    --radius: 12px;
    --radius-sm: 8px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.hidden { display: none !important; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.02em;
}
.btn-primary {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 20px rgba(200, 255, 0, 0.2);
}
.btn-primary:hover {
    transform: scale(1.03);
    box-shadow: 0 0 40px rgba(200, 255, 0, 0.4);
}
.btn-accent {
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    color: #fff;
}
.btn-ghost {
    background: transparent;
    color: var(--text-dim);
    border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* Age Gate */
.age-gate {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 2rem;
}
.age-gate-box { text-align: center; }
.age-gate-box h2 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}
.age-gate-box p {
    color: var(--text-dim);
    margin-bottom: 2rem;
}
.age-gate-buttons { display: flex; gap: 1rem; justify-content: center; }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.header-brand {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--accent);
}
.header-brand span { font-weight: 400; color: var(--text-dim); font-size: 0.7em; }
.header-nav { display: flex; align-items: center; gap: 1rem; }
.nav-link {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--accent); }

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.95) 100%);
}
.hero-content {
    position: relative;
    text-align: center;
    padding: 2rem;
}
.hero-title {
    font-size: clamp(3.5rem, 12vw, 7rem);
    font-weight: 900;
    line-height: 0.9;
    color: var(--accent);
    text-shadow: 0 0 60px rgba(200, 255, 0, 0.3);
    margin-bottom: 0.5rem;
}
.hero-title span {
    display: block;
    font-size: 0.3em;
    color: var(--text);
    opacity: 0.7;
    font-weight: 400;
    letter-spacing: 0.3em;
    margin-top: 0.5em;
}
.hero-tagline {
    font-size: clamp(1rem, 3vw, 1.4rem);
    color: var(--text-dim);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}
.hero-sub {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* Feed */
.feed, .tiers, .platforms {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text);
}
.feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Post Cards */
.post-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.2s, border-color 0.2s;
}
.post-card:hover {
    transform: translateY(-2px);
    border-color: rgba(200, 255, 0, 0.2);
}
.post-media {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}
.post-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.post-locked .post-media img {
    filter: blur(20px) brightness(0.6);
}
.lock-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text);
    font-weight: 600;
}
.post-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
}
.post-date { font-size: 0.8rem; color: var(--text-dim); }
.post-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.badge-vip { background: var(--accent-dim); color: var(--accent); }
.badge-premium { background: rgba(255, 107, 107, 0.15); color: #ff6b6b; }
.badge-free { background: rgba(255, 255, 255, 0.1); color: var(--text-dim); }

/* Tiers */
.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}
.tier-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    position: relative;
}
.tier-featured {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(200, 255, 0, 0.1);
}
.tier-badge {
    position: absolute;
    top: -0.7rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    text-transform: uppercase;
}
.tier-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.tier-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 1.5rem;
}
.tier-price span { font-size: 0.4em; color: var(--text-dim); font-weight: 400; }
.tier-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
}
.tier-card li {
    padding: 0.4rem 0;
    color: var(--text-dim);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
}
.tier-card li:last-child { border-bottom: none; }

/* Platforms */
.platforms-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.platform-btn {
    color: var(--text-dim);
    text-decoration: none;
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 30px;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.platform-btn:hover { color: var(--accent); border-color: var(--accent); }

/* Footer */
.footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-dim);
    font-size: 0.8rem;
    border-top: 1px solid var(--border);
}

/* Responsive */
@media (max-width: 640px) {
    .header { padding: 0.75rem 1rem; }
    .header-nav .nav-link { display: none; }
    .feed-grid { grid-template-columns: 1fr; }
    .tiers-grid { grid-template-columns: 1fr; }
    .hero-content { padding: 1rem; }
}
