* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a0000 50%, #000000 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 0, 0, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    z-index: 2;
}

.logo {
    font-size: 4rem;
    font-weight: bold;
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 40px #ff0000;
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite alternate;
    font-family:Chiller
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 40px #ff0000;
    }

    to {
        text-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000, 0 0 20px #ff0000;
    }
}

.subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 2rem;
    font-weight: 300;
}

.nav {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.nav-toggle {
    background: rgba(255, 0, 0, 0.2);
    border: 2px solid #ff0000;
    color: #ff0000;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

    .nav-toggle:hover {
        background: rgba(255, 0, 0, 0.3);
        transform: scale(1.05);
    }

.nav-menu {
    position: absolute;
    top: 60px;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #ff0000;
    border-radius: 10px;
    padding: 20px;
    min-width: 200px;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

.nav-item {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 0, 0, 0.3);
    transition: color 0.3s ease;
}

    .nav-item:hover {
        color: #ff0000;
    }

    .nav-item:last-child {
        border-bottom: none;
    }

.channels-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.5);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.channel-card {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

    .channel-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, #ff0000, transparent, #ff0000);
        opacity: 0;
        transition: opacity 0.3s ease;
        border-radius: 15px;
        z-index: -1;
    }

    .channel-card:hover {
        transform: translateY(-10px);
        border-color: #ff0000;
        box-shadow: 0 20px 40px rgba(255, 0, 0, 0.3);
    }

        .channel-card:hover::before {
            opacity: 0.1;
        }

.channel-icon {
    font-size: 3rem;
    color: #ff0000;
    margin-bottom: 1rem;
}

.channel-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #ffffff;
}

.channel-description {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.channel-btn {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .channel-btn:hover {
        background: linear-gradient(45deg, #cc0000, #ff0000);
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
    }

.social-section {
    padding: 80px 0;
    background: rgba(255, 0, 0, 0.05);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.social-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .social-card:hover {
        border-color: #ff0000;
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(255, 0, 0, 0.2);
    }

.social-icon {
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 1rem;
}

footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 40px 0;
    text-align: center;
    border-top: 2px solid #ff0000;
}

.footer-content {
    color: #cccccc;
}

.footer-logo {
    color: #ff0000;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .channels-grid {
        grid-template-columns: 1fr;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #ff0000;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.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: #ff0000;
    border-radius: 50%;
    animation: float 6s infinite linear;
}

@keyframes float {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1);
    }
}
