:root {
    /* Colors */
    --bg-dark: #050505;
    --bg-card: rgba(20, 20, 20, 0.6);
    --neon-purple: #bd00ff;
    --neon-blue: #00f3ff;
    --neon-pink: #ff0055;
    --text-main: #ffffff;
    --text-muted: #888888;

    /* Effects */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: 12px;
    --glow-spread: 20px;

    /* Font */
    --font-main: 'Outfit', sans-serif;
}

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

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

/* Custom Selection */
::selection {
    background: var(--neon-purple);
    cursor: none;
}



/* Cursor Glow Effect */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(189, 0, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    mix-blend-mode: screen;
    display: none;
    /* Enabled via JS usually, or pure CSS hover */
}

/* Navigation - Floating Left Desktop / Bottom Mobile */
.glass-nav {
    position: fixed;
    z-index: 1000;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

/* Desktop Styles */
@media (min-width: 769px) {
    .glass-nav {
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 80px;
        border-radius: 40px;
        padding: 40px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: auto;
        min-height: 400px;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        list-style: none;
        width: 100%;
        align-items: center;
    }

    .nav-links a {
        color: var(--text-muted);
        text-decoration: none;
        transition: 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }

    .nav-links a svg {
        width: 24px;
        height: 24px;
        transition: 0.3s;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--neon-blue);
        background: rgba(0, 243, 255, 0.1);
        box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
    }

    .nav-links a:hover svg,
    .nav-links a.active svg {
        filter: drop-shadow(0 0 5px var(--neon-blue));
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .glass-nav {
        bottom: 20px;
        left: 20px;
        right: 20px;
        height: 70px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: space-around;
        padding: 0 20px;
    }

    .logo {
        display: none;
        /* Hide logo in bottom nav to save space */
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        width: 100%;
        justify-content: space-around;
        list-style: none;
    }

    .nav-links a {
        color: var(--text-muted);
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 700;
    }

    .nav-links a.active {
        color: var(--neon-purple);
    }
}

/* Main Layout */
main {
    padding-left: 120px;
    /* Offset for desktop nav */
    padding-right: 20px;
    padding-top: 50px;
    padding-bottom: 100px;
    /* Space for mobile nav */
    max-width: 1600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    main {
        padding-left: 20px;
        padding-bottom: 120px;
    }
}

/* Hero Section */
.hero-section {
    height: auto;
    padding-top: 40px;
    /* Reduced specific padding */
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.hero-title {
    font-size: 8rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px var(--text-main);
    position: relative;
    line-height: 1;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    letter-spacing: 5px;
    color: var(--neon-purple);
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 0 0 10px var(--neon-purple);
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.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: -1px 0 var(--neon-pink);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

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

@keyframes glitch-anim {
    0% {
        clip: rect(117px, 9999px, 8px, 0);
    }

    5% {
        clip: rect(2px, 9999px, 8px, 0);
    }

    10% {
        clip: rect(48px, 9999px, 137px, 0);
    }

    15% {
        clip: rect(106px, 9999px, 91px, 0);
    }

    20% {
        clip: rect(51px, 9999px, 7px, 0);
    }

    /* ... shortened for brevity, usually has more steps ... */
    100% {
        clip: rect(27px, 9999px, 126px, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(65px, 9999px, 100px, 0);
    }

    100% {
        clip: rect(4px, 9999px, 81px, 0);
    }
}

/* Bento Grid */
.bento-section {
    margin-top: 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    grid-auto-rows: 250px;
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-purple);
    box-shadow: 0 10px 30px rgba(189, 0, 255, 0.2);
}

.card-large {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(45deg, rgba(189, 0, 255, 0.2), rgba(0, 0, 0, 0));
}

.card-medium {
    grid-column: span 2;
}

.card-small {
    grid-column: span 1;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-large {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .bento-grid {
        display: flex;
        flex-direction: column;
    }

    .hero-title {
        font-size: 4rem;
    }
}

/* Bento Card Specifics */

.card-release .card-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #140024 0%, #3e0055 100%);
    z-index: 0;
}

.card-release .card-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.card-release iframe {
    display: block;
    width: 100%;
    min-height: 152px;
    /* Standard Spotify Compact Height */
    border-radius: 20px;
    /* Match card radius */
}

@media (max-width: 600px) {
    .card-release {
        height: auto !important;
        min-height: 152px;
        aspect-ratio: auto;
    }

    .card-release iframe {
        height: 152px;
    }
}

.card-release::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="0" y="0" width="100" height="100" fill="transparent"/><path d="M0 100 L100 0" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.card-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.tag {
    background: var(--neon-pink);
    color: #fff;
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 15px;
}

.btn-listen {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
    background: rgba(0, 243, 255, 0.05);
}

.btn-listen:hover {
    background: var(--neon-blue);
    color: #000;
    box-shadow: 0 0 15px var(--neon-blue);
}

/* Platform Icons */
.platform-icon {
    width: 60px;
    /* Adjust size as needed */
    height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 12px;
}

/* Spotify Card */
/* Spotify Card */
.card-spotify {
    text-decoration: none;
}

.card-spotify h2 {
    font-size: 2.5rem;
    color: #1DF26E;
    /* Bright Spotify Green */
    margin-bottom: 0;
}

.card-spotify p {
    color: #fff;
    letter-spacing: 1px;
    font-weight: 700;
}

.card-spotify .equalizer span {
    background: #1DF26E;
}

/* YouTube Music Card */
.card-ytmusic {
    text-decoration: none;
    /* Since it's an anchor now */
}

.card-ytmusic h2 {
    font-size: 2.5rem;
    color: #FF0000;
    /* YouTube Red */
    margin-bottom: 0;
}

.card-ytmusic p {
    color: #fff;
    letter-spacing: 1px;
    font-weight: 700;
}

.card-ytmusic .equalizer span {
    background: #FF0000;
}

/* Equalizer Animation */
.equalizer {
    display: flex;
    gap: 5px;
    margin-top: 20px;
    height: 30px;
    align-items: flex-end;
}

.equalizer span {
    width: 6px;
    background: #1db954;
    height: 5px;
    /* Default height */
    transition: height 0.2s ease;
}

.equalizer.playing span {
    animation: bounce 1s infinite ease-in-out;
}

.equalizer span:nth-child(2) {
    animation-delay: 0.1s;
}

.equalizer span:nth-child(3) {
    animation-delay: 0.2s;
}

.equalizer span:nth-child(4) {
    animation-delay: 0.3s;
}

.equalizer span:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes bounce {

    0%,
    100% {
        height: 5px;
    }

    50% {
        height: 30px;
    }
}

/* Tour List */
.tour-list {
    list-style: none;
    margin-top: 20px;
}

.tour-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.tour-list li:last-child {
    border-bottom: none;
}

.tour-list li .date {
    color: var(--neon-purple);
    font-weight: 700;
}

/* Apple Music Card */
.card-applemusic {
    background: linear-gradient(135deg, #fc3c44, #f94c57);
    /* Apple Music Red/Pink */
    text-decoration: none;
    position: relative;
}

.card-applemusic h2 {
    color: #fff;
    font-size: 2.5rem;
    /* Match other cards */
    margin-bottom: 0;
}

.card-applemusic p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    letter-spacing: 1px;
}



/* Image Placeholders with Gradients */
.card-image-1 {
    background: linear-gradient(to bottom, #00f3ff, #0000ff);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image-1 h2 {
    font-size: 2rem;
    mix-blend-mode: overlay;
}

/* Amazon Music Card */
.card-amazon {
    background: linear-gradient(135deg, #00C6D1, #00A6B1);
    /* Amazon Music Cyan */
    text-decoration: none;
    position: relative;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.card-amazon h3 {
    color: #fff;
    font-size: 2rem;
    /* Increased for Medium card */
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.card-amazon .emoji-stack {
    font-size: 3rem;
    /* Increased for Medium card */
}

/* Shop Card (Legacy - keeping just in case or reusing) */
.card-shop {
    background: #111;
    border-color: var(--neon-pink);
}

.card-shop h2 {
    color: var(--neon-pink);
}

/* Section Common */
.section-container {
    margin-top: 150px;
}

.section-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 50px;
    letter-spacing: -2px;
}

.neon-dot {
    color: var(--neon-pink);
}

/* Shop Section */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
}

.product-card:hover {
    border-color: var(--neon-purple);
    transform: translateY(-10px);
}

.product-image {
    height: 300px;
    background: #111;
    position: relative;
    overflow: hidden;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    mix-blend-mode: luminosity;
}

.p-hoodie {
    background: linear-gradient(45deg, #333, #555);
}

.p-vinyl {
    background: radial-gradient(circle, #111 20%, #333 21%, #111 22%, #333 50%);
    border-radius: 50%;
    width: 80%;
    height: 80%;
    margin: 10% auto;
    animation: spin 5s infinite linear;
}

.p-tee {
    background: linear-gradient(to bottom, #222, #000);
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    display: block;
    color: var(--neon-blue);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn-buy {
    background: transparent;
    border: 1px solid var(--neon-pink);
    color: var(--neon-pink);
    padding: 10px 20px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.btn-buy:hover {
    background: var(--neon-pink);
    color: #fff;
    box-shadow: 0 0 15px var(--neon-pink);
}

/* Links Section */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 40px;
}

.column-title {
    font-size: 1.5rem;
    color: var(--neon-blue);
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

.platform-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.platform-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.platform-card .arrow {
    transition: 0.3s;
}

.platform-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    border-color: var(--neon-purple);
    box-shadow: 0 0 15px rgba(189, 0, 255, 0.1);
}

.platform-card:hover .arrow {
    transform: translate(5px, -5px);
    color: var(--neon-blue);
}

/* Specific Platform Hover Colors (Optional subtle glow) */
.platform-card:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--neon-blue);
}

/* Video Section */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.video-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
}

.video-card:hover {
    border-color: var(--neon-purple);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(189, 0, 255, 0.2);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    width: 100%;
    background: #000;
}

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

.video-info {
    padding: 20px;
    text-align: center;
}

.video-info h3 {
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

.local-glass {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.connect-form-wrapper h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.connect-form-wrapper p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
    padding: 15px;
    color: #fff;
    font-family: var(--font-main);
    outline: none;
    transition: 0.3s;
}

.newsletter-form input:focus {
    border-color: var(--neon-purple);
    box-shadow: 0 0 15px rgba(189, 0, 255, 0.2);
}

.newsletter-form button {
    background: var(--neon-purple);
    border: none;
    padding: 0 30px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    box-shadow: 0 0 20px var(--neon-purple);
}

.connect-socials {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-link {
    font-size: 3rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
    text-transform: uppercase;
}

.social-link:hover {
    color: #fff;
    -webkit-text-stroke: 0;
    text-shadow: 4px 4px 0px var(--neon-blue);
    transform: translateX(20px);
}

@media (max-width: 768px) {
    .connect-grid {
        grid-template-columns: 1fr;
    }

    .social-link {
        font-size: 2rem;
        text-align: center;
    }

    .social-link:hover {
        transform: translateX(0) scale(1.1);
    }
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 20px;
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    padding-left: 140px;
    /* Offset for nav */
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    footer {
        flex-direction: column;
        gap: 20px;
        padding-left: 20px;
        padding-bottom: 120px;
        /* Extra space for bottom nav */
        text-align: center;
    }
}

/* Toast Notification */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2000;
    min-width: 300px;
    transform: translateX(120%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

#toast-container.show {
    transform: translateX(0);
}

.toast-content {
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid var(--neon-blue);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
}

.toast-icon {
    color: var(--neon-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.toast-message {
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
}

.toast-progress {
    height: 3px;
    background: var(--neon-blue);
    width: 0%;
    margin-top: -3px;
    /* Overlap border bottom slightly */
    border-radius: 0 0 8px 8px;
    transition: width 3s linear;
}

#toast-container.show .toast-progress {
    width: 100%;
}

/* Animation utilities */
.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* Cookie Consent Banner */
#cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--neon-purple);
    padding: 30px 20px;
    z-index: 9999;
    transition: bottom 0.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    visibility: hidden;
    /* start hidden */
}

#cookie-banner.show {
    bottom: 0;
    visibility: visible;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-text h3 {
    color: var(--neon-purple);
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-weight: 700;
}

.cookie-text p {
    color: #ccc;
    font-size: 0.9rem;
    max-width: 800px;
    line-height: 1.5;
    margin: 0;
}

.cookie-text a {
    color: var(--neon-blue);
    text-decoration: underline;
    transition: color 0.3s;
}

.cookie-text a:hover {
    color: #fff;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-cookie {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.9rem;
    border: 1px solid transparent;
}

.btn-accept {
    background: var(--neon-purple);
    color: #fff;
    box-shadow: 0 0 10px rgba(189, 0, 255, 0.4);
}

.btn-accept:hover {
    background: #a000d6;
    transform: scale(1.05);
}

.btn-reject {
    background: transparent;
    border: 1px solid #555;
    color: #aaa;
}

.btn-reject:hover {
    border-color: #fff;
    color: #fff;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-end;
        margin-top: 10px;
    }
}