/* CSS Design System for KUBET VIP Gaming Portfolio */

:root {
    --bg-dark: #0a0d1b;
    --panel-bg: rgba(20, 27, 56, 0.72);
    --border-color: rgba(255, 255, 255, 0.05);
    --border-hover: rgba(255, 255, 255, 0.14);

    --accent-gold: #ffd32a;
    --accent-orange: #ff9f43;
    --accent-red: #ff3f34;
    --accent-purple: #a55eea;
    --accent-cyan: #00d2d3;

    --text-white: #ffffff;
    --text-gray: #a4b0be;
    --text-muted: #57606f;

    --grad-gold-orange: linear-gradient(135deg, #ffd32a, #ff9f43);
    --grad-neon-pink: linear-gradient(135deg, #ff7675, #a55eea);
    --grad-cyber: linear-gradient(135deg, #00d2d3, #a55eea);
    --grad-dark-glow: linear-gradient(135deg, #1b264a, #0a0d1b);

    --font-display: "Plus Jakarta Sans", sans-serif;
    --font-body: "Plus Jakarta Sans", sans-serif;

    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;

    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-glow-gold: 0 0 15px rgba(255, 211, 42, 0.35);
    --shadow-glow-purple: 0 0 15px rgba(165, 94, 234, 0.35);
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
}

html {
    scroll-behavior: smooth;
    user-select: none;
    -webkit-user-select: none;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Floating Background Bubbles */
.bg-bubbles {
    z-index: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
}

.bubble {
    filter: blur(80px);
    opacity: 0.35;
    border-radius: 50%;
    animation: floatBubble linear infinite;
    position: absolute;
}

.bubble-1 {
    background: radial-gradient(circle, rgba(27, 38, 74, 0.8), rgba(0, 0, 0, 0));
    width: 450px;
    height: 450px;
    animation-duration: 25s;
    animation-delay: 0s;
    top: -10%;
    left: -10%;
}

.bubble-2 {
    background: radial-gradient(circle, rgba(165, 94, 234, 0.5), rgba(0, 0, 0, 0));
    width: 380px;
    height: 380px;
    animation-duration: 28s;
    animation-delay: -7s;
    top: 25%;
    right: -10%;
}

.bubble-3 {
    background: radial-gradient(circle, rgba(0, 210, 211, 0.45), rgba(0, 0, 0, 0));
    width: 300px;
    height: 300px;
    animation-duration: 20s;
    animation-delay: -12s;
    top: 60%;
    left: 5%;
}

.bubble-4 {
    background: radial-gradient(circle, rgba(27, 38, 74, 0.7), rgba(0, 0, 0, 0));
    width: 400px;
    height: 400px;
    animation-duration: 32s;
    animation-delay: -5s;
    bottom: -10%;
    right: 5%;
}

.bubble-5 {
    background: radial-gradient(circle, rgba(165, 94, 234, 0.45), rgba(0, 0, 0, 0));
    width: 250px;
    height: 250px;
    animation-duration: 22s;
    animation-delay: -15s;
    top: 45%;
    right: 25%;
}

.bubble-6 {
    background: radial-gradient(circle, rgba(0, 210, 211, 0.35), rgba(0, 0, 0, 0));
    width: 220px;
    height: 220px;
    animation-duration: 24s;
    animation-delay: -9s;
    bottom: 25%;
    left: 20%;
}

@keyframes floatBubble {
    0% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(40px, -60px) scale(1.08);
    }

    50% {
        transform: translate(-30px, -90px) scale(0.92);
    }

    75% {
        transform: translate(-50px, -45px) scale(1.05);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* App Container */
.app {
    z-index: 1;
    flex-direction: column;
    min-height: 100vh;
    display: flex;
    position: relative;
}

/* Header & Nav */
.header {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    background: rgba(10, 13, 27, 0.82);
    transition: all 0.3s;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.header-inner {
    justify-content: space-between;
    align-items: center;
    max-width: 850px;
    min-height: 64px;
    margin: 0 auto;
    padding: 0.5rem 1.5rem;
    display: flex;
}

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

.brand-logo {
    object-fit: contain;
    width: auto;
    height: 32px;
    transition: transform 0.3s;
}

.brand:hover .brand-logo {
    transform: scale(1.04);
}

.brand-text {
    flex-direction: column;
    display: flex;
}

.brand-title {
    font-family: var(--font-display);
    color: var(--text-white);
    letter-spacing: -0.5px;
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.1;
}

.brand-title .highlight {
    background: var(--grad-gold-orange);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-subtitle {
    color: var(--text-gray);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 2px;
}

.menu-toggle {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    transition: all 0.25s;
    display: flex;
}

.menu-toggle span {
    background: var(--text-white);
    border-radius: 1px;
    width: 18px;
    height: 2px;
    transition: all 0.25s;
    display: block;
}

/* Responsive Nav for mobile */
.nav {
    background: rgba(10, 13, 27, 0.96);
    border-bottom: 1px solid var(--border-color);
    max-height: 0;
    opacity: 0;
    flex-direction: column;
    padding: 0;
    transition: all 0.35s ease-in-out;
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    overflow: hidden;
}

.nav-open {
    opacity: 1;
    max-height: 380px;
    padding: 0.5rem 0;
}

.nav-link {
    color: var(--text-gray);
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    display: block;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
    background: rgba(255, 211, 42, 0.06);
    padding-left: 2.25rem;
}

/* Header style for wide screens */
@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }

    .nav {
        opacity: 1;
        max-height: none;
        background: transparent;
        border: none;
        flex-direction: row;
        gap: 0.5rem;
        padding: 0;
        position: static;
        overflow: visible;
        box-shadow: none;
    }

    .nav-link {
        border-radius: var(--radius-sm);
        padding: 0.45rem 0.85rem;
        font-size: 0.85rem;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.05);
        color: var(--text-white);
        padding-left: 0.85rem;
    }

    .nav-link.active {
        background: var(--grad-gold-orange);
        color: var(--bg-dark);
        font-weight: 700;
        box-shadow: var(--shadow-glow-gold);
        padding-left: 0.85rem;
    }
}

/* Main Layout */
.main {
    z-index: 1;
    flex: 1;
    padding-top: 90px;
    padding-bottom: 50px;
    position: relative;
}

.section {
    max-width: 720px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
    position: relative;
}

.section+.section {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.section-title {
    font-family: var(--font-display);
    color: var(--text-white);
    letter-spacing: -0.5px;
    margin-bottom: 1.85rem;
    font-size: 1.55rem;
    font-weight: 800;
    display: inline-block;
    position: relative;
}

.section-title::after {
    content: "";
    background: var(--grad-gold-orange);
    transform-origin: 0;
    border-radius: 2px;
    width: 100%;
    height: 3px;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    position: absolute;
    bottom: -6px;
    left: 0;
    transform: scaleX(0);
}

.section-title.visible::after {
    transform: scaleX(1);
}

/* Scroll Reveal classes */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* About / Hero Section */
.about {
    text-align: center;
    padding-top: 3.5rem;
}

.profile-container {
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
}

.avatar-ring {
    background: linear-gradient(135deg, #ffd32a, #ff9f43, #a55eea, #00d2d3) 0 0 / 300% 300%;
    border-radius: 50%;
    width: 152px;
    height: 152px;
    padding: 4px;
    animation: gradientSpin 6s linear infinite;
    display: inline-block;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

@keyframes gradientSpin {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.avatar {
    object-fit: cover;
    background: #111222;
    border: 3px solid #070810;
    border-radius: 50%;
    width: 144px;
    height: 144px;
    transition: transform 0.3s;
    display: block;
    pointer-events: none;
}

.avatar-ring:hover .avatar {
    transform: scale(1.03);
}

.status-badge {
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #22c55e;
    box-shadow: var(--shadow-sm);
    background: rgba(13, 15, 28, 0.95);
    border-radius: 20px;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: flex;
    position: absolute;
    bottom: 5px;
    right: -5px;
    backdrop-filter: blur(5px);
}

.status-dot {
    background: #22c55e;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    box-shadow: 0 0 8px #22c55e;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.45;
        transform: scale(1.3);
    }
}

.name {
    font-family: var(--font-display);
    letter-spacing: -0.8px;
    background: var(--grad-gold-orange);
    background-size: 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
    font-size: 2.5rem;
    font-weight: 800;
    animation: shimmer 4s linear infinite;
    text-shadow: 0 0 40px rgba(255, 211, 42, 0.1);
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.username {
    color: var(--text-gray);
    letter-spacing: 0.5px;
    margin-bottom: 0.85rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.role-badge {
    color: var(--bg-dark);
    background: var(--grad-gold-orange);
    border-radius: 20px;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1.25rem;
    padding: 0.4rem 1.1rem;
    font-size: 0.8rem;
    font-weight: 800;
    display: inline-flex;
    box-shadow: var(--shadow-glow-gold);
}

.role-badge i {
    font-size: 0.85rem;
}

.bio {
    color: var(--text-gray);
    justify-content: center;
    align-items: center;
    max-width: 480px;
    min-height: 2.8em;
    margin: 0 auto;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

.cursor {
    color: var(--accent-gold);
    font-weight: 700;
    animation: blink 0.9s step-end infinite;
    margin-left: 2px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Metrics Section */
.skills-list {
    flex-direction: column;
    gap: 0.85rem;
    display: flex;
}

.skill-item {
    background: var(--panel-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    grid-template-columns: 180px 1fr 52px;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    display: grid;
    position: relative;
    overflow: hidden;
}

.skill-item::before {
    content: "";
    background: var(--skill-color, var(--accent-gold));
    border-radius: 3px 0 0 3px;
    width: 3px;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    transform: scaleY(0);
}

.skill-item:hover::before {
    transform: scaleY(1);
}

.skill-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-hover);
    transform: translateX(6px);
    background: rgba(20, 22, 40, 0.8);
}

.skill-left {
    align-items: center;
    gap: 0.75rem;
    display: flex;
}

.skill-icon {
    color: var(--skill-color, var(--accent-gold));
    text-align: center;
    flex-shrink: 0;
    width: 20px;
    font-size: 1.1rem;
    transition: transform 0.25s;
}

.skill-item:hover .skill-icon {
    transform: scale(1.25) rotate(-5deg);
}

.skill-name {
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 700;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    width: 100%;
    height: 8px;
    overflow: hidden;
    position: relative;
}

.progress {
    background: linear-gradient(90deg, var(--skill-color, var(--accent-gold)), #ffffff);
    border-radius: 6px;
    height: 100%;
    transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.progress-shine {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    width: 60%;
    animation: shine 2.5s ease-in-out infinite;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100%;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    50% {
        left: 130%;
    }

    100% {
        left: 130%;
    }
}

.skill-percent {
    color: var(--text-gray);
    text-align: right;
    font-size: 0.85rem;
    font-weight: 800;
}

/* Partners / Providers Section */
.partners-grid {
    flex-direction: column;
    gap: 0.85rem;
    display: flex;
}

.partner-card {
    background: var(--panel-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    align-items: center;
    gap: 1.25rem;
    padding: 1.1rem 1.35rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: "";
    background: var(--card-grad);
    opacity: 0;
    z-index: 0;
    transition: opacity 0.35s;
    position: absolute;
    inset: 0;
}

.partner-card:hover::before {
    opacity: 1;
}

.partner-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-hover);
    transform: translateX(6px) scale(1.008);
}

.partner-img-wrap {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1;
    border-radius: 12px;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-card:hover .partner-img-wrap {
    transform: scale(1.1) rotate(-3deg);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.partner-img {
    object-fit: contain;
    width: 72%;
    height: 72%;
    pointer-events: none;
}

.partner-info {
    z-index: 1;
    flex-direction: column;
    flex: 1;
    gap: 0.15rem;
    min-width: 0;
    display: flex;
    position: relative;
}

.partner-tag {
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--accent-gold);
    font-size: 0.65rem;
    font-weight: 800;
}

.partner-name {
    color: var(--text-white);
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.2;
}

.partner-desc {
    color: var(--text-gray);
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.4;
    overflow: hidden;
}

.partner-arrow {
    color: var(--text-muted);
    z-index: 1;
    flex-shrink: 0;
    font-size: 0.8rem;
    transition: all 0.25s;
    position: relative;
}

.partner-card:hover .partner-arrow {
    color: var(--text-white);
    transform: translate(3px, -3px);
}

/* Music Player Section */
.player-card {
    background: rgba(10, 11, 23, 0.9);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    flex-direction: column;
    gap: 1.15rem;
    padding: 1.5rem;
    display: flex;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.player-header {
    align-items: center;
    gap: 1.15rem;
    display: flex;
}

.player-art-wrap {
    flex-shrink: 0;
    width: 76px;
    height: 76px;
    position: relative;
}

.player-art {
    object-fit: cover;
    z-index: 1;
    border-radius: 10px;
    width: 76px;
    height: 76px;
    display: block;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.art-pulse {
    opacity: 0;
    z-index: 0;
    filter: blur(10px);
    background: linear-gradient(135deg, #ffd32a, #ff9f43, #a55eea);
    border-radius: 12px;
    transition: opacity 0.35s;
    position: absolute;
    inset: -4px;
}

.art-pulse.active {
    opacity: 0.65;
    animation: pulsate 2s ease-in-out infinite;
}

@keyframes pulsate {

    0%,
    100% {
        opacity: 0.45;
        transform: scale(1);
    }

    50% {
        opacity: 0.85;
        transform: scale(1.06);
    }
}

.player-meta {
    flex: 1;
    min-width: 0;
}

.player-playlist {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.25rem;
    font-size: 0.65rem;
    font-weight: 700;
}

.player-title {
    color: var(--text-white);
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0 0 0.15rem;
    font-size: 1.05rem;
    font-weight: 800;
    overflow: hidden;
}

.player-artist {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.82rem;
    font-weight: 500;
}

.player-progress-wrap {
    flex-direction: column;
    gap: 0.4rem;
    display: flex;
}

.player-progress-bar {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    width: 100%;
    height: 5px;
    position: relative;
}

.player-progress-fill {
    background: var(--grad-gold-orange);
    border-radius: 3px;
    width: 0%;
    height: 100%;
    transition: width 0.1s linear;
    position: relative;
}

.player-progress-dot {
    background: var(--text-white);
    border-radius: 50%;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    box-shadow: 0 0 8px var(--accent-gold);
    display: none;
    /* Only show on hover/active play */
}

.player-progress-bar:hover .player-progress-dot {
    display: block;
}

.player-times {
    color: var(--text-muted);
    justify-content: space-between;
    font-size: 0.72rem;
    font-weight: 600;
    display: flex;
}

.player-controls {
    justify-content: center;
    align-items: center;
    gap: 0.85rem;
    display: flex;
}

.ctrl-btn {
    cursor: pointer;
    color: var(--text-gray);
    background: transparent;
    border: none;
    justify-content: center;
    align-items: center;
    padding: 0;
    transition: all 0.25s;
    display: flex;
}

.ctrl-btn:hover {
    color: var(--text-white);
}

.ctrl-btn.spacer {
    width: 32px;
}

.shuffle-btn {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
}

.shuffle-btn.active {
    color: var(--accent-gold);
    text-shadow: var(--shadow-glow-gold);
}

.prev-btn,
.next-btn {
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
}

.play-btn {
    color: var(--bg-dark);
    background: var(--grad-gold-orange);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.15rem;
    transition: all 0.25s;
    box-shadow: var(--shadow-glow-gold);
}

.play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(255, 211, 42, 0.55);
}

.play-btn i {
    margin-left: 3px;
}

.play-btn .fa-pause {
    margin-left: 0;
}

.tracklist {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex-direction: column;
    gap: 0.35rem;
    padding-top: 1rem;
    display: flex;
}

.track-item {
    cursor: pointer;
    border-radius: 8px;
    align-items: center;
    gap: 0.85rem;
    padding: 0.6rem 0.75rem;
    transition: background 0.25s;
    display: flex;
}

.track-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.track-item.active {
    background: rgba(255, 211, 42, 0.08);
}

.track-art {
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.track-info {
    flex-direction: column;
    flex: 1;
    gap: 0.1rem;
    min-width: 0;
    display: flex;
}

.track-title {
    color: var(--text-white);
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 0.88rem;
    font-weight: 700;
    overflow: hidden;
}

.track-item.active .track-title {
    color: var(--accent-gold);
}

.track-artist {
    color: var(--text-gray);
    font-size: 0.76rem;
}

.track-num {
    color: var(--text-muted);
    text-align: right;
    flex-shrink: 0;
    min-width: 20px;
    font-size: 0.78rem;
    font-weight: 700;
}

.track-equalizer {
    flex-shrink: 0;
    align-items: flex-end;
    gap: 2px;
    height: 16px;
    display: flex;
}

.track-equalizer span {
    background: var(--accent-gold);
    border-radius: 1px;
    width: 3px;
    animation: equalize 0.8s ease-in-out infinite;
    display: block;
}

.track-equalizer span:nth-child(1) {
    height: 8px;
    animation-delay: 0s;
}

.track-equalizer span:nth-child(2) {
    height: 14px;
    animation-delay: 0.2s;
}

.track-equalizer span:nth-child(3) {
    height: 10px;
    animation-delay: 0.4s;
}

@keyframes equalize {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0.35);
    }
}

/* Contact Section */
.contact-links {
    flex-direction: column;
    gap: 0.85rem;
    display: flex;
}

.contact-card {
    background: var(--panel-bg);
    border-radius: var(--radius-md);
    color: var(--text-white);
    border: 1px solid var(--border-color);
    align-items: center;
    gap: 1.25rem;
    padding: 1.1rem 1.35rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: "";
    background: var(--card-grad);
    opacity: 0;
    z-index: 0;
    transition: opacity 0.35s;
    position: absolute;
    inset: 0;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-hover);
    transform: translateX(6px);
}

.contact-icon-wrapper {
    z-index: 1;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    transition: all 0.3s;
    display: flex;
    position: relative;
}

.contact-card:hover .contact-icon-wrapper {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.1) rotate(-5deg);
}

.contact-icon {
    z-index: 1;
    font-size: 1.25rem;
    position: relative;
}

.contact-name {
    z-index: 1;
    flex: 1;
    position: relative;
}

.contact-chevron {
    z-index: 1;
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: all 0.25s;
    position: relative;
}

.contact-card:hover .contact-chevron {
    color: var(--text-white);
    transform: translateX(4px);
}

/* Register/Login Quick buttons glow styling */
.register-card {
    border: 1px solid rgba(255, 159, 67, 0.25);
    box-shadow: 0 4px 15px rgba(255, 159, 67, 0.12);
}

.login-card {
    border: 1px solid rgba(0, 210, 211, 0.25);
    box-shadow: 0 4px 15px rgba(0, 210, 211, 0.12);
}

/* Footer styling */
.footer {
    text-align: center;
    color: var(--text-muted);
    padding: 2rem 1.5rem;
    position: relative;
}

.footer-note {
    font-size: 0.78rem;
    font-weight: 600;
}

.footer-note .fa-heart {
    color: var(--accent-red);
    font-size: 0.75rem;
    margin: 0 2px;
    animation: heartbeat 1.2s infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.18);
    }
}

/* Mobile Responsiveness Improvements */
@media (max-width: 768px) {
    .main {
        padding-top: 80px;
    }

    .section {
        padding: 1.85rem 1.25rem;
    }

    .section-title {
        margin-bottom: 1.35rem;
        font-size: 1.38rem;
    }

    .avatar-ring {
        width: 132px;
        height: 132px;
    }

    .avatar {
        width: 124px;
        height: 124px;
    }

    .name {
        font-size: 2.05rem;
    }

    .bio {
        font-size: 0.92rem;
    }

    .skill-item {
        grid-template-columns: 150px 1fr 44px;
        gap: 0.75rem;
        padding: 0.85rem 1rem;
    }

    .skill-name {
        font-size: 0.85rem;
    }

    .partner-card {
        gap: 1rem;
        padding: 0.95rem 1.15rem;
    }

    .partner-img-wrap {
        width: 46px;
        height: 46px;
    }

    .partner-name {
        font-size: 0.95rem;
    }

    .partner-desc {
        font-size: 0.78rem;
    }

    .player-card {
        padding: 1.15rem;
    }

    .player-art-wrap,
    .player-art {
        width: 64px;
        height: 64px;
    }

    .player-title {
        font-size: 0.95rem;
    }

    .contact-card {
        padding: 0.95rem 1.15rem;
        font-size: 0.92rem;
    }

    .contact-icon-wrapper {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 1.5rem 1rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .avatar-ring {
        width: 118px;
        height: 118px;
    }

    .avatar {
        width: 110px;
        height: 110px;
    }

    .name {
        font-size: 1.75rem;
    }

    .bio {
        font-size: 0.88rem;
    }

    .skill-item {
        grid-template-columns: 120px 1fr 40px;
        gap: 0.5rem;
        padding: 0.75rem 0.85rem;
    }

    .skill-name {
        font-size: 0.8rem;
    }

    .progress-bar {
        height: 6px;
    }

    .partner-card {
        gap: 0.85rem;
        padding: 0.85rem 1rem;
    }

    .partner-img-wrap {
        width: 42px;
        height: 42px;
    }

    .partner-name {
        font-size: 0.9rem;
    }

    .player-header {
        gap: 0.85rem;
    }

    .player-art-wrap,
    .player-art {
        width: 56px;
        height: 56px;
    }

    .player-title {
        font-size: 0.88rem;
    }

    .play-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}