/*
 * My Way to Skill (MyWTS) - Stylesheet
 * Custom Dark Gaming Aesthetic with Orange & Gold accents
 */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --color-bg: #090a0f;
    --color-bg-alt: #12141c;
    --color-panel: rgba(20, 22, 30, 0.65);
    --color-panel-border: rgba(255, 255, 255, 0.07);
    --color-panel-glow: rgba(234, 102, 25, 0.15);
    
    --color-primary: #ea6619; /* WoW Orange */
    --color-primary-rgb: 234, 102, 25;
    --color-secondary: #fbb03b; /* Gold */
    --color-secondary-rgb: 251, 176, 59;
    --color-accent-blue: #00d2ff;
    
    --color-text: #f7f7f7;
    --color-text-muted: #a0a5b5;
    
    /* System variables */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --border-radius: 12px;
    --transition-speed: 0.3s;
    --max-width: 1200px;
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background glows for premium look */
body::before {
    content: '';
    position: fixed;
    top: -10%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(234, 102, 25, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -2;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    bottom: -10%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(251, 176, 59, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -2;
    pointer-events: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-speed), text-shadow var(--transition-speed);
}

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

/* Layout Elements */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 80px 0;
}

/* Header & Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(9, 10, 15, 0.75);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-panel-border);
    transition: background var(--transition-speed), box-shadow var(--transition-speed);
}

header.scrolled {
    background: rgba(9, 10, 15, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.logo img {
    height: 65px;
    display: block;
    transition: transform var(--transition-speed);
}

.logo img:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

nav ul li a {
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 8px 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-speed);
}

nav ul li a:hover {
    color: var(--color-primary);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 120px;
    text-align: center;
    background-color: var(--color-bg);
    background-image: 
        radial-gradient(circle at center, transparent 20%, var(--color-bg) 95%),
        linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        repeating-linear-gradient(135deg, rgba(234, 102, 25, 0.008) 0px, rgba(234, 102, 25, 0.008) 1px, transparent 1px, transparent 8px);
    background-size: 100% 100%, 40px 40px, 40px 40px, 16px 16px;
    background-position: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(234, 102, 25, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(251, 176, 59, 0.12) 0%, transparent 50%);
    opacity: 0.8;
    animation: heroGlow 8s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes heroGlow {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}


.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 10;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 16px;
    display: inline-block;
    position: relative;
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 30%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed) cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: none;
    gap: 10px;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(234, 102, 25, 0.4);
}

.btn-primary:hover {
    background: var(--color-secondary);
    color: #0b0c10;
    box-shadow: 0 6px 20px rgba(251, 176, 59, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text);
    border: 1px solid var(--color-panel-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-text);
    color: #fff;
    transform: translateY(-2px);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Glassmorphic Panel (Card) styling */
.panel {
    background: var(--color-panel);
    border: 1px solid var(--color-panel-border);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition-speed), border-color var(--transition-speed), box-shadow var(--transition-speed);
}

.panel:hover {
    border-color: rgba(var(--color-primary-rgb), 0.3);
    box-shadow: 0 12px 40px rgba(var(--color-primary-rgb), 0.1);
}

/* Section Title */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.section-header h2 span {
    color: var(--color-primary);
}

.section-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* About Us Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-card {
    text-align: center;
    padding: 24px;
}

.feature-card i {
    font-size: 32px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.feature-card h4 {
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* Raids Section */
.raids-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.raid-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.raid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--color-panel-border);
    padding-bottom: 16px;
}

.raid-title h3 {
    font-size: 24px;
    color: #fff;
}

.raid-title p {
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge {
    background: rgba(var(--color-primary-rgb), 0.15);
    color: var(--color-primary);
    border: 1px solid rgba(var(--color-primary-rgb), 0.3);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-gold {
    background: rgba(var(--color-secondary-rgb), 0.15);
    color: var(--color-secondary);
    border: 1px solid rgba(var(--color-secondary-rgb), 0.3);
}

.raid-info-list {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.raid-info-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.raid-info-list li span:first-child {
    color: var(--color-text-muted);
}

.raid-info-list li span:last-child {
    font-weight: 600;
}

.raid-actions {
    display: flex;
    gap: 12px;
}

.raid-actions .btn {
    flex: 1;
}

/* Twitch Live Stream Feature */
.live-stream-area {
    margin-top: 40px;
    display: none; /* Hidden by default, shown when a channel is live */
}

.live-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: center;
}

.live-player {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 2px solid var(--color-primary);
    box-shadow: 0 0 20px rgba(var(--color-primary-rgb), 0.3);
}

.live-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.live-details h3 {
    font-size: 28px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.live-pulse {
    width: 12px;
    height: 12px;
    background: #ff3333;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 51, 51, 0.7);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 51, 51, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 51, 51, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 51, 51, 0);
    }
}

.live-details p {
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

/* Twitch Streamers Slider */
.streamer-card {
    text-align: center;
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.streamer-avatar-wrapper {
    position: relative;
    margin-bottom: 16px;
}

.streamer-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: var(--color-bg);
    border: 3px solid var(--color-panel-border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-size: 32px;
    color: var(--color-text-muted);
}

.streamer-card.is-live .streamer-avatar {
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(var(--color-primary-rgb), 0.4);
}

.live-badge {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff3333;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 10px;
    letter-spacing: 0.5px;
    display: none;
}

.streamer-card.is-live .live-badge {
    display: block;
}

.streamer-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

/* Youtube Videos Slider */
.youtube-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
    overflow: hidden;
}

.youtube-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect */
    background: #111;
    overflow: hidden;
}

.youtube-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--transition-speed);
}

.youtube-card:hover .youtube-thumbnail img {
    transform: scale(1.08);
}

.youtube-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-speed);
}

.youtube-card:hover .youtube-play-overlay {
    opacity: 1;
}

.youtube-play-overlay i {
    font-size: 48px;
    color: var(--color-primary);
    filter: drop-shadow(0 0 10px rgba(var(--color-primary-rgb), 0.6));
}

.youtube-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.youtube-date {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.youtube-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Splide custom arrows & layout styling */
.splide__arrows {
    display: flex;
    gap: 10px;
    position: absolute;
    top: -60px;
    right: 0;
}

.splide__arrow {
    background: var(--color-panel) !important;
    border: 1px solid var(--color-panel-border) !important;
    color: var(--color-text) !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 8px !important;
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-speed) !important;
}

.splide__arrow:hover {
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: #fff !important;
}

.splide__arrow svg {
    fill: currentColor !important;
    width: 16px !important;
    height: 16px !important;
}

.splide__pagination {
    bottom: -32px !important;
}

.splide__pagination__page {
    background: var(--color-panel-border) !important;
    width: 8px !important;
    height: 8px !important;
    transition: transform var(--transition-speed), background var(--transition-speed) !important;
}

.splide__pagination__page.is-active {
    background: var(--color-primary) !important;
    transform: scale(1.4) !important;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-speed);
}

.video-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.video-modal-content {
    width: 90%;
    max-width: 900px;
    position: relative;
    padding-top: 50.625%; /* 16:9 ratio for max width */
    background: #000;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--color-panel-border);
}

.video-modal-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    transition: color var(--transition-speed);
}

.video-modal-close:hover {
    color: var(--color-primary);
}

/* Footer styling */
footer {
    background-color: var(--color-bg-alt);
    border-top: 1px solid var(--color-panel-border);
    padding: 60px 0 30px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 40px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-panel-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: all var(--transition-speed);
    font-size: 16px;
}

.social-links a:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(234, 102, 25, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--color-text-muted);
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-admin-link {
    color: var(--color-text-muted);
    font-size: 12px;
}

.footer-admin-link:hover {
    color: var(--color-primary);
}

/* Admin Panel Styling */
.admin-page {
    padding-top: 140px;
    min-height: 100vh;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.admin-header h1 span {
    color: var(--color-primary);
}

/* Login Panel */
.login-panel {
    max-width: 450px;
    margin: 60px auto;
}

.login-panel h2 {
    text-align: center;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
}

.form-control {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-panel-border);
    border-radius: var(--border-radius);
    padding: 14px 16px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    transition: all var(--transition-speed);
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(var(--color-primary-rgb), 0.2);
    outline: none;
}

.admin-btn {
    width: 100%;
    margin-top: 12px;
}

/* Admin Dashboard layout */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 32px;
}

.alert {
    padding: 12px 16px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    font-size: 14px;
    display: none;
}

.alert-danger {
    background: rgba(255, 51, 51, 0.15);
    border: 1px solid rgba(255, 51, 51, 0.3);
    color: #ff6666;
}

.alert-success {
    background: rgba(0, 210, 100, 0.15);
    border: 1px solid rgba(0, 210, 100, 0.3);
    color: #66ffaa;
}

/* Streamers Manage Table/List */
.streamers-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.streamer-list-header {
    font-weight: 700;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-panel-border);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
}

.streamer-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    align-items: center;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-panel-border);
    border-radius: var(--border-radius);
    transition: background var(--transition-speed);
}

.streamer-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.streamer-item-name {
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.streamer-item-name i {
    color: #6441a5; /* Twitch Purple */
}

.btn-delete {
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    font-size: 16px;
    transition: color var(--transition-speed);
    text-align: right;
    justify-self: end;
    padding: 4px 8px;
}

.btn-delete:hover {
    color: #ff3333;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 48px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-features {
        margin-top: 30px;
    }
    .raids-grid {
        grid-template-columns: 1fr;
    }
    .live-wrapper {
        grid-template-columns: 1fr;
    }
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header .container {
        height: 70px;
    }
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--color-bg);
        border-top: 1px solid var(--color-panel-border);
        transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        padding: 40px 24px;
        overflow-y: auto;
    }
    nav.active {
        left: 0;
    }
    nav ul {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }
    nav ul li a {
        font-size: 16px;
        width: 100%;
        display: block;
    }
    .mobile-toggle {
        display: block;
    }
    .hero {
        min-height: 50vh;
    }
    .hero h1 {
        font-size: 38px;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .hero-buttons .btn {
        width: 100%;
    }
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
    }
    .splide__arrows {
        top: -50px;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 800px;
    margin: 0 auto;
    z-index: 3000;
    display: none; /* Controlled by JS */
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid rgba(var(--color-primary-rgb), 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.cookie-banner-content h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 16px;
}

.cookie-banner-content p {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* Consent Overlay for Placeholders */
.consent-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
    background: rgba(20, 22, 30, 0.4);
    border: 1px dashed var(--color-panel-border);
    border-radius: var(--border-radius);
    min-height: 250px;
    margin: 20px 0;
}

.consent-placeholder i {
    font-size: 48px;
    color: var(--color-primary);
    margin-bottom: 16px;
    opacity: 0.7;
}

.consent-placeholder h4 {
    margin-bottom: 8px;
    font-size: 18px;
}

.consent-placeholder p {
    font-size: 14px;
    color: var(--color-text-muted);
    max-width: 450px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        bottom: 12px;
        left: 12px;
        right: 12px;
        gap: 16px;
        padding: 20px;
    }
}

