/* FAFQ TV - Ultra Modern & Dynamic Styles */

/* CSS Variables */
:root {
    /* Core Colors */
    --primary-cyan: #00BFFF;
    --dark-blue: #1a1a2e;
    --deep-black: #0f0f23;
    --accent-cyan: #00d9ff;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --success: #00ff88;
    --warning: #ffaa00;
    --error: #ff4444;
    --glass-bg: rgba(26, 26, 46, 0.8);
    --glass-border: rgba(0, 191, 255, 0.3);
    
    /* Enhanced Cyan Theme */
    --primary-cyan: #00bfff;
    --accent-cyan: #00d9ff;
    --cyan-glow: rgba(0, 191, 255, 0.3);
    --cyan-bright: #00ffff;
    --cyan-dark: #0088cc;
    
    /* Text Colors */
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --text-dark: #666666;
    --text-muted: #888888;
    
    /* Status Colors */
    --success: #00ff88;
    --warning: #ffaa00;
    --error: #ff4444;
    --info: #00bfff;
    
    /* Enhanced Gradients */
    --gradient-primary: linear-gradient(135deg, var(--deep-black), var(--dark-blue));
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    --gradient-cyan: linear-gradient(45deg, var(--primary-cyan), var(--accent-cyan));
    --gradient-animated: linear-gradient(45deg, var(--primary-cyan), var(--cyan-bright), var(--accent-cyan));
    --gradient-glow: radial-gradient(circle, rgba(0, 191, 255, 0.2), transparent);
    
    /* Animation Variables */
    --animation-speed: 0.3s;
    --animation-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --animation-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--gradient-primary);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 191, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 255, 255, 0.05) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-cyan);
    border-radius: 50%;
    animation: float 6s linear infinite;
    opacity: 0.6;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Header Styles */
header {
    position: relative;
    z-index: 100;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
}

/* Enhanced Logo */
.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: var(--text-light);
    transition: all var(--animation-speed) var(--animation-bounce);
    position: relative;
}

.logo::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--gradient-glow);
    border-radius: 15px;
    opacity: 0;
    transition: opacity var(--animation-speed) ease;
    z-index: -1;
}

.logo:hover::before {
    opacity: 1;
}

.logo:hover {
    color: var(--primary-cyan);
    text-decoration: none;
    transform: translateY(-3px) scale(1.02);
}

.logo i {
    font-size: 2rem;
    color: var(--primary-cyan);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px var(--cyan-glow);
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { 
        text-shadow: 0 0 20px var(--cyan-glow);
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 0 30px var(--cyan-glow), 0 0 40px var(--cyan-glow);
        transform: scale(1.05);
    }
}

.logo span {
    font-family: 'Orbitron', monospace;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 2px;
    background: var(--gradient-animated);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 20px var(--cyan-glow);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.logo-subtitle {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-gray);
    margin-top: 0.25rem;
    text-transform: uppercase;
    opacity: 0.8;
    transition: opacity var(--animation-speed) ease;
}

.logo:hover .logo-subtitle {
    opacity: 1;
    color: var(--accent-cyan);
}

/* Enhanced Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.admin-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(0, 191, 255, 0.1);
    border: 1px solid rgba(0, 191, 255, 0.3);
    border-radius: 12px;
    color: var(--primary-cyan);
    text-decoration: none;
    transition: all var(--animation-speed) var(--animation-bounce);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.admin-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.admin-icon:hover::before {
    left: 100%;
}

.admin-icon:hover {
    background: rgba(0, 191, 255, 0.2);
    color: var(--accent-cyan);
    text-decoration: none;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 191, 255, 0.4);
}

.admin-icon i {
    font-size: 1.1rem;
    transition: transform var(--animation-speed) var(--animation-bounce);
}

.admin-icon:hover i {
    transform: rotate(180deg);
}

/* Enhanced Header Clock */
.header-clock {
    text-align: right;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    backdrop-filter: blur(20px);
    min-width: 250px;
    position: relative;
    overflow: hidden;
    transition: all var(--animation-speed) ease;
}

.header-clock::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-animated);
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

.header-clock:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.2);
}

.header-clock-time {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-cyan);
    text-shadow: 0 0 15px var(--cyan-glow);
    margin-bottom: 0.25rem;
    animation: timeGlow 2s ease-in-out infinite;
}

@keyframes timeGlow {
    0%, 100% { 
        text-shadow: 0 0 15px var(--cyan-glow);
    }
    50% { 
        text-shadow: 0 0 25px var(--cyan-glow), 0 0 35px var(--cyan-glow);
    }
}

.header-clock-date {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: capitalize;
    transition: color var(--animation-speed) ease;
}

.header-clock:hover .header-clock-date {
    color: var(--accent-cyan);
}

/* Enhanced Main Container */
.main-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Enhanced Cards */
.card {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
    transition: all var(--animation-speed) var(--animation-smooth);
    position: relative;
    overflow: hidden;
    animation: cardSlideIn 0.6s ease-out;
}

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

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-animated);
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
    opacity: 0.7;
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity var(--animation-speed) ease;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 191, 255, 0.15),
        0 0 0 1px rgba(0, 191, 255, 0.3);
    border-color: rgba(0, 191, 255, 0.5);
}

.card:hover::after {
    opacity: 0.1;
}

/* Enhanced Card Titles */
.card-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.card-title i {
    color: var(--primary-cyan);
    font-size: 1.3rem;
    text-shadow: 0 0 15px var(--cyan-glow);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

.card-title-with-live {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-title-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-title-left i {
    color: var(--primary-cyan);
    font-size: 1.3rem;
    text-shadow: 0 0 15px var(--cyan-glow);
    animation: iconFloat 3s ease-in-out infinite;
}

/* Enhanced Live Status */
.live-status-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.live-text-right {
    background: linear-gradient(45deg, var(--error), #ff6666);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: livePulse 2s infinite;
    position: relative;
    overflow: hidden;
}

.live-text-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: liveShine 3s infinite;
}

@keyframes livePulse {
    0%, 100% { 
        opacity: 1;
        box-shadow: 0 0 10px var(--error);
    }
    50% { 
        opacity: 0.8;
        box-shadow: 0 0 20px var(--error), 0 0 30px var(--error);
    }
}

@keyframes liveShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Enhanced Twitch Embed */
.twitch-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    border-radius: 15px;
    overflow: hidden;
    background: var(--deep-black);
    border: 2px solid var(--glass-border);
    transition: all var(--animation-speed) ease;
}

.twitch-container:hover {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 30px rgba(0, 191, 255, 0.3);
}

.twitch-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 13px;
}

/* Enhanced Current Program */
.current-program {
    text-align: center;
    position: relative;
}

.program-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.3;
    animation: titleGlow 4s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { 
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }
    50% { 
        text-shadow: 0 0 20px rgba(0, 191, 255, 0.5);
    }
}

.program-time {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.program-time span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 191, 255, 0.1);
    border-radius: 10px;
    transition: all var(--animation-speed) ease;
}

.program-time span:hover {
    background: rgba(0, 191, 255, 0.2);
    transform: translateY(-2px);
}

.program-time i {
    color: var(--primary-cyan);
    animation: iconPulse 2s ease-in-out infinite;
}

/* Enhanced Progress Bar */
.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: progressShine 2s infinite;
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-fill {
    height: 100%;
    background: var(--gradient-animated);
    background-size: 200% 200%;
    border-radius: 10px;
    transition: all var(--animation-speed) ease;
    box-shadow: 0 0 15px var(--cyan-glow);
    animation: gradientShift 3s ease-in-out infinite;
    position: relative;
}

/* Dynamic Progress Colors */
.progress-fill.progress-start {
    background: linear-gradient(45deg, var(--success), #00ff99);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
    animation: progressPulseGreen 2s ease-in-out infinite;
}

.progress-fill.progress-middle {
    background: linear-gradient(45deg, var(--warning), #ffcc00);
    box-shadow: 0 0 20px rgba(255, 170, 0, 0.6);
    animation: progressPulseYellow 2s ease-in-out infinite;
}

.progress-fill.progress-end {
    background: linear-gradient(45deg, var(--error), #ff6666);
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.6);
    animation: progressPulseRed 2s ease-in-out infinite;
}

@keyframes progressPulseGreen {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
        transform: scaleY(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(0, 255, 136, 0.8), 0 0 40px rgba(0, 255, 136, 0.4);
        transform: scaleY(1.1);
    }
}

@keyframes progressPulseYellow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 170, 0, 0.6);
        transform: scaleY(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 170, 0, 0.8), 0 0 40px rgba(255, 170, 0, 0.4);
        transform: scaleY(1.1);
    }
}

@keyframes progressPulseRed {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 68, 68, 0.6);
        transform: scaleY(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 68, 68, 0.8), 0 0 40px rgba(255, 68, 68, 0.4);
        transform: scaleY(1.1);
    }
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5));
    border-radius: 0 10px 10px 0;
    animation: progressGlow 1.5s ease-in-out infinite;
}

@keyframes progressGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.time-remaining {
    color: var(--primary-cyan);
    font-weight: bold;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 10px var(--cyan-glow);
    animation: timeGlow 2s ease-in-out infinite;
}

/* Enhanced Next Program */
.next-program {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    position: relative;
}

.next-program::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background: var(--gradient-cyan);
    box-shadow: 0 0 10px var(--cyan-glow);
}

.next-program-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.next-program-title {
    color: var(--text-light);
    font-weight: bold;
    margin-bottom: 0.5rem;
    transition: color var(--animation-speed) ease;
}

.next-program:hover .next-program-title {
    color: var(--accent-cyan);
}

.next-program-time {
    color: var(--primary-cyan);
    font-size: 0.9rem;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 10px var(--cyan-glow);
}

/* Enhanced Search */
.search-container {
    margin-bottom: 1rem;
}

.search-box {
    display: flex;
    gap: 0.5rem;
    position: relative;
}

.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    transition: all var(--animation-speed) ease;
    backdrop-filter: blur(10px);
}

.search-input::placeholder {
    color: var(--text-gray);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.search-btn {
    padding: 0.75rem 1rem;
    background: var(--gradient-cyan);
    border: none;
    border-radius: 10px;
    color: var(--deep-black);
    cursor: pointer;
    transition: all var(--animation-speed) var(--animation-bounce);
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

.search-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.search-btn:hover::before {
    left: 100%;
}

.search-btn:hover {
    background: var(--accent-cyan);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 191, 255, 0.4);
}

/* Enhanced Schedule */
.schedule-container {
    max-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 5px;
}

.schedule-container::-webkit-scrollbar {
    width: 6px;
}

.schedule-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.schedule-container::-webkit-scrollbar-thumb {
    background: var(--primary-cyan);
    border-radius: 3px;
    transition: background var(--animation-speed) ease;
}

.schedule-container::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}

/* Enhanced Program Items */
.program-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    transition: all var(--animation-speed) var(--animation-smooth);
    min-width: 0;
    word-wrap: break-word;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.program-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.program-item:hover::before {
    left: 100%;
}

.program-item:hover {
    background: rgba(0, 191, 255, 0.15);
    transform: translateX(8px) scale(1.02);
    border-color: rgba(0, 191, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.2);
}

.program-item.current {
    background: rgba(0, 255, 136, 0.2);
    border-left: 4px solid var(--success);
    animation: currentPulse 3s ease-in-out infinite;
}

@keyframes currentPulse {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    }
    50% { 
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    }
}

.program-item.past {
    opacity: 0.6;
    filter: grayscale(0.3);
}

.program-item.past:hover {
    opacity: 0.8;
    filter: grayscale(0);
}

/* Enhanced Program Icons */
.program-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-cyan);
    border-radius: 10px;
    color: var(--deep-black);
    transition: all var(--animation-speed) var(--animation-bounce);
    position: relative;
    overflow: hidden;
}

.program-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.program-item:hover .program-icon::before {
    transform: translateX(100%);
}

.program-item:hover .program-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.4);
}

.program-icon img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

/* Enhanced Program Details */
.program-details {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.program-details h4 {
    color: var(--text-light);
    margin-bottom: 4px;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color var(--animation-speed) ease;
}

.program-item:hover .program-details h4 {
    color: var(--accent-cyan);
}

.program-details .time {
    color: var(--text-gray);
    font-size: 0.85rem;
    font-family: 'Orbitron', monospace;
    transition: color var(--animation-speed) ease;
}

.program-item:hover .program-details .time {
    color: var(--primary-cyan);
}

.program-duration {
    color: var(--primary-cyan);
    font-size: 0.8rem;
    font-weight: bold;
    font-family: 'Orbitron', monospace;
    padding: 0.25rem 0.5rem;
    background: rgba(0, 191, 255, 0.1);
    border-radius: 6px;
    transition: all var(--animation-speed) ease;
}

.program-item:hover .program-duration {
    background: rgba(0, 191, 255, 0.2);
    transform: scale(1.05);
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, var(--deep-black), var(--dark-blue));
    border-top: 2px solid var(--glass-border);
    margin-top: 4rem;
    padding: 3rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-animated);
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all var(--animation-speed) ease;
    position: relative;
    overflow: hidden;
}

.footer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-cyan);
    opacity: 0;
    transition: opacity var(--animation-speed) ease;
}

.footer-card:hover::before {
    opacity: 1;
}

.footer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 191, 255, 0.15);
    border-color: rgba(0, 191, 255, 0.3);
}

.footer-card h3 {
    color: var(--primary-cyan);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    transition: color var(--animation-speed) ease;
}

.footer-card:hover p {
    color: var(--text-light);
}

.footer-card p i {
    color: var(--primary-cyan);
    margin-right: 0.5rem;
    width: 16px;
}

/* Enhanced Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 191, 255, 0.1);
    border: 1px solid rgba(0, 191, 255, 0.3);
    border-radius: 10px;
    color: var(--primary-cyan);
    text-decoration: none;
    transition: all var(--animation-speed) var(--animation-bounce);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: rgba(0, 191, 255, 0.2);
    color: var(--accent-cyan);
    text-decoration: none;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 191, 255, 0.3);
}

.footer-admin {
    display: flex;
    align-items: center;
}

.admin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 191, 255, 0.1);
    border: 1px solid rgba(0, 191, 255, 0.3);
    border-radius: 10px;
    color: var(--primary-cyan);
    text-decoration: none;
    transition: all var(--animation-speed) var(--animation-bounce);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.admin-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.admin-link:hover::before {
    left: 100%;
}

.admin-link:hover {
    background: rgba(0, 191, 255, 0.2);
    color: var(--accent-cyan);
    text-decoration: none;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 191, 255, 0.3);
}

.admin-link i {
    font-size: 1rem;
    transition: transform var(--animation-speed) ease;
}

.admin-link:hover i {
    transform: rotate(180deg);
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    margin-top: 2rem;
}

.footer-copyright p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Enhanced Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-gray);
    position: relative;
}

.empty-state i {
    font-size: 3rem;
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    opacity: 0.7;
    animation: emptyStateFloat 3s ease-in-out infinite;
}

@keyframes emptyStateFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.empty-state h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.6s ease-out;
}

.empty-state p {
    font-size: 0.9rem;
    animation: fadeInUp 0.8s ease-out;
}

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

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .main-container {
        grid-template-columns: 1fr 350px;
    }
}

@media (max-width: 768px) {
    .main-container {
        grid-template-columns: 1fr;
        padding: 1rem 15px;
        gap: 1.5rem;
    }
    
    .header .container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .header-right {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .header-clock {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .logo span {
        font-size: 1.8rem;
    }
    
    .logo-subtitle {
        font-size: 0.65rem;
        letter-spacing: 1.5px;
    }
    
    .header-clock-time {
        font-size: 1.2rem;
    }
    
    .program-title {
        font-size: 1.3rem;
    }
    
    .program-time {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .schedule-container {
        max-height: 400px;
    }
    
    .program-item {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .program-icon {
        width: 35px;
        height: 35px;
        flex-shrink: 0;
    }
    
    .program-details h4 {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .program-details .time {
        font-size: 0.8rem;
    }
    
    .program-duration {
        font-size: 0.75rem;
        flex-shrink: 0;
        min-width: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .twitch-container {
        padding-bottom: 56.25%;
    }
    
    .card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .header .container {
        padding: 1rem;
    }
    
    .logo span {
        font-size: 1.5rem;
    }
    
    .logo-subtitle {
        font-size: 0.6rem;
    }
    
    .card {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .schedule-container {
        max-height: 350px;
    }
    
    .program-item {
        padding: 0.5rem;
        gap: 0.5rem;
        flex-wrap: nowrap;
    }
    
    .program-icon {
        width: 30px;
        height: 30px;
    }
    
    .program-details h4 {
        font-size: 0.85rem;
    }
    
    .program-details .time {
        font-size: 0.75rem;
    }
    
    .program-duration {
        font-size: 0.7rem;
        min-width: 35px;
    }
    
    .twitch-container {
        padding-bottom: 56.25%;
    }
}

/* Accessibility and Performance */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States for Accessibility */
.search-input:focus,
.admin-icon:focus,
.social-link:focus,
.admin-link:focus {
    outline: 2px solid var(--primary-cyan);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --text-gray: #cccccc;
        --glass-border: rgba(0, 191, 255, 0.6);
    }
}

/* Print Styles */
@media print {
    body::before,
    .particles,
    .card::before,
    .card::after {
        display: none !important;
    }
    
    .card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}



/* Enhanced Hover Effects and Additional Animations */

/* Improved Card Hover Effects */
.card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 30px 60px rgba(0, 191, 255, 0.2),
        0 0 0 2px rgba(0, 191, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 191, 255, 0.6);
}

/* Enhanced Program Item Animations */
.program-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.program-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.program-item:hover::before {
    left: 100%;
}

.program-item:hover {
    transform: translateX(8px) scale(1.02);
    background: rgba(0, 191, 255, 0.05);
    border-left: 3px solid var(--primary-cyan);
    padding-left: 1.5rem;
}

/* Staggered Animation for Program Items */
.program-item:nth-child(1) { animation-delay: 0.1s; }
.program-item:nth-child(2) { animation-delay: 0.2s; }
.program-item:nth-child(3) { animation-delay: 0.3s; }
.program-item:nth-child(4) { animation-delay: 0.4s; }
.program-item:nth-child(5) { animation-delay: 0.5s; }

/* Enhanced Icon Glow Effects */
.program-icon i,
.card-title i,
.logo i {
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px var(--cyan-glow));
}

.program-item:hover .program-icon i,
.card:hover .card-title i {
    filter: drop-shadow(0 0 20px var(--cyan-glow)) drop-shadow(0 0 30px var(--cyan-glow));
    transform: scale(1.2) rotate(10deg);
}

/* Pulsing Glow Animation for Important Elements */
@keyframes pulsingGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px var(--cyan-glow));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 25px var(--cyan-glow)) drop-shadow(0 0 35px var(--cyan-glow));
        transform: scale(1.05);
    }
}

.header-clock-time,
.live-text-right,
.time-remaining {
    animation: pulsingGlow 3s ease-in-out infinite;
}

/* Enhanced Background Gradient Animation */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(0, 191, 255, 0.08) 0%, transparent 50%);
    animation: backgroundFloat 12s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes backgroundFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.6;
    }
    33% {
        transform: translate(30px, -30px) rotate(1deg);
        opacity: 0.8;
    }
    66% {
        transform: translate(-20px, 20px) rotate(-1deg);
        opacity: 0.7;
    }
}

/* Enhanced Search Input Effects */
.search-input:focus {
    background: rgba(0, 191, 255, 0.1);
    border-color: var(--primary-cyan);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
    transform: scale(1.02);
}

.search-btn:hover {
    background: var(--primary-cyan);
    color: var(--deep-black);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.4);
}

/* Floating Animation for Logo */
.logo {
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Enhanced Twitch Container Effects */
.twitch-container:hover {
    border-color: var(--accent-cyan);
    box-shadow: 
        0 0 40px rgba(0, 191, 255, 0.4),
        inset 0 0 20px rgba(0, 191, 255, 0.1);
    transform: scale(1.01);
}

/* Smooth Transitions for All Interactive Elements */
* {
    transition: filter 0.3s ease, transform 0.3s ease;
}

/* Enhanced Ripple Effect Styles */
.ripple-effect {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(0, 191, 255, 0.4);
    transform: scale(0);
    animation: ripple-animation 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Glowing Border Animation */
@keyframes glowingBorder {
    0%, 100% {
        border-color: rgba(0, 191, 255, 0.3);
        box-shadow: 0 0 10px rgba(0, 191, 255, 0.2);
    }
    50% {
        border-color: rgba(0, 191, 255, 0.6);
        box-shadow: 0 0 25px rgba(0, 191, 255, 0.4);
    }
}

.card,
.header-clock,
.twitch-container {
    animation: glowingBorder 4s ease-in-out infinite;
}

/* Enhanced Typography Effects */
.program-title {
    background: linear-gradient(45deg, var(--text-light), var(--primary-cyan), var(--text-light));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 4s ease-in-out infinite;
}

@keyframes textShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Particle Trail Effect */
.particle-trail {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-cyan);
    border-radius: 50%;
    pointer-events: none;
    animation: particleTrail 2s linear infinite;
}

@keyframes particleTrail {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0) translateY(-50px);
    }
}



/* ===== RESPONSIVIDADE PARA MOBILE E TABLET ===== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .main-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .right-column {
        order: -1;
    }
    
    .header .container {
        padding: 1.5rem;
    }
    
    .logo span {
        font-size: 1.8rem;
    }
    
    .header-clock {
        min-width: 200px;
    }
    
    .header-clock-time {
        font-size: 1.2rem;
    }
}

/* Mobile (até 768px) */
@media (max-width: 768px) {
    /* Header responsivo */
    .header .container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        text-align: center;
    }
    
    .header-right {
        width: 100%;
        justify-content: center;
    }
    
    .logo {
        align-items: center;
    }
    
    .logo span {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .logo i {
        font-size: 1.5rem;
    }
    
    .logo-subtitle {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }
    
    .header-clock {
        min-width: auto;
        width: 100%;
        max-width: 300px;
        padding: 0.75rem 1rem;
    }
    
    .header-clock-time {
        font-size: 1.1rem;
    }
    
    .header-clock-date {
        font-size: 0.7rem;
    }
    
    /* Main container mobile */
    .main-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    /* Cards responsivos */
    .card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 15px;
    }
    
    .card-title {
        font-size: 1rem;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .card-title i {
        font-size: 1.1rem;
    }
    
    .card-title-left {
        font-size: 1rem;
        gap: 0.5rem;
    }
    
    .card-title-left i {
        font-size: 1.1rem;
    }
    
    /* Twitch container responsivo */
    .twitch-container {
        padding-bottom: 56.25%; /* Mantém proporção 16:9 */
        border-radius: 10px;
    }
    
    .twitch-container iframe {
        border-radius: 8px;
    }
    
    /* Programa atual responsivo */
    .program-title {
        font-size: 1.2rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .program-time {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1rem;
        font-size: 0.85rem;
    }
    
    .program-time span {
        padding: 0.4rem 0.8rem;
        border-radius: 8px;
        justify-content: center;
    }
    
    .progress-bar {
        height: 8px;
        margin-bottom: 0.75rem;
    }
    
    .time-remaining {
        font-size: 0.9rem;
    }
    
    /* Next program responsivo */
    .next-program {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .next-program-title {
        font-size: 1rem;
    }
    
    .next-program-time {
        font-size: 0.85rem;
    }
    
    /* Search responsivo */
    .search-container {
        margin-bottom: 1rem;
    }
    
    .search-box {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .search-input {
        width: 100%;
        padding: 0.75rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    .search-btn {
        width: 100%;
        padding: 0.75rem;
        border-radius: 8px;
        justify-content: center;
    }
    
    /* Schedule container responsivo */
    .schedule-container {
        max-height: 300px;
    }
    
    .program-item {
        padding: 1rem;
        gap: 0.75rem;
        border-radius: 8px;
    }
    
    .program-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .program-details h4 {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .program-details .time {
        font-size: 0.8rem;
    }
    
    .program-duration {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }
    
    /* Empty state responsivo */
    .empty-state {
        padding: 2rem 1rem;
    }
    
    .empty-state i {
        font-size: 2rem;
    }
    
    .empty-state h3 {
        font-size: 1.1rem;
    }
    
    .empty-state p {
        font-size: 0.9rem;
    }
    
    /* Live status responsivo */
    .live-text-right {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
        border-radius: 15px;
    }
}

/* Mobile pequeno (até 480px) */
@media (max-width: 480px) {
    /* Header ainda mais compacto */
    .header .container {
        padding: 0.75rem;
    }
    
    .logo span {
        font-size: 1.3rem;
    }
    
    .logo i {
        font-size: 1.3rem;
    }
    
    .logo-subtitle {
        font-size: 0.55rem;
    }
    
    .header-clock {
        padding: 0.5rem 0.75rem;
    }
    
    .header-clock-time {
        font-size: 1rem;
    }
    
    .header-clock-date {
        font-size: 0.65rem;
    }
    
    /* Main container mais compacto */
    .main-container {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    /* Cards mais compactos */
    .card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .card-title {
        font-size: 0.9rem;
    }
    
    .program-title {
        font-size: 1.1rem;
    }
    
    .program-time {
        font-size: 0.8rem;
    }
    
    .program-time span {
        padding: 0.3rem 0.6rem;
    }
    
    .time-remaining {
        font-size: 0.8rem;
    }
    
    .program-item {
        padding: 0.75rem;
        gap: 0.5rem;
    }
    
    .program-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .program-details h4 {
        font-size: 0.85rem;
    }
    
    .program-details .time {
        font-size: 0.75rem;
    }
    
    .program-duration {
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
    }
}

/* Landscape mobile (altura pequena) */
@media (max-height: 500px) and (orientation: landscape) {
    .header .container {
        padding: 0.5rem 1rem;
    }
    
    .logo span {
        font-size: 1.2rem;
    }
    
    .logo i {
        font-size: 1.2rem;
        margin-bottom: 0.25rem;
    }
    
    .header-clock {
        padding: 0.5rem 0.75rem;
    }
    
    .header-clock-time {
        font-size: 0.9rem;
    }
    
    .header-clock-date {
        font-size: 0.6rem;
    }
    
    .main-container {
        padding: 0.5rem;
    }
    
    .card {
        padding: 1rem;
    }
    
    .schedule-container {
        max-height: 200px;
    }
}

/* Ajustes para touch devices */
@media (hover: none) and (pointer: coarse) {
    /* Aumenta áreas de toque */
    .search-btn,
    .nav-link,
    .program-item {
        min-height: 44px;
    }
    
    /* Remove hover effects em touch devices */
    .card:hover,
    .program-item:hover,
    .nav-link:hover {
        transform: none;
    }
    
    /* Adiciona feedback visual para toque */
    .card:active,
    .program-item:active,
    .search-btn:active {
        transform: scale(0.98);
        opacity: 0.8;
    }
}

/* Ajustes para telas de alta densidade */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo i,
    .card-title i,
    .program-icon i {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Modo escuro forçado em alguns dispositivos */
@media (prefers-color-scheme: dark) {
    /* O site já é escuro por padrão, mas garantimos que permaneça assim */
    body {
        background: var(--gradient-primary);
        color: var(--text-light);
    }
}

/* Redução de movimento para usuários sensíveis */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .particles,
    .particle {
        display: none;
    }
}

/* Print styles (caso alguém queira imprimir) */
@media print {
    body::before,
    body::after,
    .particles {
        display: none !important;
    }
    
    .header,
    .twitch-container {
        display: none !important;
    }
    
    .card {
        border: 1px solid #000 !important;
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }
}


/* Estilos específicos para redes sociais */
.social-link.facebook:hover {
    background: rgba(24, 119, 242, 0.2);
    color: #1877f2;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, rgba(225, 48, 108, 0.2), rgba(255, 220, 128, 0.2));
    color: #e1306c;
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.3);
}

.social-link.youtube:hover {
    background: rgba(255, 0, 0, 0.2);
    color: #ff0000;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

.social-link.twitter:hover {
    background: rgba(29, 161, 242, 0.2);
    color: #1da1f2;
    box-shadow: 0 8px 20px rgba(29, 161, 242, 0.3);
}

