/*
// ALL CODE IN THIS FILE IS ORIGINAL AND CREATED BY ME, DISLOPIK. ANY SIMILARITY TO OTHER CODE IS PURELY COINCIDENTAL.
// COPYRIGHT (C) 2026 DISLOPIK. ALL RIGHTS RESERVED.
// ________  ___  ________  ___       ________  ________  ___  ___  __       
//|\   ___ \|\  \|\   ____\|\  \     |\   __  \|\   __  \|\  \|\  \|\  \     
//\ \  \_|\ \ \  \ \  \___|\ \  \    \ \  \|\  \ \  \|\  \ \  \ \  \/  /|_   
// \ \  \ \\ \ \  \ \_____  \ \  \    \ \  \\\  \ \   ____\ \  \ \   ___  \  
//  \ \  \_\\ \ \  \|____|\  \ \  \____\ \  \\\  \ \  \___|\ \  \ \  \\ \  \ 
//   \ \_______\ \__\____\_\  \ \_______\ \_______\ \__\    \ \__\ \__\\ \__\
//    \|_______|\|__|\_________\|_______|\|_______|\|__|     \|__|\|__| \|__|
//                   |_________|
*/

/* =====================
   GLOBAL STYLES
   ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff0000;
    --secondary-color: #1a1a1a;
    --text-color: #ffffff;
    --light-bg: #1a1a1a;
    --white: #ffffff;
    --bg-color: #1a1a1a;
    --card-bg: #2a2a2a;
    --border-color: #495057;
    --shadow-color: rgba(0,0,0,0.3);
    --padding: 20px;
    --transition: all 0.3s ease;
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--bg-color, #1a1a1a);
    transition: background-color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--padding);
}

/* =====================
   NAVIGATION
   ===================== */
.navbar {
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.cta-btn {
    background: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    color: var(--white);
}

.nav-link.cta-btn:hover {
    background: #cc0000;
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: var(--white);
    padding: 100px var(--padding);
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: slideInDown 0.8s ease;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: slideInUp 0.8s ease 0.2s both;
}

.hero-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: var(--transition);
    animation: slideInUp 0.8s ease 0.4s both;
}

.hero-btn:hover {
    background: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(255,0,0,0.3);
}

/* =====================
   FEATURED VIDEOS
   ===================== */
.featured {
    padding: 80px var(--padding);
    background: var(--white);
}

.featured h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--secondary-color);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    background: var(--light-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.video-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: white;
    font-size: 1.3rem;
}

.video-card p {
    padding: 0 1.5rem 1.5rem;
    color: #ffffff;
    font-size: 0.95rem;
}

/* =====================
   ABOUT SECTION
   ===================== */
.about {
    background: var(--light-bg);
    padding: 80px var(--padding);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.about-text p {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.stat h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-number {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
}

/* =====================
   CTA SECTION
   ===================== */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #cc0000 100%);
    color: var(--white);
    padding: 80px var(--padding);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: var(--transition);
}

.cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* =====================
   FOOTER
   ===================== */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem var(--padding) 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section p {
    opacity: 0.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.8;
}

.footer-section a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

/* =====================
   ANIMATIONS
   ===================== */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================
   RESPONSIVE DESIGN
   ===================== */
@media (max-width: 768px) {
    :root {
        --padding: 15px;
    }

    /* Navigation */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: var(--secondary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
    }

    .nav-link.cta-btn {
        margin: 1rem 0;
    }

    /* Hero Section */
    .hero {
        padding: 60px var(--padding);
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    /* Featured Section */
    .featured {
        padding: 50px var(--padding);
    }

    .featured h2 {
        font-size: 2rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* About Section */
    .about {
        padding: 50px var(--padding);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    /* CTA Section */
    .cta {
        padding: 50px var(--padding);
    }

    .cta h2 {
        font-size: 2rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --padding: 12px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .featured h2 {
        font-size: 1.5rem;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }

    .cta h2 {
        font-size: 1.5rem;
    }

    .cta p {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-btn,
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}
