:root {
    --bg: #000000;
    --accent: #00f2ff;
    --card: #0a0a0a;
    --syne: 'Syne', sans-serif;
    --yt-red: #ff0000;
}

* { margin:0; padding:0; box-sizing:border-box; -webkit-tap-highlight-color: transparent; }

body {
    background: var(--bg);
    color: #fff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Cursor - Hidden on Mobile */
.cursor {
    width: 20px; height: 20px; border: 2px solid var(--accent);
    border-radius: 50%; position: fixed; pointer-events: none; z-index: 9999;
    transition: transform 0.1s;
}

/* Nav Fix */
nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 20px 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(10px);
}
.nav-container {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 5%;
}
.brand-logo { font-family: var(--syne); font-size: 1.5rem; text-decoration: none; color: #fff; }
.brand-logo span { color: var(--accent); }
.nav-cta {
    background: #fff; color: #000; padding: 10px 20px; border-radius: 4px;
    font-weight: 800; text-decoration: none; font-size: 0.75rem; letter-spacing: 1px;
}

/* Hero Section */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    padding: 100px 5% 50px; text-align: center;
}
.hero h1 {
    font-family: var(--syne); font-size: clamp(2.5rem, 8vw, 6rem);
    line-height: 0.95; margin: 20px 0;
}
.outline { -webkit-text-stroke: 1px #fff; color: transparent; }
.badge { font-size: 0.7rem; letter-spacing: 4px; color: var(--accent); }
.hero p { color: #888; max-width: 600px; margin: 0 auto 40px; }

.magnetic-btn {
    background: var(--accent); color: #000; padding: 18px 35px;
    font-family: var(--syne); font-weight: 800; text-decoration: none;
    display: inline-block; transition: 0.3s;
}

/* Alpha Stripe Concept */
.alpha-stripe {
    background: var(--accent); color: #000; padding: 15px 0;
    transform: rotate(-2deg) scale(1.1); margin: 50px 0; overflow: hidden;
}
.stripe-content {
    display: flex; white-space: nowrap; animation: move-text 20s linear infinite;
    font-family: var(--syne); font-weight: 800; font-size: 1.2rem;
}
@keyframes move-text { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Marketplace Grid */
.container { padding: 80px 5%; }
.section-header { margin-bottom: 60px; }
.section-header h2 { font-family: var(--syne); font-size: 3rem; }

.creator-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* Card Updates */
.creator-link { text-decoration: none; color: inherit; }

.creator-card {
    background: var(--card); border: 1px solid #1a1a1a; padding: 30px;
    border-radius: 12px; transition: 0.4s; position: relative;
    height: 100%;
}
.creator-card:hover { border-color: var(--accent); transform: translateY(-10px); }

.yt-tag { 
    color: var(--yt-red); 
    font-weight: 800; 
    font-size: 0.7rem; 
    letter-spacing: 2px;
    margin-bottom: 5px; 
    display: block; 
}

.v-count { font-family: var(--syne); font-size: 2.2rem; color: var(--accent); margin: 10px 0; }

/* Tag Styling */
.tag-container { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 15px; }
.tag { 
    background: #1a1a1a; 
    color: #888; 
    padding: 4px 10px; 
    border-radius: 4px; 
    font-size: 0.65rem; 
    font-weight: 600; 
    border: 1px solid #222;
}

/* Join Area */
.join-area { padding: 100px 5%; display: flex; justify-content: center; }
.glass-card {
    background: #0a0a0a; border: 1px solid #222; padding: 40px;
    width: 100%; max-width: 600px; border-radius: 20px;
}
input, textarea {
    width: 100%; background: #000; border: 1px solid #333;
    padding: 15px; color: #fff; margin-bottom: 15px; font-family: inherit;
}
.submit-btn {
    width: 100%; background: #fff; padding: 15px; font-weight: 800; border: none; cursor: pointer;
}

/* Footer Improvements */
footer {
    background: #050505;
    padding: 60px 5% 40px;
    border-top: 1px solid #111;
}

.footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-disclaimer {
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-disclaimer strong { color: var(--accent); font-size: 0.8rem; letter-spacing: 1px; }
.footer-disclaimer p { color: #555; font-size: 0.85rem; margin-top: 10px; line-height: 1.6; }
.footer-disclaimer span { color: var(--accent); }

.footer-contact {
    margin: 20px 0;
    color: #888;
    font-size: 0.9rem;
    font-weight: 600;
}

.wa-footer {
    display: inline-block;
    background: #25d366;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.8rem;
    margin-top: 10px;
    transition: 0.3s;
}

.wa-footer:hover { transform: scale(1.05); }

/* Mobile Fixes */
@media (max-width: 768px) {
    .cursor { display: none; }
    .hero h1 { font-size: 3.5rem; }
    .nav-container { padding: 0 20px; }
    .section-header h2 { font-size: 2.2rem; }
}

/* Reveal Animation */
.reveal { opacity: 0; transform: translateY(30px); transition: 1s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }
