/*
Theme Name: The Streamocaster
Theme URI: https://streamocaster.com
Author: artistpro Media
Author URI: https://artistpro.media
Description: Internet Radio for Musicians - Early 60's Surf Rock & British Invasion Kitsch
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: streamocaster
Tags: streaming, radio, audio, broadcasting, vintage, retro, surf, 60s

The Streamocaster - Your Music. Your Station. Your Audience.
*/

/* ============================================
   CSS Variables - Early 60's Strat/Surf Palette
   ============================================ */
:root {
    /* Fender-inspired Colors */
    --surf-green: #49796b;
    --seafoam: #6fb98f;
    --fiesta-red: #d62828;
    --olympic-white: #f5f0e6;
    --sunburst-gold: #d4a84b;
    --sunburst-cherry: #8b2500;
    --daphne-blue: #5dade2;
    --shell-pink: #e8b4b8;

    /* Kitsch 60's Colors */
    --turquoise: #40e0d0;
    --coral: #ff6f61;
    --cream: #fffdd0;
    --mustard: #ffdb58;
    --vinyl-black: #1a1a1a;
    --chrome: #c0c0c0;

    /* On-Air / Active States */
    --on-air-red: #ff3333;
    --tube-glow: #ff8c42;
    --neon-pink: #ff69b4;

    /* Station Colors - Genre Vibes */
    --station-jazz: #d4a84b;
    --station-blues: #5dade2;
    --station-classical: #8b2500;
    --station-folk: #49796b;
    --station-otr: #6c757d;
    --station-mix: #9932CC;

    --sc-radius-sm: 6px;
    --sc-radius-md: 12px;
    --sc-radius-lg: 20px;
    --sc-radius-xl: 30px;
    --sc-radius-full: 9999px;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', 'Oswald', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--vinyl-black);
    background: linear-gradient(180deg, var(--daphne-blue) 0%, var(--turquoise) 30%, var(--cream) 100%);
    min-height: 100vh;
}

/* Subtle surf texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(255, 219, 88, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 111, 97, 0.2) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

a {
    color: var(--fiesta-red);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--coral);
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem;
    font-family: 'Bebas Neue', 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--vinyl-black);
}

h1 {
    font-size: 3rem;
    color: var(--fiesta-red);
    text-shadow: 3px 3px 0 var(--mustard);
}

h2 {
    color: var(--surf-green);
}

/* Call Letters - Main Branding - Surf Script Style */
.call-letters {
    font-family: 'Pacifico', cursive;
    font-size: 4rem;
    font-weight: 400;
    color: var(--fiesta-red);
    text-shadow:
        4px 4px 0 var(--mustard),
        -2px -2px 0 var(--olympic-white);
    letter-spacing: 0.02em;
}

.frequency {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: var(--surf-green);
    letter-spacing: 0.4em;
    text-transform: uppercase;
}

.tagline {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--vinyl-black);
    font-size: 1.2rem;
}

p {
    margin: 0 0 1rem;
}

/* ============================================
   Layout - Surf Style
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.sc-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Site Header - Beach Vibes */
.site-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
}

/* Radio Console - Vintage Jukebox Style */
.radio-console {
    background: linear-gradient(145deg, var(--olympic-white) 0%, var(--cream) 100%);
    border-radius: var(--sc-radius-xl);
    padding: 2rem;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.2),
        inset 0 2px 0 rgba(255,255,255,0.8),
        inset 0 -2px 0 rgba(0,0,0,0.1);
    border: 4px solid var(--chrome);
    margin-bottom: 2rem;
}

/* Dial Display - Record Player Style */
.dial-display {
    background: linear-gradient(180deg, var(--vinyl-black) 0%, #2a2a2a 100%);
    border-radius: var(--sc-radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 3px solid var(--chrome);
    box-shadow: inset 0 5px 20px rgba(0,0,0,0.5);
}

.dial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #444;
}

.on-air {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.on-air-light {
    width: 14px;
    height: 14px;
    background: var(--on-air-red);
    border-radius: 50%;
    animation: pulse-glow 1.5s ease-in-out infinite;
    box-shadow: 0 0 15px var(--on-air-red);
}

@keyframes pulse-glow {
    0%, 100% { opacity: 1; box-shadow: 0 0 15px var(--on-air-red); }
    50% { opacity: 0.5; box-shadow: 0 0 8px var(--on-air-red); }
}

.on-air-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    color: var(--on-air-red);
    letter-spacing: 0.3em;
}

.current-time {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--turquoise);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

.now-playing-display {
    text-align: center;
    padding: 1rem 0;
}

.now-playing-label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 0.5rem;
}

.now-playing-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--turquoise);
    text-shadow: 0 0 20px rgba(64, 224, 208, 0.5);
    min-height: 2rem;
}

.now-playing-station {
    font-size: 1rem;
    color: var(--coral);
    margin-top: 0.5rem;
}

/* Station Cards - 45 Record Style */
.stations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.station-card {
    background: var(--olympic-white);
    border-radius: var(--sc-radius-lg);
    padding: 1.5rem;
    border: 3px solid var(--chrome);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.station-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--station-color, var(--coral));
    opacity: 0;
    transition: opacity 0.3s;
}

.station-card:hover::before,
.station-card.active::before {
    opacity: 1;
}

.station-card:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.station-card.active {
    border-color: var(--station-color, var(--coral));
    background: linear-gradient(145deg, var(--olympic-white), var(--cream));
}

.station-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Record Dial - 45 RPM Style */
.station-dial {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, var(--station-color, var(--coral)) 15%, var(--vinyl-black) 16%, var(--vinyl-black) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--chrome);
    box-shadow:
        inset 0 2px 8px rgba(0,0,0,0.5),
        0 3px 8px rgba(0,0,0,0.2);
    position: relative;
}

.station-card.active .station-dial {
    animation: spin-record 3s linear infinite;
}

@keyframes spin-record {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.station-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--vinyl-black);
    margin-bottom: 0.25rem;
    letter-spacing: 0.05em;
}

.station-info .tagline {
    font-size: 0.85rem;
    color: var(--surf-green);
    font-weight: 500;
}

.station-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 2px dashed var(--chrome);
    margin-top: 1rem;
}

.listeners {
    font-size: 0.85rem;
    color: #666;
}

.listeners span {
    color: var(--fiesta-red);
    font-weight: 700;
}

.play-indicator {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--station-color, var(--coral));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--olympic-white);
    transition: transform 0.2s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.station-card:hover .play-indicator {
    transform: scale(1.15);
}

/* Station Colors */
.station-jazz { --station-color: var(--station-jazz); }
.station-blues { --station-color: var(--station-blues); }
.station-classical { --station-color: var(--station-classical); }
.station-folk { --station-color: var(--station-folk); }
.station-otr { --station-color: var(--station-otr); }
.station-mix { --station-color: var(--station-mix); }

/* Volume Control - Chrome Knob Style */
.volume-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--vinyl-black);
    border-radius: var(--sc-radius-md);
    margin-top: 2rem;
    border: 2px solid var(--chrome);
}

.volume-knob {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle at 30% 30%, #f0f0f0, var(--chrome), #888);
    border-radius: 50%;
    border: 2px solid #666;
    box-shadow:
        inset 0 2px 5px rgba(255,255,255,0.5),
        0 3px 10px rgba(0,0,0,0.3);
    cursor: pointer;
}

.volume-slider-container {
    flex: 1;
}

.volume-slider {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    background: linear-gradient(90deg, var(--surf-green) 0%, var(--turquoise) 80%, #444 80%);
    border-radius: 4px;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--chrome);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    border: 2px solid #888;
}

.volume-label {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--turquoise);
    font-size: 1rem;
    min-width: 50px;
    text-align: right;
    letter-spacing: 0.1em;
}

/* Footer - Beach Style */
.site-footer {
    text-align: center;
    padding: 3rem 2rem 2rem;
    background: var(--vinyl-black);
    margin-top: 3rem;
    color: var(--olympic-white);
}

.footer-brand {
    font-family: 'Pacifico', cursive;
    font-size: 2rem;
    color: var(--coral);
    margin-bottom: 0.5rem;
}

.footer-stats {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: var(--turquoise);
}

/* Buttons - Surf Style */
.btn {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    border: none;
    border-radius: var(--sc-radius-full);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--fiesta-red);
    color: var(--olympic-white);
    box-shadow: 0 4px 15px rgba(214, 40, 40, 0.4);
}

.btn-primary:hover {
    background: var(--coral);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(214, 40, 40, 0.5);
}

.btn-secondary {
    background: var(--surf-green);
    color: var(--olympic-white);
    box-shadow: 0 4px 15px rgba(73, 121, 107, 0.4);
}

.btn-secondary:hover {
    background: var(--seafoam);
    transform: translateY(-3px);
}

/* Audio elements hidden */
audio {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .call-letters {
        font-size: 2.5rem;
    }
    .stations-grid {
        grid-template-columns: 1fr;
    }
    .volume-section {
        flex-wrap: wrap;
    }
    .container {
        padding: 1rem;
    }
}

.sc-section {
    padding: 80px 0;
}

.sc-section--dark {
    background: var(--sc-dark-800);
    color: var(--sc-white);
}

.sc-section--gradient {
    background: var(--sc-gradient);
    color: var(--sc-white);
}

.sc-section--gray {
    background: var(--sc-gray-100);
}

/* ============================================
   Header
   ============================================ */
.sc-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.sc-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sc-header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--sc-white);
}

.sc-header__logo-icon {
    width: 40px;
    height: 40px;
    background: var(--sc-gradient);
    border-radius: var(--sc-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-header__nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.sc-header__nav a {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    transition: color 0.2s ease;
}

.sc-header__nav a:hover {
    color: var(--sc-white);
}

.sc-header__cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Mobile menu */
.sc-header__mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--sc-white);
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .sc-header__nav {
        display: none;
    }

    .sc-header__mobile-toggle {
        display: block;
    }

    .sc-header__nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--sc-dark-800);
        padding: 20px;
        gap: 15px;
    }
}

/* ============================================
   Buttons
   ============================================ */
.sc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: var(--sc-radius-full);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.sc-btn--primary {
    background: var(--sc-gradient);
    color: var(--sc-white);
    box-shadow: var(--sc-shadow-purple);
}

.sc-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(124, 58, 237, 0.5);
    color: var(--sc-white);
}

.sc-btn--secondary {
    background: transparent;
    color: var(--sc-white);
    border: 2px solid rgba(255,255,255,0.3);
}

.sc-btn--secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    color: var(--sc-white);
}

.sc-btn--outline {
    background: transparent;
    color: var(--sc-purple-600);
    border: 2px solid var(--sc-purple-600);
}

.sc-btn--outline:hover {
    background: var(--sc-purple-600);
    color: var(--sc-white);
}

.sc-btn--large {
    padding: 16px 40px;
    font-size: 18px;
}

.sc-btn--small {
    padding: 8px 16px;
    font-size: 14px;
}

/* ============================================
   Hero Section
   ============================================ */
.sc-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--sc-dark-900);
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

.sc-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.sc-hero__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.sc-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: var(--sc-radius-full);
    color: var(--sc-purple-300);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.sc-hero__title {
    font-size: 56px;
    font-weight: 800;
    color: var(--sc-white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.sc-hero__title span {
    background: var(--sc-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sc-hero__subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    line-height: 1.6;
}

.sc-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.sc-hero__visual {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .sc-hero__title {
        font-size: 42px;
    }

    .sc-hero__visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .sc-hero__title {
        font-size: 32px;
    }

    .sc-hero__subtitle {
        font-size: 18px;
    }
}

/* ============================================
   Features Section
   ============================================ */
.sc-features {
    padding: 100px 0;
    background: var(--sc-white);
}

.sc-features__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.sc-features__title {
    font-size: 40px;
    margin-bottom: 16px;
}

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

.sc-feature-card {
    padding: 30px;
    background: var(--sc-gray-100);
    border-radius: var(--sc-radius-lg);
    transition: all 0.3s ease;
}

.sc-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sc-shadow-lg);
}

.sc-feature-card__icon {
    width: 60px;
    height: 60px;
    background: var(--sc-gradient);
    border-radius: var(--sc-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.sc-feature-card__title {
    font-size: 20px;
    margin-bottom: 12px;
}

.sc-feature-card__text {
    color: var(--sc-gray-500);
    margin: 0;
}

/* ============================================
   Pricing Section
   ============================================ */
.sc-pricing {
    padding: 100px 0;
    background: var(--sc-dark-800);
}

.sc-pricing__header {
    text-align: center;
    margin-bottom: 60px;
}

.sc-pricing__title {
    font-size: 40px;
    color: var(--sc-white);
    margin-bottom: 16px;
}

.sc-pricing__subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
}

.sc-pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.sc-pricing-card {
    background: var(--sc-dark-700);
    border-radius: var(--sc-radius-lg);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.sc-pricing-card:hover {
    transform: translateY(-5px);
}

.sc-pricing-card--featured {
    background: var(--sc-gradient);
    transform: scale(1.05);
}

.sc-pricing-card--featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.sc-pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sc-gold);
    color: var(--sc-dark-900);
    padding: 4px 16px;
    border-radius: var(--sc-radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.sc-pricing-card__name {
    font-size: 24px;
    color: var(--sc-purple-300);
    margin-bottom: 20px;
}

.sc-pricing-card--featured .sc-pricing-card__name {
    color: var(--sc-white);
}

.sc-pricing-card__price {
    font-size: 48px;
    font-weight: 800;
    color: var(--sc-white);
    margin-bottom: 8px;
}

.sc-pricing-card__price span {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.7;
}

.sc-pricing-card__desc {
    color: rgba(255,255,255,0.6);
    margin-bottom: 30px;
}

.sc-pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.sc-pricing-card__features li {
    padding: 10px 0;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sc-pricing-card__features li::before {
    content: '✓';
    color: var(--sc-green);
    font-weight: bold;
}

.sc-pricing-card__cta {
    width: 100%;
}

/* ============================================
   Use Cases Section
   ============================================ */
.sc-usecases {
    padding: 100px 0;
}

.sc-usecases__header {
    text-align: center;
    margin-bottom: 60px;
}

.sc-usecases__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.sc-usecase-card {
    padding: 30px;
    border: 1px solid var(--sc-gray-200);
    border-radius: var(--sc-radius-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.sc-usecase-card:hover {
    border-color: var(--sc-purple-400);
    box-shadow: var(--sc-shadow-md);
}

.sc-usecase-card__icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.sc-usecase-card__title {
    font-size: 20px;
    margin-bottom: 12px;
}

.sc-usecase-card__text {
    color: var(--sc-gray-500);
    margin: 0;
    font-size: 15px;
}

/* ============================================
   CTA Section
   ============================================ */
.sc-cta {
    padding: 100px 0;
    background: var(--sc-gradient);
    text-align: center;
}

.sc-cta__title {
    font-size: 40px;
    color: var(--sc-white);
    margin-bottom: 16px;
}

.sc-cta__text {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Footer
   ============================================ */
.sc-footer {
    background: var(--sc-dark-900);
    color: rgba(255,255,255,0.6);
    padding: 60px 0 30px;
}

.sc-footer__grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.sc-footer__brand {
    max-width: 300px;
}

.sc-footer__logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--sc-white);
    margin-bottom: 16px;
}

.sc-footer__desc {
    font-size: 14px;
    line-height: 1.7;
}

.sc-footer__title {
    color: var(--sc-white);
    font-size: 16px;
    margin-bottom: 20px;
}

.sc-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sc-footer__links li {
    margin-bottom: 12px;
}

.sc-footer__links a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: color 0.2s ease;
}

.sc-footer__links a:hover {
    color: var(--sc-white);
}

.sc-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

@media (max-width: 768px) {
    .sc-footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sc-footer__bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ============================================
   Dashboard Styles
   ============================================ */
.sc-dashboard {
    min-height: 100vh;
    background: var(--sc-dark-900);
    padding-top: 70px;
}

.sc-dashboard__header {
    background: var(--sc-dark-800);
    padding: 30px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sc-dashboard__title {
    color: var(--sc-white);
    font-size: 28px;
    margin: 0;
}

.sc-dashboard__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    padding: 30px 0;
}

.sc-dashboard-card {
    background: var(--sc-dark-800);
    border-radius: var(--sc-radius-lg);
    padding: 24px;
}

.sc-dashboard-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.sc-dashboard-card__title {
    color: var(--sc-white);
    font-size: 18px;
    margin: 0;
}

.sc-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--sc-white);
}

.sc-stat-label {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* License activation form */
.sc-license-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
    background: var(--sc-dark-800);
    border-radius: var(--sc-radius-lg);
}

.sc-license-form__title {
    color: var(--sc-white);
    text-align: center;
    margin-bottom: 30px;
}

.sc-form-group {
    margin-bottom: 20px;
}

.sc-form-group label {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin-bottom: 8px;
}

.sc-form-group input {
    width: 100%;
    padding: 14px 16px;
    background: var(--sc-dark-700);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--sc-radius-md);
    color: var(--sc-white);
    font-size: 16px;
    font-family: var(--sc-font-mono);
    letter-spacing: 2px;
    transition: border-color 0.2s ease;
}

.sc-form-group input:focus {
    outline: none;
    border-color: var(--sc-purple-500);
}

.sc-form-group input::placeholder {
    color: rgba(255,255,255,0.3);
    letter-spacing: normal;
}

/* ============================================
   Documentation Styles
   ============================================ */
.sc-docs {
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: calc(100vh - 70px);
    padding-top: 70px;
}

.sc-docs__sidebar {
    background: var(--sc-dark-800);
    padding: 30px 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
    position: sticky;
    top: 70px;
    height: calc(100vh - 70px);
    overflow-y: auto;
}

.sc-docs__nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sc-docs__nav-item {
    margin-bottom: 8px;
}

.sc-docs__nav-link {
    display: block;
    padding: 10px 15px;
    color: rgba(255,255,255,0.7);
    border-radius: var(--sc-radius-sm);
    transition: all 0.2s ease;
}

.sc-docs__nav-link:hover,
.sc-docs__nav-link.active {
    background: rgba(124, 58, 237, 0.2);
    color: var(--sc-white);
}

.sc-docs__content {
    padding: 40px;
    max-width: 800px;
}

.sc-docs__content h1 {
    font-size: 36px;
    margin-bottom: 24px;
}

.sc-docs__content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--sc-gray-200);
}

.sc-docs__content pre {
    background: var(--sc-dark-800);
    padding: 20px;
    border-radius: var(--sc-radius-md);
    overflow-x: auto;
    font-family: var(--sc-font-mono);
    font-size: 14px;
    line-height: 1.5;
    color: var(--sc-gray-200);
}

.sc-docs__content code {
    font-family: var(--sc-font-mono);
    background: rgba(124, 58, 237, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .sc-docs {
        grid-template-columns: 1fr;
    }

    .sc-docs__sidebar {
        position: relative;
        top: 0;
        height: auto;
    }
}

/* ============================================
   Utilities
   ============================================ */
.sc-text-center { text-align: center; }
.sc-text-left { text-align: left; }
.sc-text-right { text-align: right; }

.sc-mb-0 { margin-bottom: 0; }
.sc-mb-1 { margin-bottom: 8px; }
.sc-mb-2 { margin-bottom: 16px; }
.sc-mb-3 { margin-bottom: 24px; }
.sc-mb-4 { margin-bottom: 32px; }
.sc-mb-5 { margin-bottom: 48px; }

.sc-mt-0 { margin-top: 0; }
.sc-mt-1 { margin-top: 8px; }
.sc-mt-2 { margin-top: 16px; }
.sc-mt-3 { margin-top: 24px; }
.sc-mt-4 { margin-top: 32px; }

.sc-hidden { display: none; }
.sc-visible { display: block; }

@media (max-width: 768px) {
    .sc-hidden-mobile { display: none; }
}

@media (min-width: 769px) {
    .sc-hidden-desktop { display: none; }
}
