* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon-green: #00ff41;
    --neon-pink: #ff006e;
    --neon-blue: #00f3ff;
    --neon-purple: #8b00ff;
    --neon-yellow: #ffdd00;
    --dark: #000000;
    --darker: #0a0a0a;
    --light: #ffffff;
}

body {
    font-family: 'Arial Black', sans-serif;
    background: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    cursor: none;
    position: relative;
}

/* Matrix Rain Background */
#matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.1;
}

/* Custom Cursor with Trail */
.cursor {
    width: 30px;
    height: 30px;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transition: transform 0.1s;
}

.cursor::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, var(--neon-green) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: cursor-pulse 1s infinite;
}

@keyframes cursor-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.5); }
}

.cursor-trail {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--neon-green);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    z-index: 9999;
    animation: trail-fade 1s ease-out;
}

@keyframes trail-fade {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0); }
}

/* Animated Geometric Background */
.geometric-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.geo-shape {
    position: absolute;
    border: 2px solid;
    opacity: 0.1;
    animation: morph 20s infinite ease-in-out;
}

.geo-shape:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    border-color: var(--neon-green);
    animation-delay: 0s;
}

.geo-shape:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 20%;
    border-color: var(--neon-pink);
    animation-delay: 5s;
}

.geo-shape:nth-child(3) {
    width: 400px;
    height: 400px;
    bottom: 10%;
    left: 30%;
    border-color: var(--neon-blue);
    animation-delay: 10s;
}

@keyframes morph {
    0%, 100% { 
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg) scale(1);
    }
    25% { 
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
        transform: rotate(90deg) scale(1.1);
    }
    50% { 
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        transform: rotate(180deg) scale(0.9);
    }
    75% { 
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
        transform: rotate(270deg) scale(1.05);
    }
}

/* Header with Liquid Effect */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    position: sticky;
}

.logo-wrapper {
    display: inline-block;
    position: relative;
}

.logo-3d {
    font-size: 3rem;
    font-weight: 900;
    /* letter-spacing: 2px; */
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    color: transparent;
    -webkit-text-stroke: 1px var(--neon-green);
    /* animation: logo-flicker 2s linear infinite, logo-3d-rotate 10s linear infinite; */
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* @keyframes logo-3d-rotate {
    0% { transform: rotateY(0deg) rotateX(0deg); }
    25% { transform: rotateY(90deg) rotateX(10deg); }
    50% { transform: rotateY(180deg) rotateX(-10deg); }
    75% { transform: rotateY(270deg) rotateX(10deg); }
    100% { transform: rotateY(360deg) rotateX(0deg); }
} */

.logo-3d::before,
.logo-3d::after {
    content: 'PCNERD';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* .logo-3d::before {
    color: var(--neon-pink);
    animation: logo-glitch-1 0.3s infinite;
}

.logo-3d::after {
    color: var(--neon-blue);
    animation: logo-glitch-2 0.3s infinite reverse;
}

@keyframes logo-flicker {
    0%, 100% { opacity: 1; }
    92% { opacity: 1; }
    93% { opacity: 0.8; }
    94% { opacity: 1; }
    95% { opacity: 0.6; }
    96% { opacity: 1; }
} */

@keyframes logo-glitch-1 {
    0%, 100% { 
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        transform: translate(0);
    }
    20% { 
        clip-path: polygon(0 15%, 100% 15%, 100% 30%, 0 30%);
        transform: translate(-5px, 2px);
    }
    40% { 
        clip-path: polygon(0 45%, 100% 45%, 100% 65%, 0 65%);
        transform: translate(5px, -2px);
    }
    60% { 
        clip-path: polygon(0 70%, 100% 70%, 100% 85%, 0 85%);
        transform: translate(-3px, 1px);
    }
    80% { 
        clip-path: polygon(0 10%, 100% 10%, 100% 40%, 0 40%);
        transform: translate(3px, -1px);
    }
}

@keyframes logo-glitch-2 {
    0%, 100% { 
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        transform: translate(0);
    }
    20% { 
        clip-path: polygon(0 25%, 100% 25%, 100% 50%, 0 50%);
        transform: translate(2px, -5px);
    }
    40% { 
        clip-path: polygon(0 55%, 100% 55%, 100% 75%, 0 75%);
        transform: translate(-2px, 5px);
    }
    60% { 
        clip-path: polygon(0 5%, 100% 5%, 100% 25%, 0 25%);
        transform: translate(1px, -3px);
    }
    80% { 
        clip-path: polygon(0 80%, 100% 80%, 100% 95%, 0 95%);
        transform: translate(-1px, 3px);
    }
}

/* Hero Section with 3D Text */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 20px;
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

.hero-title {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
    animation: title-appear 1s ease-out;
}

@keyframes title-appear {
    from {
        opacity: 0;
        transform: translateY(100px) rotateX(90deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.hero-title span {
    display: block;
    position: relative;
}

.hero-title .line1 {
    background: linear-gradient(45deg, var(--neon-green), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px var(--neon-green));
    animation: neon-pulse 2s ease-in-out infinite;
}

.hero-title .line2 {
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px var(--neon-pink));
    animation: neon-pulse 2s ease-in-out infinite reverse;
}

@keyframes neon-pulse {
    0%, 100% {
        filter: drop-shadow(0 0 30px currentColor) brightness(1);
    }
    50% {
        filter: drop-shadow(0 0 60px currentColor) brightness(1.2);
    }
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 50px;
    opacity: 0;
    animation: fade-in-up 1s ease-out 0.5s forwards;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

@keyframes fade-in-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(30px);
    }
}

/* Holographic Button */
.holo-button {
    display: inline-block;
    padding: 20px 60px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--light);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    animation: button-appear 1s ease-out 0.8s both;
}

@keyframes button-appear {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.holo-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        var(--neon-green) 0%, 
        var(--neon-blue) 25%, 
        var(--neon-pink) 50%, 
        var(--neon-purple) 75%, 
        var(--neon-green) 100%);
    background-size: 400% 400%;
    animation: gradient-shift 3s ease infinite;
    z-index: -2;
}

.holo-button::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--dark);
    z-index: -1;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.holo-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 255, 65, 0.5);
}

.holo-button:hover::before {
    filter: blur(10px);
}

/* Floating 3D Icons */
.floating-icons {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.icon-3d {
    position: absolute;
    font-size: 4rem;
    opacity: 0.6;
    filter: drop-shadow(0 0 20px currentColor);
    animation: float-rotate 20s infinite ease-in-out;
}

.icon-3d:nth-child(1) { 
    top: 10%; 
    left: 5%; 
    color: var(--neon-green);
    animation-delay: 0s;
}
.icon-3d:nth-child(2) { 
    top: 15%; 
    right: 10%; 
    color: var(--neon-pink);
    animation-delay: 3s;
}
.icon-3d:nth-child(3) { 
    bottom: 20%; 
    left: 10%; 
    color: var(--neon-blue);
    animation-delay: 6s;
}
.icon-3d:nth-child(4) { 
    bottom: 15%; 
    right: 5%; 
    color: var(--neon-purple);
    animation-delay: 9s;
}
.icon-3d:nth-child(5) { 
    top: 40%; 
    left: 15%; 
    color: var(--neon-yellow);
    animation-delay: 12s;
}
.icon-3d:nth-child(6) { 
    top: 50%; 
    right: 20%; 
    color: var(--neon-green);
    animation-delay: 15s;
}
.icon-3d:nth-child(7) { 
    bottom: 40%; 
    left: 25%; 
    color: var(--neon-pink);
    animation-delay: 18s;
}
.icon-3d:nth-child(8) { 
    bottom: 35%; 
    right: 15%; 
    color: var(--neon-blue);
    animation-delay: 21s;
}

@keyframes float-rotate {
    0%, 100% {
        transform: translateY(0) rotateX(0) rotateY(0) scale(1);
    }
    25% {
        transform: translateY(-30px) rotateX(180deg) rotateY(90deg) scale(1.1);
    }
    50% {
        transform: translateY(30px) rotateX(360deg) rotateY(180deg) scale(0.9);
    }
    75% {
        transform: translateY(-20px) rotateX(180deg) rotateY(270deg) scale(1.05);
    }
}

/* Coming Soon Section */
.coming-soon {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.coming-soon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(0, 255, 65, 0.1) 0%, 
        transparent 40%);
    transform: translate(-50%, -50%);
    animation: pulse-expand 4s ease-in-out infinite;
}

@keyframes pulse-expand {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

.coming-soon-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.coming-soon h2 {
    font-size: 4rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    background: linear-gradient(90deg, 
        var(--neon-green), 
        var(--neon-blue), 
        var(--neon-pink), 
        var(--neon-purple));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-flow 3s linear infinite;
}

@keyframes gradient-flow {
    to {
        background-position: 200% center;
    }
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    min-width: 120px;
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--neon-green), 
        var(--neon-blue), 
        var(--neon-pink), 
        var(--neon-purple));
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s;
}

.countdown-item:hover::before {
    opacity: 1;
    animation: border-rotate 2s linear infinite;
}

@keyframes border-rotate {
    to {
        transform: rotate(360deg);
    }
}

.countdown-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--neon-green);
    text-shadow: 0 0 20px currentColor;
    display: block;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 10px;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 20px;
    max-width: 600px;
    margin: 50px auto 0;
    position: relative;
}

.form-input-wrapper {
    flex: 1;
    position: relative;
}

.form-input {
    width: 100%;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--light);
    font-size: 1.1rem;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--neon-green);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.3);
}

.form-input:focus + .input-glow {
    opacity: 1;
}

.input-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, 
        rgba(0, 255, 65, 0.3) 0%, 
        transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.submit-button {
    padding: 20px 50px;
    background: linear-gradient(45deg, var(--neon-green), var(--neon-blue));
    border: none;
    border-radius: 50px;
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-button:hover::before {
    width: 400px;
    height: 400px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 255, 65, 0.4);
}

/* Categories Grid */
.categories {
    padding: 100px 50px;
    position: relative;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0, 255, 65, 0.02) 50%, 
        transparent 100%);
}

.categories h2 {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 80px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    width: 100%;
}

.categories h2::before {
    content: 'CATEGORIES';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.categories h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--neon-green), 
        transparent);
    animation: line-scan 2s ease-in-out infinite;
}

@keyframes line-scan {
    0%, 100% {
        transform: translateX(-50%) scaleX(0);
        opacity: 0;
    }
    50% {
        transform: translateX(-50%) scaleX(1);
        opacity: 1;
    }
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.category-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s;
    transform-style: preserve-3d;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        transparent 40%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 60%);
    transform: translateX(-100%) translateY(-100%);
    transition: transform 0.6s;
}

.category-card:hover::before {
    transform: translateX(100%) translateY(100%);
}

.category-card:hover {
    transform: translateY(-10px) rotateX(-10deg);
    border-color: var(--neon-green);
    box-shadow: 
        0 30px 60px rgba(0, 255, 65, 0.3),
        inset 0 0 30px rgba(0, 255, 65, 0.1);
}

.category-card:nth-child(even):hover {
    border-color: var(--neon-pink);
    box-shadow: 
        0 30px 60px rgba(255, 0, 110, 0.3),
        inset 0 0 30px rgba(255, 0, 110, 0.1);
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: icon-float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px currentColor);
}

.category-card:nth-child(1) .category-icon { 
    color: var(--neon-green); 
    animation-delay: 0s; 
}
.category-card:nth-child(2) .category-icon { 
    color: var(--neon-pink); 
    animation-delay: 0.2s; 
}
.category-card:nth-child(3) .category-icon { 
    color: var(--neon-blue); 
    animation-delay: 0.4s; 
}
.category-card:nth-child(4) .category-icon { 
    color: var(--neon-purple); 
    animation-delay: 0.6s; 
}
.category-card:nth-child(5) .category-icon { 
    color: var(--neon-yellow); 
    animation-delay: 0.8s; 
}
.category-card:nth-child(6) .category-icon { 
    color: var(--neon-green); 
    animation-delay: 1s; 
}
.category-card:nth-child(7) .category-icon { 
    color: var(--neon-pink); 
    animation-delay: 1.2s; 
}
.category-card:nth-child(8) .category-icon { 
    color: var(--neon-blue); 
    animation-delay: 1.4s; 
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(5deg); }
    75% { transform: translateY(5px) rotate(-5deg); }
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.category-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Stats Section */
.stats-section {
    padding: 100px 20px;
    background: radial-gradient(ellipse at center, 
        rgba(0, 255, 65, 0.05) 0%, 
        transparent 70%);
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--neon-green), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px currentColor);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Footer */
footer {
    background: linear-gradient(to bottom, 
        transparent, 
        rgba(0, 0, 0, 0.9));
    padding: 80px 20px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.social-link {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--light);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: var(--neon-green);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.3s;
    z-index: -1;
}

.social-link:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.social-link:hover {
    color: var(--dark);
    border-color: var(--neon-green);
    transform: translateY(-5px) rotate(360deg);
}

/* Responsive */
@media (max-width: 1200px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        padding: 20px 20px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }
    
    .logo-3d {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .categories {
        padding: 50px 20px;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .floating-icons {
        display: none;
    }

    .power-meter {
        position: static;
        transform: none;
        max-width: 50%;
        max-height: 80%;
        margin-left: 70px;
        margin-bottom: 10px;
    }
}

/* Loading Screen */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-text {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 10px;
    background: linear-gradient(90deg, 
        var(--neon-green) 0%, 
        var(--neon-blue) 25%, 
        var(--neon-pink) 50%, 
        var(--neon-purple) 75%, 
        var(--neon-green) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: loader-text 2s linear infinite;
}

@keyframes loader-text {
    to {
        background-position: 200% center;
    }
}

.loader-bar {
    width: 300px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin: 30px auto;
    overflow: hidden;
    position: relative;
}

.loader-progress {
    height: 100%;
    background: linear-gradient(90deg, 
        var(--neon-green), 
        var(--neon-blue), 
        var(--neon-pink));
    border-radius: 3px;
    animation: loading-progress 2s ease-in-out infinite;
}

@keyframes loading-progress {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(400%);
    }
}

/* Glitch text effect */
.glitch {
    position: relative;
    color: var(--light);
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.3s infinite;
    color: var(--neon-green);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.3s infinite reverse;
    color: var(--neon-pink);
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
    }
    20% {
        clip-path: inset(20% 0 60% 0);
        transform: translate(-5px, 10px);
    }
    40% {
        clip-path: inset(50% 0 20% 0);
        transform: translate(5px, -10px);
    }
    60% {
        clip-path: inset(10% 0 80% 0);
        transform: translate(5px, 5px);
    }
    80% {
        clip-path: inset(80% 0 5% 0);
        transform: translate(-5px, 0);
    }
}

@keyframes glitch-2 {
    0%, 100% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
    }
    20% {
        clip-path: inset(60% 0 20% 0);
        transform: translate(5px, -5px);
    }
    40% {
        clip-path: inset(10% 0 70% 0);
        transform: translate(-5px, 5px);
    }
    60% {
        clip-path: inset(40% 0 40% 0);
        transform: translate(-5px, -5px);
    }
    80% {
        clip-path: inset(5% 0 85% 0);
        transform: translate(5px, 10px);
    }
}

/* Audio visualizer bars */
.audio-visualizer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    z-index: 100;
    pointer-events: none;
    opacity: 0.3;
}

/* System Monitor */
.system-monitor {
    position: fixed;
    top: 100px;
    right: 20px;
    width: 200px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid var(--neon-green);
    border-radius: 10px;
    padding: 15px;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    z-index: 999;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s;
}

.system-monitor.active {
    opacity: 1;
    transform: translateX(0);
}

.system-monitor h4 {
    color: var(--neon-green);
    margin-bottom: 10px;
    font-size: 0.9rem;
    text-align: center;
}

.monitor-item {
    display: flex;
    justify-content: space-between;
    margin: 5px 0;
    color: #0f0;
}

.monitor-value {
    font-weight: bold;
}

/* Secret Terminal */
.secret-terminal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 90%;
    max-width: 800px;
    height: 500px;
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid var(--neon-green);
    border-radius: 10px;
    z-index: 10001;
    opacity: 0;
    transition: all 0.3s;
    display: none;
}

.secret-terminal.active {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.terminal-header {
    background: var(--neon-green);
    color: var(--dark);
    padding: 10px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.terminal-close {
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0 10px;
}

.terminal-body {
    height: calc(100% - 40px);
    overflow-y: auto;
    padding: 20px;
    font-family: 'Courier New', monospace;
    color: var(--neon-green);
}

.terminal-line {
    margin: 10px 0;
    animation: type-line 0.5s steps(30);
}

@keyframes type-line {
    from { width: 0; }
    to { width: 100%; }
}

.terminal-input {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.terminal-prompt {
    color: var(--neon-green);
    margin-right: 10px;
}

.terminal-input-field {
    background: transparent;
    border: none;
    color: var(--neon-green);
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    flex: 1;
    outline: none;
}

.terminal-cursor {
    display: inline-block;
    width: 10px;
    height: 20px;
    background: var(--neon-green);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Konami Code Hint */
.konami-hint {
    position: fixed;
    bottom: 10px;
    left: 10px;
    color: rgba(0, 255, 65, 0.3);
    font-size: 0.8rem;
    font-family: 'Courier New', monospace;
    opacity: 0;
    transition: opacity 0.3s;
}

.konami-hint:hover {
    opacity: 1;
}

/* Power Level Meter */
.power-meter {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid var(--neon-green);
    border-radius: 10px;
    padding: 8px;
    z-index: 1001;
    font-family: 'Courier New', monospace;
}

.power-meter h5 {
    color: var(--neon-green);
    margin-bottom: 5px;
    text-align: center;
    font-size: 0.7rem;
}

.power-bar {
    width: 100%;
    height: 12px;
    background: rgba(0, 255, 65, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.power-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-yellow), var(--neon-pink));
    width: 0%;
    transition: width 0.3s;
    box-shadow: 0 0 10px currentColor;
}

.power-value {
    text-align: center;
    margin-top: 5px;
    color: var(--neon-green);
    font-weight: bold;
    font-size: 0.9rem;
    text-shadow: 0 0 5px currentColor;
}

/* Random Glitch Attack */
.glitch-attack {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
}

.glitch-attack.active {
    animation: glitch-attack-anim 0.3s;
}

@keyframes glitch-attack-anim {
    0%, 100% { 
        opacity: 0;
        filter: none;
    }
    10% { 
        opacity: 1;
        filter: hue-rotate(90deg) saturate(5);
        transform: translateX(-5px);
    }
    20% { 
        opacity: 1;
        filter: hue-rotate(180deg) saturate(5);
        transform: translateX(5px) scaleY(1.1);
    }
    30% { 
        opacity: 1;
        filter: hue-rotate(270deg) saturate(5);
        transform: translateY(-5px);
    }
    40% { 
        opacity: 1;
        filter: invert(1);
        transform: translateY(5px) scaleX(1.1);
    }
}

/* Floating Icons Update */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.audio-bar {
    width: 5px;
    background: linear-gradient(to top, var(--neon-green), var(--neon-blue));
    animation: audio-wave 1s ease-in-out infinite;
}

.audio-bar:nth-child(1) { animation-delay: 0s; height: 40%; }
.audio-bar:nth-child(2) { animation-delay: 0.1s; height: 60%; }
.audio-bar:nth-child(3) { animation-delay: 0.2s; height: 80%; }
.audio-bar:nth-child(4) { animation-delay: 0.3s; height: 100%; }
.audio-bar:nth-child(5) { animation-delay: 0.4s; height: 80%; }
.audio-bar:nth-child(6) { animation-delay: 0.5s; height: 60%; }
.audio-bar:nth-child(7) { animation-delay: 0.6s; height: 40%; }
.audio-bar:nth-child(8) { animation-delay: 0.7s; height: 20%; }
.audio-bar:nth-child(9) { animation-delay: 0.8s; height: 40%; }
.audio-bar:nth-child(10) { animation-delay: 0.9s; height: 60%; }

@keyframes audio-wave {
    0%, 100% {
        transform: scaleY(0.5);
    }
    50% {
        transform: scaleY(1);
    }
}