* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Cherry Bomb One', cursive, sans-serif;
    cursor: none !important;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #050505;
    color: #ffffff;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    padding: 40px 20px;
}

/* --- MIDNIGHT SKY BACKGROUND STYLING --- */
.uiverse-midnight-sky {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    background-color: #050505;
    z-index: 0;
    pointer-events: none;
}

.uiverse-midnight-sky .sky-canvas {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background: #050505;
}

.uiverse-midnight-sky .stars {
    position: absolute;
    inset: 0;
    background-repeat: repeat;
    pointer-events: none;
}

.uiverse-midnight-sky .stars-1 {
    background-image: radial-gradient(1px 1px at 10% 10%, #fff, transparent),
        radial-gradient(1px 1px at 30% 20%, #fff, transparent),
        radial-gradient(1px 1px at 50% 50%, #fff, transparent),
        radial-gradient(1px 1px at 70% 30%, #fff, transparent),
        radial-gradient(1px 1px at 90% 10%, #fff, transparent);
    background-size: 200px 200px;
    animation: twinkle 3s ease-in-out infinite;
}

.uiverse-midnight-sky .stars-2 {
    background-image: radial-gradient(1.5px 1.5px at 20% 40%, #fff, transparent),
        radial-gradient(1.5px 1.5px at 60% 85%, #fff, transparent),
        radial-gradient(1.5px 1.5px at 85% 65%, #fff, transparent);
    background-size: 300px 300px;
    animation: twinkle 5s ease-in-out infinite 1s;
}

.uiverse-midnight-sky .stars-3 {
    background-image: radial-gradient(2px 2px at 40% 70%, #fff, transparent),
        radial-gradient(2px 2px at 10% 80%, #fff, transparent),
        radial-gradient(2px 2px at 80% 40%, #fff, transparent);
    background-size: 400px 400px;
    animation: twinkle 7s ease-in-out infinite 2s;
}

.uiverse-midnight-sky .meteor {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.5);
    opacity: 0;
    pointer-events: none;
}

.uiverse-midnight-sky .meteor::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, #fff, transparent);
}

.uiverse-midnight-sky .m1 {
    top: 10%;
    left: 110%;
    animation: shoot 8s linear infinite;
}
.uiverse-midnight-sky .m2 {
    top: 30%;
    left: 110%;
    animation: shoot 12s linear infinite 4s;
}
.uiverse-midnight-sky .m3 {
    top: 50%;
    left: 110%;
    animation: shoot 10s linear infinite 2s;
}

.uiverse-midnight-sky .moon {
    position: absolute;
    top: 15%;
    right: 15%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: transparent;
    box-shadow: 15px 15px 0 0 #fdfbd3;
    filter: drop-shadow(0 0 15px rgba(253, 251, 211, 0.4));
    z-index: 1;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

@keyframes shoot {
    0% {
        transform: translateX(0) translateY(0) rotate(-35deg);
        opacity: 0;
    }
    5% { opacity: 1; }
    15% {
        transform: translateX(-1500px) translateY(1000px) rotate(-35deg);
        opacity: 0;
    }
    100% {
        transform: translateX(-1500px) translateY(1000px) rotate(-35deg);
        opacity: 0;
    }
}

/* --- CUSTOM GLOWING CYAN/BLUE CURSOR --- */
#cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #00d2ff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px #00d2ff, 0 0 20px #00d2ff;
    transition: transform 0.1s ease, background-color 0.2s ease;
}

#cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border: 2px solid rgba(0, 114, 255, 0.7);
    background: rgba(0, 210, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
    transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

body.hovering #cursor-dot {
    background-color: #ffffff;
    transform: translate(-50%, -50%) scale(1.5);
    box-shadow: 0 0 15px #ffffff, 0 0 25px #00d2ff;
}

body.hovering #cursor-trail {
    width: 48px;
    height: 48px;
    border-color: rgba(0, 210, 255, 1);
    background: rgba(0, 210, 255, 0.18);
}

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 1350px;
    padding: 20px;
}

.avatar-music-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 35px;
    margin-bottom: 35px;
    width: 100%;
    max-width: 700px;
}

.avatar-container {
    position: relative;
    animation: float 3s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.avatar-img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(0, 210, 255, 0.6));
}

.status-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 3px 14px;
    border-radius: 14px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: bold;
    color: #ddd;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.status-badge.live {
    background: rgba(255, 0, 0, 0.8);
    color: #fff;
    border-color: #ff4d4d;
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.8);
}

.main-music-card {
    max-width: 380px;
    width: 100%;
    padding: 18px;
    border-radius: 35px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 210, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-family: -apple-system, system-ui, sans-serif;
    color: white;
    transition: all 0.3s ease;
    text-align: left;
}

.track-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.album-art {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.album-art:hover {
    transform: scale(1.05);
}

.track-details {
    flex-grow: 1;
    overflow: hidden;
}

.track-title {
    font-size: 1.15em;
    font-weight: 600;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-family: -apple-system, system-ui, sans-serif;
}

.artist-name {
    font-size: 0.85em;
    color: #d1d1d6;
    margin-top: 2px;
    font-family: -apple-system, system-ui, sans-serif;
}

.volume-bars {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    width: 38px;
    height: 32px;
}

.volume-bars .bar {
    width: 3px;
    background: linear-gradient(180deg, #00c6ff, #0072ff);
    border-radius: 2px;
    height: 6px;
    transition: height 0.2s ease;
}

.volume-bars.playing .bar {
    animation: bounce 0.8s infinite ease-in-out;
    animation-delay: var(--delay);
}

@keyframes bounce {
    0%, 100% { height: 6px; }
    50% { height: 26px; }
}

.playback-controls {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.time-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.8em;
    color: #8e8e93;
    font-family: -apple-system, system-ui, sans-serif;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    border-radius: 2px;
}

.progress-handle {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}

.button-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding-top: 4px;
}

.control-button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.2s, transform 0.2s;
    color: #fff;
    flex-shrink: 0;
}

.control-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.08);
}

.volume-control-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    padding: 0 10px;
    height: 36px;
    border-radius: 18px;
    box-sizing: border-box;
}

.volume-icon {
    color: #8e8e93;
    flex-shrink: 0;
}

.volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00d2ff;
    cursor: pointer;
    box-shadow: 0 0 6px #00d2ff;
}

.volume-slider::-moz-range-thumb {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00d2ff;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 6px #00d2ff;
}

/* Typography Header */
.main-title {
    font-family: 'Cherry Bomb One', cursive, sans-serif;
    font-size: 5rem;
    color: #00d2ff;
    text-transform: uppercase;
    text-shadow: 0 0 25px rgba(0, 210, 255, 0.6);
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.sub-title {
    font-family: 'Cherry Bomb One', cursive, sans-serif;
    font-size: 1.25rem;
    letter-spacing: 1.5px;
    color: #e0e0e0;
    margin-bottom: 25px;
    text-transform: uppercase;
}

/* --- LONG KICK PILL BANNER --- */
.kick-banner-pill {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 650px;
    padding: 14px 28px;
    margin-bottom: 35px;
    border-radius: 50px;
    background: rgba(10, 15, 25, 0.75);
    backdrop-filter: blur(12px);
    border: 1.5px solid rgba(0, 210, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.15), inset 0 0 10px rgba(0, 210, 255, 0.05);
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    gap: 15px;
}

.kick-banner-pill:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: #53fc18;
    box-shadow: 0 0 25px rgba(83, 252, 24, 0.35), inset 0 0 15px rgba(83, 252, 24, 0.1);
}

.kick-pill-status {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
}

.kick-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #888888;
    box-shadow: 0 0 8px #888888;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.kick-banner-pill.is-live .kick-dot {
    background-color: #53fc18;
    box-shadow: 0 0 12px #53fc18, 0 0 20px #53fc18;
    animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.6; }
    100% { transform: scale(1); opacity: 1; }
}

.kick-pill-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: #00d2ff;
    background: rgba(0, 210, 255, 0.1);
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid rgba(0, 210, 255, 0.3);
    transition: all 0.3s ease;
}

.kick-banner-pill:hover .kick-pill-cta {
    color: #53fc18;
    background: rgba(83, 252, 24, 0.15);
    border-color: rgba(83, 252, 24, 0.5);
}

.kick-pill-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Social Link Buttons Container */
.links-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.button {
    --primary: #00d2ff;
    --neutral-1: #f7f8f7;
    --neutral-2: #e7e7e7;
    --radius: 14px;

    border-radius: var(--radius);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
    border: none;
    box-shadow: 0 0.5px 0.5px 1px rgba(255, 255, 255, 0.2),
        0 10px 20px rgba(0, 0, 0, 0.2), 0 4px 5px 0px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    flex: 1 1 0px;
    min-width: 160px;
    max-width: 200px;
    padding: 10px 15px;
    height: 68px;
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #222;
}

.button:hover {
    transform: scale(1.02);
    box-shadow: 0 0 1px 2px rgba(255, 255, 255, 0.3),
        0 15px 30px rgba(0, 0, 0, 0.3), 0 10px 3px -3px rgba(0, 0, 0, 0.04);
}

.button:active {
    transform: scale(1);
    box-shadow: 0 0 1px 2px rgba(255, 255, 255, 0.3),
        0 10px 3px -3px rgba(0, 0, 0, 0.2);
}

.button:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    border: 2.5px solid transparent;
    background: linear-gradient(var(--neutral-1), var(--neutral-2)) padding-box,
        linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.45)) border-box;
    z-index: 0;
    transition: all 0.4s ease;
}

.button:hover::after {
    transform: scale(1.03, 1.08);
    box-shadow: inset 0 -1px 3px 0 rgba(255, 255, 255, 1);
}

.button::before {
    content: "";
    inset: 7px 6px 6px 6px;
    position: absolute;
    background: linear-gradient(to top, var(--neutral-1), var(--neutral-2));
    border-radius: 30px;
    filter: blur(0.5px);
    z-index: 2;
}

.state {
    padding-left: 28px;
    z-index: 3;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.state p {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #111;
}

.state .icon {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.btn-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.button:hover .state--default .icon {
    transform: scale(1.2);
}

.outline {
    position: absolute;
    border-radius: inherit;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
    inset: -2px -3.5px;
}

.outline::before {
    content: "";
    position: absolute;
    inset: -100%;
    background: conic-gradient(
        from 180deg,
        transparent 60%,
        white 80%,
        transparent 100%
    );
    animation: spin 2s linear infinite;
    animation-play-state: paused;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.button:hover .outline { opacity: 1; }
.button:hover .outline::before { animation-play-state: running; }

.state p span {
    display: inline-block;
    opacity: 0;
    animation: slideDown 0.8s ease forwards calc(var(--i) * 0.03s);
}

.button:hover p span {
    opacity: 1;
    animation: wave 0.5s ease forwards calc(var(--i) * 0.02s);
}

.button:focus p span {
    opacity: 1;
    animation: disapear 0.6s ease forwards calc(var(--i) * 0.03s);
}

@keyframes wave {
    30% { opacity: 1; transform: translateY(4px) translateX(0) rotate(0); }
    50% { opacity: 1; transform: translateY(-3px) translateX(0) rotate(0); color: var(--primary); }
    100% { opacity: 1; transform: translateY(0) translateX(0) rotate(0); }
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-20px) translateX(5px) rotate(-90deg);
        color: var(--primary);
        filter: blur(5px);
    }
    30% {
        opacity: 1;
        transform: translateY(4px) translateX(0) rotate(0);
        filter: blur(0);
    }
    50% { opacity: 1; transform: translateY(-3px) translateX(0) rotate(0); }
    100% { opacity: 1; transform: translateY(0) translateX(0) rotate(0); }
}

@keyframes disapear {
    from { opacity: 1; }
    to {
        opacity: 0;
        transform: translateX(5px) translateY(20px);
        color: var(--primary);
        filter: blur(5px);
    }
}

/* Responsive Layout */
@media (max-width: 1024px) {
    .links-grid {
        flex-wrap: wrap;
        gap: 14px;
    }

    .button {
        flex: 1 1 calc(33.333% - 14px);
        max-width: 220px;
    }
}

@media (max-width: 768px) {
    .avatar-music-row {
        flex-direction: column;
        gap: 25px;
    }

    .main-music-card {
        max-width: 100%;
    }

    .kick-banner-pill {
        flex-direction: column;
        text-align: center;
        padding: 16px 20px;
        border-radius: 30px;
    }
}

@media (max-width: 600px) {
    .main-title {
        font-size: 3.2rem;
    }

    .sub-title {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .links-grid {
        gap: 12px;
    }

    .button {
        flex: 1 1 calc(50% - 12px);
        min-width: 130px;
        height: 60px;
        padding: 8px;
    }

    .state {
        padding-left: 22px;
    }

    .btn-icon {
        width: 18px;
        height: 18px;
    }
}