:root {
    --primary-color: #6a11cb;
    --secondary-color: #2575fc;
    --accent-glow: #e020ff;
    --bg-dark: #0a0a0f;
    --bg-darker: #050507;
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
    --glass-bg: rgba(25, 25, 35, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Prompt', 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

/* Typography & Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'Prompt', sans-serif;
}

.text-gradient {
    background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%, var(--accent-glow) 200%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-light-gray {
    color: var(--text-muted);
}

.tracking-wider {
    letter-spacing: 0.1em;
}

.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.section-dark {
    background-color: var(--bg-darker);
}

/* Navigation (Glassmorphism) */
.glass-navbar {
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.glass-navbar .nav-link {
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.3s ease;
}

.glass-navbar .nav-link:hover {
    color: #4facfe;
}

.custom-toggler {
    border-color: rgba(255,255,255,0.2);
}

.custom-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Buttons */
.btn-glow {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    box-shadow: 0 0 15px rgba(37, 117, 252, 0.4);
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-glow:hover {
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-glow));
    box-shadow: 0 0 25px rgba(224, 32, 255, 0.6);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-glass {
    background: var(--glass-bg);
    color: white;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-outline-glass:hover {
    background: rgba(255,255,255,0.1);
    color: white;
    border-color: rgba(255,255,255,0.3);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background-image: url('../assets/img/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(5,5,7,0.95) 0%, rgba(5,5,7,0.7) 50%, rgba(5,5,7,0.3) 100%);
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.glass-badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 0.5rem 1rem;
    font-weight: 400;
}

/* Glass Panels & Cards */
.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(37, 117, 252, 0.2);
    border-color: rgba(37, 117, 252, 0.3);
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.text-primary-glow {
    color: #4facfe;
    text-shadow: 0 0 15px rgba(79, 172, 254, 0.6);
}

/* How It Works & Mockup */
.mockup-container {
    max-width: 320px;
}

.glow-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 100%;
    background: radial-gradient(circle, rgba(224,32,255,0.3) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    filter: blur(40px);
}

.mockup-img {
    border: 4px solid #1a1a24;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 5px 15px rgba(37, 117, 252, 0.4);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

/* Background Glowing Blobs */
.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.4;
}

.blob-1 {
    top: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: var(--primary-color);
}

.blob-2 {
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: #4facfe;
}

/* Forms */
.glass-input {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    color: white;
    border-radius: 0.75rem;
    padding: 0.8rem 1rem;
}

.glass-input:focus {
    background: rgba(255,255,255,0.1);
    border-color: #4facfe;
    box-shadow: 0 0 0 0.25rem rgba(79, 172, 254, 0.25);
    color: white;
}

.glass-input::placeholder {
    color: rgba(255,255,255,0.4);
}

.glass-input option {
    background: var(--bg-dark);
    color: white;
}

.border-glow {
    border: 1px solid rgba(79, 172, 254, 0.3);
    box-shadow: inset 0 0 20px rgba(79, 172, 254, 0.05);
}

/* Simulated TV Screen */
.tv-screen {
    background: #111;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), inset 0 0 2px rgba(255,255,255,0.2);
}

.tv-frame {
    background: #000;
    border-radius: 6px;
    padding: 2px;
    aspect-ratio: 16/9;
    transition: all 0.5s ease;
    margin: 0 auto;
}

.tv-frame.tv-vertical {
    aspect-ratio: 9/16;
    max-height: 60vh;
    width: auto;
}

.tv-display {
    background: radial-gradient(circle at center, #222 0%, #050505 100%);
    height: 100%;
    width: 100%;
    border-radius: 4px;
    position: relative;
}

.tv-stand {
    width: 40px;
    height: 25px;
    background: linear-gradient(to right, #333, #555, #333);
}

.tv-base {
    width: 120px;
    height: 8px;
    background: #444;
    border-radius: 4px 4px 0 0;
}

/* Dynamic injected content style */
.screen-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    animation: fadeIn 0.5s ease-out;
}

.screen-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0) 100%);
    padding: 20px;
    width: 100%;
}

.screen-author {
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 5px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.screen-msg {
    color: rgba(255,255,255,0.9);
    font-size: 1.5rem;
    margin-bottom: 0;
    font-family: 'Prompt', sans-serif;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Custom Accordion */
.custom-accordion .accordion-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px !important;
    overflow: hidden;
}
.custom-accordion .accordion-button {
    font-weight: 500;
    font-family: 'Prompt', sans-serif;
    padding: 1.25rem 1.5rem;
}
.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-glow) !important;
    background-color: rgba(255, 255, 255, 0.1);
}
.custom-accordion .accordion-button::after {
    filter: invert(1);
}

/* TV Ticker */
.tv-ticker {
    z-index: 10;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.ticker-text {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 10s linear infinite;
}

@keyframes marquee {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

/* Admin Dashboard Queue */
.pending-item {
    background: rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--primary-glow);
    padding: 8px 12px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    animation: fadeIn 0.3s ease-in-out;
}
