@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;600;700&display=swap');

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

:root {
    --primary-black: #000000;
    --secondary-black: #0a0a0a;
    --dark-gray: #151515;
    --medium-gray: #1a1a1a;
    --accent-red: #ff0000;
    --accent-gold: #ffd700;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
}

body {
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background: var(--primary-black);
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-black);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-red);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    padding: 0.8rem 0;
    z-index: 1000;
    border-bottom: 2px solid var(--accent-red);
    box-shadow: 0 5px 30px rgba(255, 0, 0, 0.3);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(45deg, var(--accent-red), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s;
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.3));
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.8));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: width 0.3s;
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-red);
}

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

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--accent-red);
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)), 
                url('https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 6rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--accent-red), var(--accent-gold), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 8px;
}

.hero .bio {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-gray);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero .cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--accent-red);
    color: var(--text-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--accent-red);
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.hero .cta-button:hover {
    background: transparent;
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.8);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--accent-red);
    font-size: 3rem;
    text-decoration: none;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
}

/* About */
.about {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--secondary-black);
}

.about h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    margin-bottom: 4rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 6px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    line-height: 2;
    color: var(--text-gray);
}

.about-image img {
    max-width: 75%;
    border-radius: 20px;
    border: 3px solid var(--accent-red);
    transition: all 0.3s;
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.4);
}

.about-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(255, 215, 0, 0.6);
}

/* Contact */
.contact {
    background: var(--dark-gray);
    padding: 8rem 3rem;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    margin-bottom: 4rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 6px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.info-card {
    background: var(--medium-gray);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

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

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.4);
}

.info-card h3 {
    margin-bottom: 1.5rem;
    color: var(--accent-red);
    font-size: 1.8rem;
    text-transform: uppercase;
}

.info-card p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.social-links a {
    width: 65px;
    height: 65px;
    background: var(--medium-gray);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.8rem;
    border: 2px solid var(--accent-red);
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.social-links a:hover {
    background: var(--accent-red);
    transform: translateY(-10px) rotate(360deg);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.6);
}

/* Pages */
.page-header {
    height: 40vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)), 
                url('https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    border-bottom: 3px solid var(--accent-red);
}

.page-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 8px;
    background: linear-gradient(45deg, var(--accent-red), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.videos, .gallery {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--secondary-black);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.video-item {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 15px;
    border: 3px solid var(--accent-red);
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.3);
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.6);
}

.video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    border-radius: 15px;
    border: 3px solid var(--accent-red);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.5);
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.2) rotate(2deg);
}

/* Footer */
footer {
    background: var(--primary-black);
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    border-top: 3px solid var(--accent-red);
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    position: relative;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: width 0.3s;
}

.footer-nav a:hover {
    color: var(--accent-red);
}

.footer-nav a:hover::after {
    width: 100%;
}

footer .social-links {
    margin-bottom: 1.5rem;
}

footer p {
    font-size: 1rem;
    color: var(--text-gray);
}

/* Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: right 0.4s;
        border-left: 3px solid var(--accent-red);
    }

    .nav-links.active {
        right: 0;
    }

    nav {
        padding: 0 2rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero .bio {
        font-size: 1.3rem;
    }

    .about h2, .contact h2 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.1rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero .bio {
        font-size: 1.1rem;
    }

    .about h2, .contact h2 {
        font-size: 2rem;
    }
}