* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    min-height: 100%;
}

:root {
    --primary: #007bff;
    --secondary: #00c6ff;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-glow: 0 0 12px rgba(0, 123, 255, 0.6);
}

/* ── Cursor ── */
    .cursor-dot {
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.85);
}

.cursor-ring {
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    width: 32px;
    height: 32px;
    border: 2px solid rgba(0, 240, 255, 0.5);
    top: 0;
    left: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, border-color 0.2s;
}

.cursor-star {
    position: fixed;
    pointer-events: none;
    z-index: 99997;
    font-size: 16px;
    color: #00f0ff;
    transform: translate(-50%, -130%);
    animation: starSpin 3s linear infinite;
    text-shadow: 0 0 5px #00f0ff;
}

@keyframes starSpin {
    to {
    transform: translate(-50%, -130%) rotate(360deg);
}

}

body.clicking .cursor-dot {
    width: 18px;
    height: 18px;
    background: #00f0ff;
}

body.clicking .cursor-ring {
    width: 42px;
    height: 42px;
    border-color: #00f0ff;
}

body {
    background: radial-gradient(circle at 20% 0%, #0a0e17 0%, #10141d 45%, #07090e 100%);
    font-family: 'Nunito', sans-serif;
    color: #e5e5e5;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 8px;
    border: 2px solid rgba(0, 240, 255, 0.15);
    border-radius: 26px;
    pointer-events: none;
    z-index: 9000;
    box-shadow: inset 0 0 50px rgba(0, 240, 255, 0.05);
}

/* ── Banner ── */
    .service-banner {
    background: linear-gradient(90deg, #07090e, #142834, #07090e);
    background-size: 200% auto;
    animation: bannerShift 4s linear infinite;
    color: #00f0ff;
    text-align: center;
    padding: 6px 20px;
    font-size: 0.72rem;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 100;
    position: relative;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.8);
}

@keyframes bannerShift {
    to {
    background-position: 200% center;
}

}

.wrapper {
    max-width: 860px;
    margin: 0 auto;
    padding: 20px 16px 60px;
    position: relative;
    z-index: 10;
}

/* ── Profile Header ── */
    .profile-header {
    background: rgba(10, 14, 23, 0.65);
    backdrop-filter: blur(16px);
    border: 1.5px solid rgba(0, 240, 255, 0.25);
    border-radius: 24px;
    padding: 28px 28px 20px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
    box-shadow: 0 8px 40px rgba(0,0,0,0.55);
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.avatar-ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(#00f0ff, #00c8ff, #050a12, #00f0ff);
    padding: 3px;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.avatar-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 4px solid #10141d;
}

.online-dot {
    position: absolute;
    bottom: 6px;
    right: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #00ff66;
    border: 3px solid #10141d;
    box-shadow: 0 0 12px rgba(0, 255, 102, 0.7);
}

.profile-info {
    flex: 1;
    min-width: 200px;
}

.profile-name {

    font-family: 'Fredoka One', cursive;
    font-size: 1.9rem;
    color: #00f0ff;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.65), 0 0 20px rgba(0,240,255,0.55);
    margin-bottom: 4px;

}

.profile-handle {

    font-size: 0.78rem;
    color: #a2b4dc;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 700;

}

.profile-bio {

    font-size: 0.88rem;
    color: #c9d3ec;
    line-height: 1.6;
    margin-bottom: 14px;

}

.profile-tags {

    display: flex;
    flex-wrap: wrap;
    gap: 6px;

}

.ptag {

    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 50px;
    background: rgba(0, 240, 255, 0.15);
    border: 1px solid rgba(0, 240, 255, 0.4);
    color: #00f0ff;
    text-shadow: 0 0 5px rgba(0, 240, 255, 0.5);

}

.profile-stats {

    display: flex;
    gap: 24px;
    margin-left: auto;
    align-items: center;
    flex-shrink: 0;
    flex-wrap: wrap;

}

.stat-box {

    text-align: center;

}

.stat-num {

    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: #fff;
    display: block;

}

.profile-stats .stat-num-neon {

    color: #00f0ff;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.7);

}

.color-verde-neon {

    color: #00ff66 !important;
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.7) !important;

}

.stat-label {

    font-size: 0.65rem;
    color: #a2b4dc;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;

}

/* ── Tab Nav Principal ── */
    .tab-nav {

    background: rgba(16, 20, 29, 0.7);
    backdrop-filter: blur(12px);
    border: 1.5px solid rgba(0, 240, 255, 0.2);
    border-radius: 18px;
    padding: 8px;
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
    overflow-x: auto;
    scrollbar-width: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);

}

.tab-nav::-webkit-scrollbar {

    display: none;

}

.tab-btn {

    flex: 1;
    min-width: 80px;
    padding: 9px 14px;
    border-radius: 12px;
    border: none;
    background: transparent;
    font-family: 'Nunito', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #00f0ff;
    transition: all 0.2s;
    white-space: nowrap;
    cursor: pointer;
    text-align: center;

}

.tab-btn:hover {

    background: rgba(0, 240, 255, 0.15);
    color: #fff;

}

.tab-btn.active {

    background: linear-gradient(135deg, #00f0ff, #00c8ff);
    color: #07090e;
    box-shadow: 0 4px 16px rgba(0, 240, 255, 0.4);
    font-weight: 900;

}

.tab-content {

    display: none;

}

.tab-content.active {

    display: block;
    animation: fadeIn 0.3s ease;

}

@keyframes fadeIn {

    from {

    opacity: 0;
    transform: translateY(8px);

}

to {

    opacity: 1;
    transform: translateY(0);

}

}

.content-card {

    background: rgba(16, 20, 29, 0.6);
    backdrop-filter: blur(14px);
    border: 1.5px solid rgba(0, 240, 255, 0.15);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
    margin-bottom: 16px;

}

.card-title {

    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 16px;

}

.card-title .neon-text-span {

    color: #00f0ff;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.6);

}

.about-text {

    font-size: 0.9rem;
    line-height: 1.8;
    color: #b0c2ee;

}

.about-text p {

    margin-bottom: 12px;

}

.about-text strong {

    color: #fff;

}

.info-grid {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;

}

.info-grid .info-row {

    display: flex;
    flex-direction: column;
    background: rgba(0, 240, 255, 0.04);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 12px;
    padding: 10px 14px;

}

.info-key {

    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #8fa4d6;
    font-weight: 700;

}

.info-val {

    font-size: 0.85rem;
    color: #e5e5e5;
    font-weight: 700;
    margin-top: 2px;

}

.xat-card {

    background: linear-gradient(135deg, rgba(0, 240, 255, 0.08), rgba(0, 240, 255, 0.02));
    border: 1.5px solid rgba(0, 240, 255, 0.2);
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);

}

.xat-card h3 {

    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 8px;

}

.xat-card p {

    font-size: 0.82rem;
    color: #b0c2ee;
    line-height: 1.7;

}

.xat-animate {

    display:flex;
    flex-direction:column;
    align-items:center;
    gap:14px;

}

.pulse-ring {

    width: 100%;
    max-width: 280px;
    height: 4px;
    border-radius: 999px;
    background: rgba(0, 240, 255, 0.2);
    position: relative;
    overflow: hidden;

}

.pulse-ring::before {

    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.8), transparent);
    transform: translateX(-120%);
    animation: pulseMove 2.2s linear infinite;

}

.neon-text {

    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.4px;
    text-shadow: 0 0 12px rgba(0, 240, 255, 0.7), 0 0 24px rgba(0, 240, 255, 0.4);
    animation: glowPulseText 2.4s ease-in-out infinite alternate;

}

@keyframes pulseMove {

    to {

    transform: translateX(120%);

}

}

@keyframes glowPulseText {

    from {

    text-shadow: 0 0 8px rgba(0, 240, 255, 0.4), 0 0 18px rgba(0, 240, 255, 0.2);

}

to {

    text-shadow: 0 0 18px rgba(0, 240, 255, 0.9), 0 0 32px rgba(0, 240, 255, 0.5);

}

}

/* ── Amigos ── */
    .friends-grid {

    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 14px;

}

.friend-card {

    background: rgba(16, 20, 29, 0.5);
    border: 1.5px solid rgba(0, 240, 255, 0.15);
    border-radius: 18px;
    padding: 16px 10px 12px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    text-decoration: none;
    display: block;
    color: inherit;

}

.friend-card:hover {

    transform: translateY(-5px);
    box-shadow: 0 8px 26px rgba(0, 240, 255, 0.25);
    border-color: rgba(0, 240, 255, 0.5);

}

.friend-avatar-wrap {

    position: relative;
    width: 68px;
    height: 68px;
    margin: 0 auto 10px;

}

.friend-initial {

    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(0, 240, 255, 0.3);
    overflow: hidden;

}

.friend-initial img {

    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

}

.friend-online {

    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2.5px solid #0a0e17;

}

.friend-online.on {

    background: #00ff66;
    box-shadow: 0 0 6px rgba(0, 255, 102, 0.8);

}

.friend-name {

    font-size: 0.78rem;
    font-weight: 900;
    color: #f5f5f5;
    margin-bottom: 2px;

}

.friend-id {

    font-size: 0.62rem;
    color: #a2b4dc;
    letter-spacing: 0.5px;
    margin-bottom: 4px;

}

.friend-status {

    font-size: 0.66rem;
    color: #ccc;

}

.friend-xat-badge {

    display: inline-block;
    margin-top: 6px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.25);
    color: #b0c2ee;
    border-radius: 50px;
    padding: 2px 8px;

}

/* ── Sub-Galeria de GIFs Original ── */
    .inner-nav-container {

    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 25px;

}

.inner-nav-btn {

    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.2);
    color: #a2b4dc;
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;

}

.inner-nav-btn:hover, .inner-nav-btn.active {

    color: #ffffff;
    background: rgba(0, 240, 255, 0.25);
    border-color: #00f0ff;
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.3);

}

.category-bar {

    background: linear-gradient(90deg, rgba(0, 240, 255, 0.15), transparent);
    border-left: 4px solid #00f0ff;
    padding: 8px 14px;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin: 25px 0 15px 0;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;

}

.category-bar span {

    color: #00ff66;
    text-shadow: 0 0 8px rgba(0, 255, 102, 0.4);

}

.gallery-showcase-section {

    display: none;

}

.gallery-showcase-section.active {

    display: block;
    animation: fadeIn 0.4s ease forwards;

}

.showcase-grid {

    display: grid;
    gap: 15px;

}

.grid-compact {

    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));

}

.grid-normal {

    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));

}

.item-card {

    background: rgba(16, 20, 29, 0.4);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 12px;
    padding: 8px;
    text-align: center;
    transition: all 0.25s ease;

}

.item-card img {

    width: 100%;
    border-radius: 8px;
    margin-bottom: 8px;
    display: block;

}

.item-card span {

    font-size: 0.75rem;
    color: #a2b4dc;
    font-weight: 600;

}

/* ── Estrutura Exclusiva para a Galeria com Zoom ── */
    .zoom-gallery-grid {

    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 15px;

}

.zoom-card {

    position: relative;
    background: rgba(16, 20, 29, 0.5);
    border: 1.5px solid rgba(0, 240, 255, 0.15);
    border-radius: 16px;
    padding: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

}

.zoom-card:hover {

    transform: scale(1.03) translateY(-4px);
    border-color: #00f0ff;
    box-shadow: 0 8px 25px rgba(0, 240, 255, 0.3);

}

.zoom-img-container {

    width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;

}

.zoom-card img {

    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;

}

.zoom-card:hover img {

    transform: scale(1.08);

}

.zoom-card .zoom-label {

    font-size: 0.78rem;
    font-weight: 700;
    color: #e5e5e5;
    display: block;
    text-align: center;
    margin-top: 4px;

}

.zoom-badge {

    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(0, 240, 255, 0.85);
    color: #07090e;
    font-size: 0.58rem;
    font-weight: 900;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,240,255,0.4);

}

/* Lightbox */
    .lightbox-overlay {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 6, 10, 0.88);
    backdrop-filter: blur(14px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;

}

.lightbox-overlay.active {

    opacity: 1;
    pointer-events: auto;

}

.lightbox-img {

    max-width: 90%;
    max-height: 82vh;
    border-radius: 16px;
    box-shadow: 0 12px 60px rgba(0, 240, 255, 0.45);
    border: 2px solid rgba(0, 240, 255, 0.5);
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);

}

.lightbox-overlay.active .lightbox-img {

    transform: scale(1);

}

/* ── MUSIC PLAYER ── */
    .music-app {

    background: linear-gradient(145deg, #07090e 0%, #10141d 35%, #0d111a 100%);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0,0,0,0.5), inset 0 1px 0 rgba(0, 240, 255, 0.15);
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
    border: 1.5px solid rgba(0, 240, 255, 0.25);

}

.music-app::before {

    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 10%, rgba(0, 240, 255, 0.1) 0%, transparent 30%), radial-gradient(circle at 90% 20%, rgba(0, 240, 255, 0.05) 0%, transparent 28%);
    pointer-events: none;

}

.music-player-grid {

    display: grid;
    grid-template-columns: minmax(220px, 280px) 1fr;
    gap: 22px;
    align-items: start;

}

.album-section {

    padding: 24px;
    background: rgba(0, 240, 255, 0.03);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;

}

.album-art-wrap {

    width: 100%;
    max-width: 240px;
    height: 240px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);

}

.album-glow {

    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.25), transparent 55%);
    mix-blend-mode: screen;
    pointer-events: none;

}

.album-art {

    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;

}

.album-info {

    text-align: center;

}

.album-info .song-title {

    font-size: 1.25rem;
    margin-bottom: 6px;
    font-weight: 700;
    color: #fff;

}

.album-info .song-artist {

    font-size: 0.85rem;
    color: #a2b4dc;
    text-transform: uppercase;
    letter-spacing: 1px;

}

.playlist-card {

    background: rgba(16, 20, 29, 0.4);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 12px;

}

.playlist-title {

    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.playlist-title span {

    font-size: 0.75rem;
    font-family: 'Nunito';
    color: #00f0ff;
    text-shadow: 0 0 5px rgba(0, 240, 255, 0.4);

}

.tracklist {

    display: grid;
    gap: 8px;
    max-height: 220px;
    overflow-y: auto;
    padding-right: 4px;

}

.tracklist::-webkit-scrollbar {

    width: 6px;

}

.tracklist::-webkit-scrollbar-thumb {

    background: rgba(0, 240, 255, 0.3);
    border-radius: 999px;

}

.track-item {

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 8px;
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;

}

.track-item:last-child {

    border-bottom: none;

}

.track-item:hover {

    background: rgba(0, 240, 255, 0.08);

}

.track-meta {

    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: none;

}

.track-thumb {

    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.1);

}

.track-number {

    font-size: 0.78rem;
    color: #697da7;

}

.track-name {

    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;

}

.track-artist {

    font-size: 0.78rem;
    color: #8fa4d6;
    margin-left: 6px;
    font-weight: normal;

}

.track-duration {

    font-size: 0.78rem;
    color: #697da7;
    pointer-events: none;

}

.track-item.active {

    background: rgba(0, 240, 255, 0.15);
    border: 1px solid rgba(0, 240, 255, 0.4);
    box-shadow: 0 0 10px rgba(0,240,255,0.15);

}

.track-item.active .track-name {

    color: #00f0ff;
    text-shadow: 0 0 5px rgba(0, 240, 255, 0.4);

}

.track-item.played {

    opacity: 0.5;
    text-decoration: line-through;

}

.player-panel {

    background: rgba(16, 20, 29, 0.4);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 24px;
    padding: 28px;
    display: grid;
    gap: 20px;

}

.player-meta {

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

}

.player-badge {

    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #00f0ff;
    font-weight: 800;
    text-shadow: 0 0 5px rgba(0, 240, 255, 0.4);

}

.player-subtitle {

    color: #b0c2ee;
    letter-spacing: 0.8px;
    font-size: 0.82rem;

}

.song-actions {

    justify-content: flex-start;
    display: flex;
    gap: 8px;

}

.action-btn {

    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 50%;
    color: #b0c2ee;
    cursor: pointer;

}

.action-btn:hover {

    color: #fff;
    transform: scale(1.06);
    border-color: rgba(0, 240, 255, 0.4);

}

.ctrl-play {

    width: 64px;
    height: 64px;
    border: none;
    border-radius: 50%;
    background: #00f0ff;
    color: #07090e;
    font-size: 1.5rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.6);
    font-weight: bold;

}

.ctrl-play:hover {

    transform: scale(1.05);
    background: #00c8ff;

}

.progress-section {

    padding: 0;

}

.progress-bar-wrap {

    background: rgba(0, 240, 255, 0.15);
    height: 6px;
    border-radius: 3px;
    position: relative;
    cursor: pointer;

}

.progress-fill {

    background: linear-gradient(90deg, #00f0ff, #00c8ff);
    width: 0%;
    height: 100%;
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.6);

}

.time-row {

    margin-top: 6px;
    display: flex;
    justify-content: space-between;

}

.time-label {

    color: #697da7;
    font-size: 0.75rem;

}

.controls-section {

    justify-content: center;
    display: flex;
    align-items: center;
    gap: 16px;

}

.ctrl {

    background: none;
    border: none;
    color: #697da7;
    font-size: 1.2rem;
    cursor: pointer;

}

.ctrl:hover {

    color: #fff;

}

.ctrl.active {

    color: #00f0ff;
    text-shadow: 0 0 5px rgba(0,240,255,0.5);

}

.volume-section {
     padding: 0;
    display: flex;
    align-items: center;;
    justify-content: center;
    gap: 12px;
}

#volumeValue {

    min-width: 48px;

    text-align: right;

    color: #00f0ff;

    font-size: 0.80rem;

    font-weight: 800;

    text-shadow:
        0 0 8px rgba(0,240,255,.5);

}

.vol-slider {

    -webkit-appearance: none;
    appearance: none;

    width: 180px;
    height: 6px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #00f0ff,
            #ffffff
        );

    cursor: pointer;

    box-shadow:
        0 0 10px rgba(0,240,255,.25);

}

.vol-slider::-webkit-slider-thumb {

    -webkit-appearance: none;

    width: 18px;
    height: 18px;

    border-radius: 50%;

    background: #ffffff;

    border: 2px solid #00f0ff;

    box-shadow:
        0 0 10px rgba(0,240,255,.7);

    cursor: pointer;

}

.vol-slider::-webkit-slider-thumb:hover {

    transform: scale(1.15);

}



.player-panel-status {

    text-align: left;
    padding: 0;

}

.status-pill {

    background: rgba(0, 240, 255, 0.15);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: #d0dcfa;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;

}

.profile-footer {

    text-align: center;
    padding: 20px;
    font-size: 0.72rem;
    color: #697da7;
    letter-spacing: 1px;

}

.profile-footer span {

    color: #00f0ff;
    font-weight: 700;

}

@media (max-width: 600px) {

    .profile-header {

    flex-direction: column;
    align-items: center;
    text-align: center;

}

.profile-stats {

    margin-left: 0;
    justify-content: center;

}

.profile-tags {

    justify-content: center;

}

.info-grid {

    grid-template-columns: 1fr;

}

.tab-btn {

    font-size: 0.72rem;
    padding: 8px 10px;

}

.album-section {

    padding: 28px 24px 0;

}

.album-art-wrap {

    width: 160px;
    height: 160px;

}

.controls-section {

    padding: 16px 24px 24px;

}

.progress-section, .volume-section, .player-panel-status {

    padding-left: 24px;
    padding-right: 24px;

}

.music-player-grid {

    grid-template-columns: 1fr;

}

}

/* ── FOOTER ── */

footer {

    margin-top: 20px;

    padding: 18px;

    display: flex;
    flex-direction: row;

    align-items: center;
    justify-content: center;

    gap: 8px;

    background: rgba(16, 20, 29, 0.6);

    backdrop-filter: blur(14px);

    border: 1.5px solid rgba(0, 240, 255, 0.15);

    border-radius: 20px;

    box-shadow:
        0 4px 24px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(0,240,255,0.08);

    position: relative;

    overflow: hidden;

}

footer::before {

    content: '';

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(0,240,255,.9),
        transparent
    );

    animation: footerShine 4s linear infinite;

}

footer a {

    text-decoration: none;

    color: #00f0ff;

    font-size: 0.85rem;

    font-weight: 800;

    letter-spacing: 1px;

    transition: all .3s ease;

    text-shadow:
        0 0 8px rgba(0,240,255,.4);

}

footer a:hover {

    color: #ffffff;

    text-shadow:
        0 0 10px rgba(0,240,255,.8),
        0 0 20px rgba(0,240,255,.4);

}

#year {

    color: #8fa4d6;

    font-size: 0.75rem;

    letter-spacing: 2px;

    font-weight: 700;

}

@keyframes footerShine {

    from {

        left: -100%;

    }

    to {

        left: 100%;

    }

}