/**
 * Starter Streaming - Main Styles
 * Baseado no design PrimeCLUBE IPTV V5
 *
 * @package StarterStreaming
 */

/* ==========================================================================
   Base Variables
   ========================================================================== */
:root {
    /* Header */
    --header-height: 80px;
    --starter-header-height: 80px; /* alias para compatibilidade */

    /* Cores */
    --primary: #0066cc;
    --secondary: #00aaff;
    --accent: #ff8c1a;
    --background: #0d1117;
    --background-alt: #161b22;
    --text-light: #f0f6fc;
    --text-dark: #333333;
    --text-muted: rgba(255, 255, 255, 0.7);
    --card-bg: #161b22;
    --card-bg-hover: #1f2937;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.3);
    --glow-primary: 0 0 40px rgba(0, 102, 204, 0.3);
    --glow-accent: 0 0 40px rgba(255, 140, 26, 0.3);
    --overlay-bg: rgba(13, 17, 23, 0.98);
}

