@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;400;600;800&display=swap');

:root {
    --accent: #38bdf8;
    --crypto: #f59e0b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important; 
}

html, body {
    height: 100%;
    background-color: #020617;
}

body { 
    font-family: 'Inter', sans-serif; 
    color: white;
    overflow-x: hidden;
    width: 100%;
}

/* --- UI Components --- */
.glass { 
    background: rgba(15, 23, 42, 0.7); 
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px);
}

.gradient-text { 
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

/* --- Custom Cursor --- */
#cursor-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%); 
}

#cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease-out, background 0.2s, border 0.2s;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%); 
}

/* --- Animations & Pages --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.page {
    transition: opacity 0.4s ease, transform 0.4s ease;
    width: 100%;
}

.hidden-page {
    display: none !important;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

/* --- Background --- */
#particle-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

.content-wrapper { position: relative; z-index: 10; min-height: 100vh; display: flex; flex-direction: column; }

/* --- UI Elements --- */
.channel-card, .uptime-card, .form-card, .feature-card {
    background: #020617; /* FIX: Tiefschwarz statt transparenter Aufhellung */
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.15s cubic-bezier(0.2, 0, 0.2, 1), background 0.15s ease, border-color 0.15s ease;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.channel-card:hover, .uptime-card:hover, .feature-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(56, 189, 248, 0.5);
    transform: translateY(-4px) scale(1.02);
}

.input-field {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    width: 100%;
    color: white;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}
.input-field:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

select.input-field option {
    background-color: #0f172a; 
    color: white;
    padding: 10px;
}

.logo-badge {
    font-weight: 900;
    padding: 4px 14px;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 12px;
}

.bg-sky-sports { background: linear-gradient(90deg, #005eb8, #0099ff); color: white; }
.bg-dazn { background: #f5f5f5; color: black; border: 2px solid #000; }
.bg-espn { background: #cc0000; color: white; }
.bg-tnt { background: linear-gradient(45deg, #ec008c, #00adef); color: white; }
.bg-canal { background: #000; color: #fff; border: 1px solid #333; }
.bg-movistar { background: #5cb615; color: white; }
.bg-fox { background: #003366; color: white; }

.flag-icon { 
    width: 24px; 
    height: 18px; 
    border-radius: 2px; 
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.uptime-bar {
    height: 30px;
    display: flex;
    gap: 2px;
    align-items: flex-end;
}
.uptime-segment {
    flex: 1;
    background: #10b981;
    height: 100%;
    border-radius: 2px;
    opacity: 0.8;
    transition: opacity 0.3s;
}
.uptime-segment:hover { opacity: 1; }
.uptime-segment.down { background: #ef4444; height: 60%; }

#notification {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#notification.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.method-btn { position: relative; }
.method-btn.active {
    border-color: #38bdf8 !important;
    background: rgba(56, 189, 248, 0.1) !important;
    color: #38bdf8;
}

.crypto-badge {
    background: var(--crypto);
    color: #000;
    font-size: 8px;
    font-weight: 900;
    padding: 2px 6px;
    border-radius: 4px;
    position: absolute;
    top: -10px;
    right: -5px;
    text-transform: uppercase;
}