:root {
    --primary-color: #ff0055; /* Zero Two Red/Pink */
    --secondary-color: #00f2ff; /* Cyan/Holographic */
    --bg-dark: #0a0a12; /* Deep Space Blue/Black */
    --bg-card: #151520;
    --text-light: #ffffff;
    --text-dim: #a0a0a0;
    --font-main: 'Rajdhani', sans-serif;
    --font-display: 'Orbitron', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Scanline Effect */
.scanline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.3) 51%);
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 999;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, #000 120%);
    pointer-events: none;
    z-index: 998;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 18, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 0, 85, 0.2);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--text-light);
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 10;
    max-width: 600px;
}

.glitch {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    position: relative;
    color: var(--text-light);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 var(--primary-color);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 var(--secondary-color);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(10px, 9999px, 30px, 0); }
    20% { clip: rect(80px, 9999px, 100px, 0); }
    40% { clip: rect(10px, 9999px, 50px, 0); }
    60% { clip: rect(60px, 9999px, 120px, 0); }
    80% { clip: rect(120px, 9999px, 140px, 0); }
    100% { clip: rect(30px, 9999px, 60px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(120px, 9999px, 140px, 0); }
    20% { clip: rect(10px, 9999px, 30px, 0); }
    40% { clip: rect(80px, 9999px, 100px, 0); }
    60% { clip: rect(30px, 9999px, 60px, 0); }
    80% { clip: rect(10px, 9999px, 50px, 0); }
    100% { clip: rect(60px, 9999px, 90px, 0); }
}

.subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin: 20px 0 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.btn-neon {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-family: var(--font-display);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    z-index: 1;
}

.btn-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: -1;
    transition: 0.5s;
}

.btn-neon:hover {
    color: var(--text-light);
    box-shadow: 0 0 20px var(--primary-color);
}

.btn-neon:hover::before {
    left: 0;
}

/* Hero Visual (Abstract) */
.hero-visual {
    position: relative;
    width: 400px;
    height: 400px;
}

.circle-outer {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
}

.circle-inner {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    border: 2px dashed var(--primary-color);
    border-radius: 50%;
    animation: rotate-reverse 15s linear infinite;
}

.horns-graphic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%); /* Simple shape, replace with image if needed */
    opacity: 0.5;
    filter: blur(20px);
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes rotate-reverse {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

/* About Section */
.about {
    padding: 100px 10%;
    background: var(--bg-dark);
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-light);
    text-transform: uppercase;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: var(--primary-color);
    margin: 10px auto 0;
    box-shadow: 0 0 10px var(--primary-color);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.about-card {
    background: var(--bg-card);
    padding: 40px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 0, 85, 0.2);
}

.about-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.about-card h3 {
    font-family: var(--font-display);
    margin-bottom: 15px;
    color: var(--text-light);
}

.about-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery {
    padding: 100px 10%;
    background: #0d0d16;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 300px;
    background-color: #222;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid transparent;
    transition: 0.3s;
}

/* Placeholders for gallery images using gradients */
.item-1 { background: linear-gradient(45deg, #ff0055, #222); }
.item-2 { background: linear-gradient(45deg, #00f2ff, #222); }
.item-3 { background: linear-gradient(45deg, #ff0055, #00f2ff); }
.item-4 { background: linear-gradient(45deg, #222, #ff0055); }

.gallery-item:hover {
    border-color: var(--secondary-color);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--secondary-color);
    font-family: var(--font-display);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--secondary-color);
    padding: 10px 20px;
}

/* Quote Section */
.quote-section {
    padding: 80px 10%;
    text-align: center;
    background: linear-gradient(to right, var(--bg-dark), #1a0009, var(--bg-dark));
}

blockquote {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
}

cite {
    color: var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Footer */
footer {
    padding: 40px 10%;
    background: #050508;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    color: var(--text-dim);
    font-size: 1.5rem;
    margin: 0 15px;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

footer p {
    color: var(--text-dim);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(10, 10, 18, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s;
        backdrop-filter: blur(10px);
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: block;
        color: var(--text-light);
    }

    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 100px;
    }

    .hero-content {
        margin-bottom: 50px;
    }

    .glitch {
        font-size: 3rem;
    }

    .hero-visual {
        width: 300px;
        height: 300px;
    }
}
