:root {
    --primary: #00f2ff;
    --primary-glow: rgba(0, 242, 255, 0.4);
    --secondary: #7000ff;
    --background: #0a0a0c;
    --card-bg: rgba(255, 255, 255, 0.04);
    --text: #ffffff;
    --text-muted: #888888;
    --accent: #ff007a;
    --trending: #00f2ff;
    --emerging: #ff00ff;
    --high-potential: #ffaa00;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Compliance Text */
.disclosure,
.disclaimer-mini {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 1rem 0;
}

/* Progress Bar */
.progress-bar-container {
    position: absolute;
    bottom: 20px;
    width: 60%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    display: none;
}

.spinning .progress-bar-container {
    display: block;
}

.progress-bar-fill {
    height: 100%;
    background: var(--primary);
    width: 0%;
    transition: width 0.1s linear;
}

/* Premium Button */
.premium-btn {
    position: relative;
    background: linear-gradient(90deg, #ff007a, #7000ff);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
    width: 100%;
    margin-bottom: 0.5rem;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    to {
        left: 200%;
    }
}

/* Business Plan Modal */
.modal-content.wide {
    max-width: 800px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
}

.plan-section {
    margin-bottom: 2rem;
    border-left: 3px solid var(--primary);
    padding-left: 1rem;
}

.plan-section h3 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.paywall-overlay {
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 16px;
    margin-top: 1rem;
    border: 1px dashed var(--accent);
}

.timeline {
    list-style: none;
}

.timeline li {
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

/* Existing Spinner & Card Styles (Inherited & Adjusted) */
.glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    bottom: -50px;
    left: -50px;
}

header {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary);
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
    text-align: center;
}

#hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.spinner-display {
    width: 280px;
    height: 280px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 30px var(--primary-glow);
}

.teaser-text {
    font-size: 1.5rem;
    font-weight: 800;
    z-index: 2;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.main-btn {
    background: var(--primary);
    color: #000;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.main-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--primary-glow);
}

.hustle-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.rarity-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.rarity-badge.TRENDING {
    background: var(--trending);
    color: #000;
}

.rarity-badge.EMERGING {
    background: var(--emerging);
    color: #fff;
}

.rarity-badge.HIGH {
    background: var(--high-potential);
    color: #000;
}

.card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 12px;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
}

.cta-box {
    border: 1px solid var(--secondary);
    padding: 1.5rem;
    border-radius: 16px;
    margin-top: 1.5rem;
    background: rgba(112, 0, 255, 0.05);
}

.cta-link {
    display: inline-block;
    background: var(--secondary);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    margin-top: 1rem;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: #111;
    border: 1px solid var(--primary);
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
}

.hidden {
    display: none !important;
}

footer {
    padding: 4rem 2rem;
    text-align: center;
    opacity: 0.8;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 0.5rem;
}

@media (max-width: 600px) {
    #hero h1 {
        font-size: 2.5rem;
    }

    .card-stats {
        grid-template-columns: 1fr;
    }

    .card-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .spinner-display {
        width: 220px;
        height: 220px;
    }
}