/* landing.css - ParkStreamCentral mimicking styles */
:root {
    --bg-dark: #0f0e1b;
    --card-bg: #181726;
    --card-hover-bg: #1e1d30;
    --primary-color: #1A73E8;
    --primary-hover: #4285F4;
    --text-main: #f0f0f5;
    --text-muted: #a0a0b0;
    --border-color: rgba(26, 115, 232, 0.2);
    --glow-effect: 0 0 15px rgba(26, 115, 232, 0.3);
    --accent-color: #E50914;
    
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navbar */
.navbar {
    background-color: rgba(24, 23, 38, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-brand .logo {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.nav-brand .brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 3px;
    transition: all 0.3s;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 40px 20px 80px;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.intertwined-logos-hero {
    position: relative;
    width: 260px;
    height: 180px;
    flex-shrink: 0;
}

.i-logo-hero {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 4px solid var(--bg-dark);
    object-fit: cover;
}

.intertwined-logos-hero .logo-back {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    box-shadow: 0 0 25px rgba(26, 115, 232, 0.4);
}

.intertwined-logos-hero .logo-front {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    box-shadow: 0 0 25px rgba(229, 9, 20, 0.4);
}

.hero-content {
    text-align: left;
    max-width: 650px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 15px;
    font-weight: 500;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin: 0 auto 30px auto;
    max-width: 650px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: var(--glow-effect);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: rgba(26, 115, 232, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.hero-background-effects .glow-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(26, 115, 232, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}
.orb-1 { top: -50px; left: 10%; }
.orb-2 { bottom: -100px; right: 10%; }

/* Main Content & Grid */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-pill {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 8px 20px;
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-pill:hover, .filter-pill.active {
    background-color: rgba(26, 115, 232, 0.15);
    border-color: var(--primary-color);
    color: #fff;
}

/* Stream Sections */
.stream-section {
    margin-bottom: 60px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.section-header h2 {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-icon {
    color: #ff3b30;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 59, 48, 0.8);
    animation: pulse-text 2s infinite;
}

@keyframes pulse-text {
    0% { opacity: 0.8; text-shadow: 0 0 5px rgba(255, 59, 48, 0.5); }
    50% { opacity: 1; text-shadow: 0 0 15px rgba(255, 59, 48, 1); }
    100% { opacity: 0.8; text-shadow: 0 0 5px rgba(255, 59, 48, 0.5); }
}

/* Supporter Wall */
.supporter-wall {
    background-color: #2a1f3d;
    border-radius: 16px;
    padding: 20px;
    margin: 20px 0 40px 0;
    border: 1px solid rgba(26, 115, 232, 0.3);
}

.supporter-header {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    margin-bottom: 20px;
}

.supporter-header h3 {
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.supporter-dots {
    display: flex;
    gap: 8px;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: background-color 0.2s;
}

.nav-dot.active {
    background-color: var(--primary-color);
    box-shadow: 0 0 8px var(--primary-color);
}

.supporter-content {
    background-color: #1a1425;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 80px;
    position: relative;
}

.supporter-display {
    transition: opacity 0.5s ease;
    width: 100%;
}

.supporter-display.fade-out {
    opacity: 0;
}

.supporter-display.fade-in {
    opacity: 1;
}

.supporter-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.supporter-username {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.supporter-message {
    font-size: 1rem;
    color: var(--text-main);
    font-style: italic;
}

.stream-count {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.stream-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

/* Stream Card */
.stream-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
    display: flex;
    flex-direction: column;
}

.stream-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-effect);
    border-color: var(--primary-color);
    background-color: var(--card-hover-bg);
}

.card-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #000;
    overflow: hidden;
}

.card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.stream-card:hover .card-thumbnail img {
    transform: scale(1.05);
}

.card-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.badge-live {
    background-color: rgba(255, 59, 48, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 4px;
}

.badge-viewers {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.badge-upcoming {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-content {
    padding: 15px;
    display: flex;
    gap: 12px;
}

.channel-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    object-fit: cover;
    flex-shrink: 0;
}

.card-info {
    flex-grow: 1;
    overflow: hidden;
}

.stream-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

.channel-name {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.card-footer {
    padding: 0 15px 15px;
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.category-tag {
    font-size: 0.75rem;
    padding: 3px 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-muted);
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    margin-top: 40px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .intertwined-logos-hero {
        margin: 0 auto;
        transform: scale(0.8);
    }
    .hamburger-btn {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-dark);
        border-bottom: 1px solid var(--border-color);
        padding: 20px;
    }

    .nav-links.show {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .stream-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-pills {
        gap: 8px;
    }
    
    .filter-pill {
        padding: 6px 14px;
        font-size: 0.85rem;
    }
}
