:root {
    /* Color Palette */
    --bg-dark: #050508;
    --neon-green: #ff00ff;
    --neon-cyan: #00ffff;
    --neon-pink: #ff00ff;
    --deep-purple: #1a0b2e;
    --neon-purple: #b026ff;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    
    /* Glassmorphism */
    --glass-bg: rgba(16, 16, 24, 0.6);
    --glass-border: rgba(255, 0, 255, 0.2);
    --glass-glow: 0 0 20px rgba(255, 0, 255, 0.1);
    
    /* Fonts */
    --font-heading: 'Orbitron', sans-serif;
    --font-sub: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

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

/* Background Effects */
.stars, .twinkling {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.stars {
    background: #000 url('https://cdn.rawgit.com/danielstuart14/CSS_Fills/master/star-bg.svg') repeat;
    animation: move-stars 200s linear infinite;
}

.twinkling {
    background: transparent url('https://cdn.rawgit.com/danielstuart14/CSS_Fills/master/twinkling.png') repeat top center;
    animation: move-twink-back 200s linear infinite;
    opacity: 0.5;
}

@keyframes move-stars {
    from {background-position: 0 0;}
    to {background-position: -10000px 5000px;}
}
@keyframes move-twink-back {
    from {background-position: 0 0;}
    to {background-position: -10000px 5000px;}
}

.cyber-grid {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40vh;
    background-image: 
        linear-gradient(transparent 95%, rgba(255, 0, 255, 0.4) 100%),
        linear-gradient(90deg, transparent 95%, rgba(255, 0, 255, 0.4) 100%);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg);
    transform-origin: bottom;
    z-index: -1;
    animation: grid-move 5s linear infinite;
}

@keyframes grid-move {
    from { background-position: 0 0; }
    to { background-position: 0 50px; }
}

/* Typography & Utilities */
h1, h2, h3, .logo {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.highlight {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-glow);
    border-radius: 12px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    text-decoration: none;
    color: white;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

.nav-logo-img {
    max-height: 50px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(255, 0, 255, 0.6));
    transition: filter 0.3s ease;
}

.nav-logo-img:hover {
    filter: drop-shadow(0 0 15px rgba(255, 0, 255, 1));
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-family: var(--font-sub);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--neon-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-green);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--neon-green);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--neon-green);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-family: var(--font-sub);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    cursor: pointer;
}

.btn i {
    margin-right: 8px;
}

.primary-btn {
    background: var(--neon-green);
    color: #000;
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.4);
}

.primary-btn:hover {
    background: transparent;
    color: var(--neon-green);
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.8);
}

.secondary-btn {
    background: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.secondary-btn:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
}

.small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 20px 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero-content {
    flex: 1;
    z-index: 2;
    padding-right: 40px;
}

.badge {
    display: inline-block;
    background: rgba(255, 0, 0, 0.2);
    color: #ff3333;
    border: 1px solid #ff3333;
    padding: 4px 12px;
    border-radius: 20px;
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    animation: pulse-badge 2s infinite;
}

.glitch {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    position: relative;
    color: #fff;
}

/* Glitch Effect */
.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--neon-green);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--neon-cyan);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image-container {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    position: relative;
    filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.5));
}

.ufo-beam {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse at top, rgba(255, 0, 255, 0.3) 0%, transparent 70%);
    z-index: 1;
    opacity: 0.8;
    animation: pulse-beam 4s infinite alternate;
}

/* Socials Bar */
.socials-bar {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.social-card {
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-main);
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-card i {
    font-size: 1.8rem;
    z-index: 2;
}

.social-card span {
    z-index: 2;
}

.hover-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 1;
    opacity: 0;
}

.social-card:hover {
    transform: translateY(-5px);
}

.social-card:hover .hover-glow {
    width: 300px;
    height: 300px;
    opacity: 0.2;
}

.twitch:hover { border-color: #9146FF; box-shadow: 0 0 15px rgba(145, 70, 255, 0.5); }
.twitch .hover-glow { background: #9146FF; }
.twitch:hover i { color: #9146FF; }

.youtube:hover { border-color: #FF0000; box-shadow: 0 0 15px rgba(255, 0, 0, 0.5); }
.youtube .hover-glow { background: #FF0000; }
.youtube:hover i { color: #FF0000; }

.twitter:hover { border-color: #1DA1F2; box-shadow: 0 0 15px rgba(29, 161, 242, 0.5); }
.twitter .hover-glow { background: #1DA1F2; }
.twitter:hover i { color: #1DA1F2; }

.discord:hover { border-color: #5865F2; box-shadow: 0 0 15px rgba(88, 101, 242, 0.5); }
.discord .hover-glow { background: #5865F2; }
.discord:hover i { color: #5865F2; }

.tiktok:hover { border-color: #ff0050; box-shadow: 0 0 15px rgba(255, 0, 80, 0.5); }
.tiktok .hover-glow { background: #ff0050; }
.tiktok:hover i { color: #00f2fe; text-shadow: 2px 2px 0px #ff0050; }

.instagram:hover { border-color: #E1306C; box-shadow: 0 0 15px rgba(225, 48, 108, 0.5); }
.instagram .hover-glow { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.instagram:hover i { color: #fff; text-shadow: 0 0 5px #E1306C; }


/* Sections Common */
section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.neon-line {
    width: 100px;
    height: 4px;
    background: var(--neon-green);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--neon-green);
}

/* Latest Drop */
.video-container {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 40px;
}

.video-wrapper {
    flex: 2;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    aspect-ratio: 16 / 9;
}

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

.scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
    animation: scan 4s linear infinite;
    pointer-events: none;
}

.video-info {
    flex: 1;
}

.video-info h3 {
    font-size: 1.8rem;
    color: var(--neon-pink);
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(255, 0, 255, 0.5);
}

.video-info p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* About Section */
.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.avatar-container {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.avatar-img {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 2;
    border: 4px solid var(--neon-purple);
}

.avatar-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 2px dashed var(--neon-green);
    animation: spin 20s linear infinite;
    z-index: 1;
}

.about-text {
    flex: 1.5;
    padding: 40px;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--neon-purple);
    margin-bottom: 20px;
    text-shadow: 0 0 5px rgba(176, 38, 255, 0.5);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ddd;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--neon-green);
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--neon-green);
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-family: var(--font-sub);
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Resources Section */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.resource-card {
    padding: 30px;
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.2);
}

.icon-glow {
    font-size: 2.5rem;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.resource-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.resource-card ul {
    list-style: none;
}

.resource-card li {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.resource-card li span {
    font-family: var(--font-sub);
    color: var(--neon-green);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Footer */
footer {
    background: #050508;
    border-top: 1px solid rgba(255, 0, 255, 0.2);
    padding: 40px 20px;
    margin-top: 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo-img {
    max-height: 40px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(255, 0, 255, 0.4));
    transition: filter 0.3s ease;
}

.footer-logo-img:hover {
    filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.8));
}

/* Header & Footer Social Icons */
.nav-socials, .footer-socials {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon {
    color: var(--text-muted);
    font-size: 1.4rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.social-icon:hover {
    color: var(--neon-cyan);
    transform: translateY(-3px) scale(1.1);
    filter: drop-shadow(0 0 10px var(--neon-cyan));
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse-beam {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

@keyframes pulse-badge {
    0% { box-shadow: 0 0 0 0 rgba(255, 51, 51, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 51, 51, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 51, 51, 0); }
}

@keyframes pulse-icon {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

@keyframes glitch-anim {
    0% { clip: rect(44px, 9999px, 86px, 0); }
    5% { clip: rect(61px, 9999px, 87px, 0); }
    10% { clip: rect(78px, 9999px, 20px, 0); }
    15% { clip: rect(100px, 9999px, 81px, 0); }
    20% { clip: rect(4px, 9999px, 80px, 0); }
    25% { clip: rect(51px, 9999px, 84px, 0); }
    30% { clip: rect(21px, 9999px, 14px, 0); }
    35% { clip: rect(18px, 9999px, 8px, 0); }
    40% { clip: rect(2px, 9999px, 5px, 0); }
    45% { clip: rect(78px, 9999px, 52px, 0); }
    50% { clip: rect(31px, 9999px, 60px, 0); }
    55% { clip: rect(56px, 9999px, 1px, 0); }
    60% { clip: rect(32px, 9999px, 26px, 0); }
    65% { clip: rect(25px, 9999px, 91px, 0); }
    70% { clip: rect(98px, 9999px, 58px, 0); }
    75% { clip: rect(82px, 9999px, 47px, 0); }
    80% { clip: rect(44px, 9999px, 51px, 0); }
    85% { clip: rect(14px, 9999px, 32px, 0); }
    90% { clip: rect(5px, 9999px, 81px, 0); }
    95% { clip: rect(38px, 9999px, 2px, 0); }
    100% { clip: rect(13px, 9999px, 5px, 0); }
}

@keyframes scan {
    0% { top: 0; }
    50% { top: 100%; }
    100% { top: 0; }
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero { flex-direction: column; text-align: center; padding-top: 150px; }
    .hero-content { padding-right: 0; margin-bottom: 50px; }
    .hero-buttons { justify-content: center; }
    .glitch { font-size: 3rem; }
    .subtitle { margin: 0 auto 40px; }
    
    .social-grid { grid-template-columns: repeat(2, 1fr); }
    
    .video-container { flex-direction: column; padding: 20px; }
    
    .about-content { flex-direction: column; text-align: center; }
    .stats-grid { max-width: 400px; margin: 0 auto; }
    
    .resources-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-right { display: none; }
    .mobile-toggle { display: block; }
    
    .resources-grid { grid-template-columns: 1fr; }
    .social-grid { grid-template-columns: 1fr; }
    
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
    
    .avatar-img { width: 250px; height: 250px; }
    .avatar-ring { width: 280px; height: 280px; }
}
