:root {
    /* Psytrance Color Palette */
    --bg-dark: #050508;
    --bg-card: rgba(15, 15, 25, 0.4);

    /* Neon Accents */
    --neon-green: #39ff14;
    --neon-purple: #b026ff;
    --neon-blue: #0ff;
    --neon-pink: #ff00ff;

    /* Text Colors */
    --text-main: #f0f0f5;
    --text-muted: #a0a0b5;

    /* Gradients */
    --gradient-psy: linear-gradient(135deg, var(--neon-purple), var(--neon-blue), var(--neon-green));
    --gradient-glow: radial-gradient(circle at center, rgba(176, 38, 255, 0.15) 0%, rgba(5, 5, 8, 0) 70%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

::selection {
    background: var(--neon-purple);
    color: #fff;
}

/* Background Canvas */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
}

.glow-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--gradient-glow);
    z-index: -1;
    pointer-events: none;
}

/* Layout */
.container {
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    z-index: 1;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

/* Pseudo element for top border gradient */
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-psy);
    background-size: 200% auto;
    animation: gradientMove 3s linear infinite;
}

/* Typography */
.header {
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Logo Styles */
.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.dj-cat-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--neon-purple);
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.4), inset 0 0 10px rgba(176, 38, 255, 0.2);
    animation: floatLogo 4s ease-in-out infinite;
    z-index: 10;
}

@keyframes floatLogo {
    0% {
        transform: translateY(0px) rotate(0deg);
        box-shadow: 0 0 20px rgba(176, 38, 255, 0.4);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
        box-shadow: 0 0 35px rgba(57, 255, 20, 0.6);
        border-color: var(--neon-green);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
        box-shadow: 0 0 20px rgba(176, 38, 255, 0.4);
    }
}

/* Glitch Effect for Title */
.glitch-wrapper {
    position: relative;
    display: inline-block;
}

.glitch {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    letter-spacing: -2px;
    line-height: 1;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--neon-pink);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--neon-blue);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

.subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--neon-green);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 0.5rem;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

/* Content */
.content {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 2rem;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}

.description strong {
    color: #fff;
    font-weight: 600;
}

.highlight-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--neon-blue);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.6);
    letter-spacing: 0.5px;
}

/* Buttons */
.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.social-btn svg {
    width: 24px;
    height: 24px;
    z-index: 2;
    transition: transform 0.3s ease;
}

.social-btn span {
    z-index: 2;
}

/* Hover Effects with Neon Colors */
.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.social-btn:hover {
    transform: translateY(-5px);
    border-color: transparent;
}

.social-btn:hover svg {
    transform: scale(1.1);
}

/* Specific Brand Colors on Hover */
.social-btn.spotify:hover {
    box-shadow: 0 10px 20px -10px #1DB954, inset 0 0 20px rgba(29, 185, 84, 0.3);
    border-color: #1DB954;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.social-btn.spotify:hover svg {
    color: #1DB954;
}

.social-btn.youtube:hover {
    box-shadow: 0 10px 20px -10px #FF0000, inset 0 0 20px rgba(255, 0, 0, 0.3);
    border-color: #FF0000;
}

.social-btn.youtube:hover svg {
    color: #FF0000;
}

.social-btn.instagram:hover {
    box-shadow: 0 10px 20px -10px #E1306C, inset 0 0 20px rgba(225, 48, 108, 0.3);
    border-color: #E1306C;
}

.social-btn.instagram:hover svg {
    color: #E1306C;
}

.social-btn.tiktok:hover {
    border-color: #00f2fe;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.4), inset 0 0 10px rgba(0, 242, 254, 0.2);
}

.social-btn.whatsapp:hover {
    border-color: #25D366;
    color: #25D366;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4), inset 0 0 10px rgba(37, 211, 102, 0.2);
}

.social-btn.email:hover {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4), inset 0 0 10px rgba(0, 255, 255, 0.2);
}

.social-btn.tiktok:hover svg {
    filter: drop-shadow(2px 2px 0 #ff0050) drop-shadow(-2px -2px 0 #00f2fe);
}



/* Footer */
.footer {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    opacity: 0.7;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

/* Animations */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes glitch-anim {
    0% {
        clip: rect(74px, 9999px, 86px, 0);
    }

    5% {
        clip: rect(31px, 9999px, 60px, 0);
    }

    10% {
        clip: rect(69px, 9999px, 5px, 0);
    }

    15% {
        clip: rect(78px, 9999px, 63px, 0);
    }

    20% {
        clip: rect(25px, 9999px, 68px, 0);
    }

    25% {
        clip: rect(66px, 9999px, 15px, 0);
    }

    30% {
        clip: rect(6px, 9999px, 14px, 0);
    }

    35% {
        clip: rect(72px, 9999px, 49px, 0);
    }

    40% {
        clip: rect(98px, 9999px, 53px, 0);
    }

    45% {
        clip: rect(96px, 9999px, 86px, 0);
    }

    50% {
        clip: rect(4px, 9999px, 100px, 0);
    }

    55% {
        clip: rect(77px, 9999px, 5px, 0);
    }

    60% {
        clip: rect(100px, 9999px, 32px, 0);
    }

    65% {
        clip: rect(73px, 9999px, 78px, 0);
    }

    70% {
        clip: rect(9px, 9999px, 69px, 0);
    }

    75% {
        clip: rect(51px, 9999px, 6px, 0);
    }

    80% {
        clip: rect(54px, 9999px, 99px, 0);
    }

    85% {
        clip: rect(14px, 9999px, 51px, 0);
    }

    90% {
        clip: rect(90px, 9999px, 96px, 0);
    }

    95% {
        clip: rect(67px, 9999px, 18px, 0);
    }

    100% {
        clip: rect(2px, 9999px, 45px, 0);
    }
}

/* Media Queries */
@media (max-width: 600px) {
    .glass-card {
        padding: 2rem 1.5rem;
    }

    .subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .social-links {
        grid-template-columns: 1fr;
    }
}