/* ============================================
   VTHANGIOS DESIGN SYSTEM
   ============================================ */

:root {
    --vi-bg: #fafafa;
    --vi-surface: rgba(255,255,255,0.88);
    --vi-surface-solid: #ffffff;
    --vi-border: rgba(0,0,0,0.07);
    --vi-shadow-sm: 0 2px 8px rgba(60,80,140,0.07), 0 1px 2px rgba(0,0,0,0.04);
    --vi-shadow: 0 8px 32px rgba(60,80,140,0.09), 0 2px 8px rgba(0,0,0,0.06);
    --vi-shadow-lg: 0 16px 48px rgba(60,80,140,0.13), 0 4px 16px rgba(0,0,0,0.07);
    --vi-radius: 22px;
    --vi-radius-sm: 16px;
    --vi-radius-xs: 12px;
    --vi-accent: #4a6cf7;
    --vi-accent2: #b983ff;
    --vi-text: #1a1a2e;
    --vi-text-muted: #7c8ca8;
    --vi-nav-h: calc(60px + env(safe-area-inset-top));
    --vi-font: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --vi-blur: blur(20px) saturate(180%);
}

* { box-sizing: border-box; }

/* Hide scrollbar */
::-webkit-scrollbar { display: none; }
* { scrollbar-width: none; -ms-overflow-style: none; }

body {
    font-family: var(--vi-font);
    margin: 0;
    background: var(--vi-bg);
    color: var(--vi-text);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    display: block;
    height: calc(var(--vi-nav-h) + 10px);
}

/* NAV */
.vthangios-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.80);
    backdrop-filter: var(--vi-blur);
    -webkit-backdrop-filter: var(--vi-blur);
    border-bottom: 1px solid var(--vi-border);
    height: var(--vi-nav-h);
    padding-top: env(safe-area-inset-top);
    padding-left: 20px;
    padding-right: 20px;
    z-index: 9999;
    box-shadow: var(--vi-shadow-sm);
}

.vthangios-nav-brand {
    font-weight: 800;
    font-size: 17px;
    background: linear-gradient(135deg, var(--vi-accent), var(--vi-accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.3px;
}

.vthangios-menu-toggle {
    -webkit-tap-highlight-color: transparent;
    outline: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 19px;
    cursor: pointer;
    transition: .2s ease;
}

.vthangios-menu-toggle span {
    display: block;
    height: 3px;
    background: var(--vi-accent);
    border-radius: 10px;
    transition: .25s ease;
}

.vthangios-menu-toggle:active { transform: scale(.9); }

.vthangios-theme-btn {
    -webkit-tap-highlight-color: transparent;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 20px;
    color: var(--vi-accent);
    padding: 6px 8px;
    border-radius: 50%;
    transition: .2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vthangios-theme-btn:active { transform: scale(.88); }

body.vthangios-dark .vthangios-theme-btn { color: #f5c518; }

/* BELL */
.vthangios-bell-btn {
    -webkit-tap-highlight-color: transparent;
    background: none; border: none; outline: none;
    cursor: pointer; position: relative;
    font-size: 20px; color: var(--vi-accent);
    padding: 6px 8px; border-radius: 50%;
    transition: .2s ease;
    display: flex; align-items: center; justify-content: center;
}
.vthangios-bell-btn:active { transform: scale(.88); }
.vthangios-bell-badge {
    position: absolute; top: 4px; right: 4px;
    background: #ef4444;
    width: 7px; height: 7px;
    border-radius: 50%;
    animation: bell-pulse 1.6s ease-in-out infinite;
}
@keyframes bell-pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(239,68,68,.6); }
    50%      { box-shadow: 0 0 0 5px rgba(239,68,68,0); }
}

/* NOTIF OVERLAY */
.vthangios-notif-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.25); z-index: 10000;
}
.vthangios-notif-overlay.open { display: block; }

/* NOTIF PANEL */
.vthangios-notif-panel {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -44%) scale(.97);
    width: calc(100% - 32px); max-width: 400px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,.22);
    z-index: 10001;
    max-height: 72vh; overflow: hidden;
    display: flex; flex-direction: column;
    opacity: 0; pointer-events: none;
    transition: transform .22s cubic-bezier(.34,1.56,.64,1), opacity .18s ease;
}
.vthangios-notif-panel.open {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1; pointer-events: auto;
}
.vthangios-notif-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 16px 10px;
    font-weight: 800; font-size: 15px; color: #111827;
    border-bottom: 1px solid rgba(0,0,0,.08);
}
.vthangios-notif-close {
    -webkit-tap-highlight-color: transparent;
    background: none; border: none; cursor: pointer;
    font-size: 16px; color: #6b7280;
    padding: 4px 6px; border-radius: 8px;
    transition: .15s ease;
}
.vthangios-notif-close:hover { }
.vthangios-notif-body { overflow-y: auto; padding: 8px 0; }
.vthangios-notif-item {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0,0,0,.07);
}
.vthangios-notif-item:last-child { border-bottom: none; }
.vthangios-notif-title { font-weight: 700; font-size: 14px; color: #111827; margin-bottom: 4px; }
.vthangios-notif-content { font-size: 13px; color: #4b5563; line-height: 1.5; margin-bottom: 6px; }
.vthangios-notif-content a { text-decoration: none; color: var(--vi-accent); }
.vthangios-notif-time { font-size: 11px; color: #9ca3af; }
.vthangios-notif-empty {
    text-align: center; padding: 32px 16px;
    color: #9ca3af; font-size: 14px; line-height: 2;
}
body.vthangios-dark .vthangios-notif-panel {
    background: #1e1e2e;
    border-color: rgba(255,255,255,.09);
}
body.vthangios-dark .vthangios-notif-header { color: #eef0f7; border-color: rgba(255,255,255,.08); }
body.vthangios-dark .vthangios-notif-close { color: #8892aa; }
body.vthangios-dark .vthangios-notif-close:hover { }
body.vthangios-dark .vthangios-notif-item { border-color: rgba(255,255,255,.07); }
body.vthangios-dark .vthangios-notif-title { color: #eef0f7; }
body.vthangios-dark .vthangios-notif-content { color: #a0aec0; }
body.vthangios-dark .vthangios-notif-time { color: #6b7280; }
body.vthangios-dark .vthangios-notif-empty { color: #6b7280; }

/* DARK MODE */
body.vthangios-dark {
    --vi-bg: #0f0f14;
    --vi-surface: rgba(28,28,38,0.90);
    --vi-surface-solid: #1c1c26;
    --vi-border: rgba(255,255,255,0.08);
    --vi-text: #eef0f7;
    --vi-text-muted: #8892aa;
    --vi-shadow-sm: 0 2px 8px rgba(0,0,0,0.30), 0 1px 2px rgba(0,0,0,0.20);
    --vi-shadow: 0 8px 32px rgba(0,0,0,0.40), 0 2px 8px rgba(0,0,0,0.25);
    --vi-shadow-lg: 0 16px 48px rgba(0,0,0,0.55), 0 4px 16px rgba(0,0,0,0.30);
}

body.vthangios-dark .vthangios-nav {
    background: rgba(15,15,20,0.85);
}

body.vthangios-dark .vthangios-link-btn,
body.vthangios-dark .vthangios-app-item,
body.vthangios-dark .vthangios-linkbox {
    background: var(--vi-surface);
    border-color: var(--vi-border);
}

body.vthangios-dark .vthangios-menu-toggle span {
    background: #eef0f7;
}

body.vthangios-dark .vthangios-skill {
    background: var(--vi-surface-solid);
}

/* AVATAR */
.vthangios-avatar-wrap {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 46px auto 20px;
    border-radius: 50%;
    overflow: visible;
}

.vthangios-avatar-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #4a6cf7, #b983ff, #ff6b9d, #ffd93d, #4a6cf7);
    animation: vthangios-avatar-ring-spin 3s linear infinite;
    z-index: 0;
}

.vthangios-avatar-wrap::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--vi-bg);
    z-index: 1;
}

.vthangios-avatar {
    position: absolute;
    inset: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border-radius: 50%;
    display: block;
    object-fit: cover;
    z-index: 2;
}

@keyframes vthangios-avatar-ring-spin {
    to { transform: rotate(360deg); }
}

/* TYPOGRAPHY */
.vthangios-iam {
    margin: 0 0 6px;
    text-align: center;
    font-size: 15px;
    color: var(--vi-text-muted);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.vthangios-name {
    margin: 0;
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    color: var(--vi-text);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.vthangios-verify {
    width: 27px;
    height: 27px;
    vertical-align: -3px;
}

.vthangios-headline {
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    margin: 10px 0 24px;
    color: var(--vi-text-muted);
}

.vthangios-gradient-text {
    background: linear-gradient(135deg, var(--vi-accent), var(--vi-accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.vthangios-headline {
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    margin: 10px 0 24px;
    color: var(--vi-text-muted);
}

.vthangios-gradient-text {
    background: linear-gradient(135deg, var(--vi-accent), var(--vi-accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* ONLINE DOT */
.vthangios-online-dot {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 22px;
    height: 22px;
    background: #22c55e;
    border-radius: 50%;
    border: 3px solid var(--vi-bg);
    z-index: 3;
}



.vthangios-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.vthangios-social-item {
    padding: 10px;
    border-radius: var(--vi-radius-sm);
    background: var(--vi-surface);
    backdrop-filter: var(--vi-blur);
    -webkit-backdrop-filter: var(--vi-blur);
    border: 1px solid var(--vi-border);
    box-shadow: var(--vi-shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .15s ease;
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
}

.vthangios-social-item img {
    border-radius: 10px;
    width: 40px;
    height: 40px;
    display: block;
}

.vthangios-social-item:active { transform: scale(.94); }

/* LINK BOX SECTION */
.vthangios-linkbox-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    padding: 28px 16px;
}

.vthangios-linkbox-section > div {
    flex: 1;
    min-width: 260px;
    display: flex;
}

.vthangios-linkbox {
    width: 100%;
    background: var(--vi-surface);
    backdrop-filter: var(--vi-blur);
    -webkit-backdrop-filter: var(--vi-blur);
    padding: 20px 28px;
    border-radius: var(--vi-radius);
    border: 1px solid var(--vi-border);
    box-shadow: var(--vi-shadow);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 0;
}

.vthangios-linkbox-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    justify-content: center;
    padding: 12px 0;
}

.vthangios-linkbox-title {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--vi-text);
}

.vthangios-link-btn {
    -webkit-tap-highlight-color: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    background: rgba(74,108,247,0.08);
    border: 1.5px solid rgba(74,108,247,0.18);
    color: var(--vi-accent);
    font-size: 20px;
    padding: 12px 18px;
    border-radius: var(--vi-radius-xs);
    text-decoration: none;
    font-weight: 600;
    transition: .15s ease;
    box-shadow: var(--vi-shadow-sm);
}

.vthangios-link-btn:active { transform: scale(.93); background: rgba(74,108,247,0.14); }

/* APP SECTION */
/* CATEGORY TABS */
.vthangios-filter-bar {
    margin: 0 16px 12px;
    display: flex;
    gap: 10px;
    align-items: center;
    background: var(--vi-surface);
    border: 1px solid var(--vi-border);
    border-radius: var(--vi-radius);
    box-shadow: var(--vi-shadow);
    padding: 10px 14px;
}
.vthangios-filter-search {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    height: 36px;
}
.vthangios-filter-search i {
    color: var(--vi-text-muted);
    font-size: 14px;
    flex-shrink: 0;
}
.vthangios-filter-search input {
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--vi-font);
    font-size: 16px;
    font-weight: 600;
    color: var(--vi-text);
    width: 100%;
}
.vthangios-filter-search input::placeholder { color: var(--vi-text-muted); }
.vthangios-filter-select {
    height: 36px;
    padding: 0 28px 0 8px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: var(--vi-text);
    font-family: var(--vi-font);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%238892aa' d='M8 10L3 5h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 14px;
}
.vthangios-group-block { display: block; }
.vthangios-group-block.hidden { display: none; }

.vthangios-app-section { padding: 0 0 24px; }

.vthangios-section-title {
    text-align: center;
    font-size: 21px;
    font-weight: 800;
    margin: 26px 0 10px;
    color: var(--vi-text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.vthangios-app-list {
    margin: 0 16px;
    background: var(--vi-surface);
    backdrop-filter: var(--vi-blur);
    -webkit-backdrop-filter: var(--vi-blur);
    border-radius: var(--vi-radius);
    border: 1px solid var(--vi-border);
    box-shadow: var(--vi-shadow);
    overflow: hidden;
    animation: vthangios-fadeup .5s ease-in-out;
}

.vthangios-app-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    position: relative;
}

.vthangios-app-item::after {
    content: "";
    position: absolute;
    left: calc(60px + 2.1rem);
    bottom: 0; right: 0;
    height: 0.5px;
    background: rgba(0,0,0,0.06);
}

.vthangios-app-item:last-child::after { display: none; }

.vthangios-app-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.vthangios-app-info img {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    box-shadow: var(--vi-shadow-sm);
    object-fit: cover;
    flex-shrink: 0;
}

.vthangios-app-name {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--vi-text);
}

.vthangios-app-desc {
    display: block;
    font-size: 13px;
    color: var(--vi-text-muted);
    margin-top: 3px;
    font-style: italic;
}

.vthangios-auto-time {
    display: block;
    font-size: 13px;
    color: var(--vi-text-muted);
    margin-top: 3px;
}

.vthangios-download-btn {
    -webkit-tap-highlight-color: transparent;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    outline: none;
    color: var(--vi-accent);
    padding: 0;
    margin-right: 2px;
    transition: .15s ease;
    flex-shrink: 0;
}

.vthangios-download-btn:active { transform: scale(.88); }

.vthangios-loading-icon {
    margin-left: 6px;
    animation: vthangios-spin 1s linear infinite;
    font-size: 22px;
    color: var(--vi-accent);
}

@keyframes vthangios-spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ALERT / MODAL */
.vthangios-alert-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.36);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 16px;
    overflow-y: auto;
}

.vthangios-alert-box {
    background: var(--vi-surface-solid);
    border: 1px solid var(--vi-border);
    box-shadow: var(--vi-shadow-lg);
    border-radius: var(--vi-radius);
    padding: 24px 20px;
    width: 100%;
    max-width: 360px;
    position: relative;
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    margin: auto;
    animation: vthangios-popIn .2s ease;
}

.vthangios-alert-box h3 {
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--vi-text);
}

.vthangios-alert-btn {
    padding: 9px 20px;
    border: 1px solid rgba(74,108,247,0.2);
    color: var(--vi-accent);
    font-weight: 700;
    background: rgba(74,108,247,0.07);
    border-radius: var(--vi-radius-xs);
    cursor: pointer;
    font-size: 15px;
    -webkit-tap-highlight-color: transparent;
    transition: .15s ease;
    font-family: var(--vi-font);
    box-shadow: var(--vi-shadow-sm);
}

.vthangios-alert-btn:active { transform: scale(.95); }

/* WAVE */
.vthangios-wave svg {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: -1px;
}

body.vthangios-dark .vthangios-wave path {
    fill: #1c1c26;
}

/* FOOTER */
.vthangios-footer {
    font-weight: 600;
    text-align: center;
    background: var(--vi-surface-solid);
    padding: 14px 16px;
    font-size: 13px;
    color: var(--vi-text-muted);
    border-top: 1px solid var(--vi-border);
}

/* CURSOR */
.vthangios-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: var(--vi-accent);
    border-radius: 2px;
    animation: vthangios-blink .7s infinite;
    margin-left: 2px;
    vertical-align: text-bottom;
}

@keyframes vthangios-blink {
    0%, 100% { opacity: 1 }
    50%       { opacity: 0 }
}

/* SNOWFLAKES */
.vthangios-snowflake {
    color: #aaccff;
    text-shadow: 0 0 8px rgba(180,220,255,0.5);
    font-family: Arial, sans-serif;
    position: fixed;
    top: -10%;
    z-index: 9998;
    user-select: none;
    cursor: default;
    pointer-events: none;
    animation-name: vthangios-snow-fall, vthangios-snow-shake;
    animation-duration: 10s, 3s;
    animation-timing-function: linear, ease-in-out;
    animation-iteration-count: infinite;
    animation-play-state: running;
}

.vthangios-snowflake:nth-of-type(1)  { font-size:10px; left:2%;   animation-delay:0s,0s }
.vthangios-snowflake:nth-of-type(2)  { font-size:14px; left:10%;  animation-delay:1s,1s }
.vthangios-snowflake:nth-of-type(3)  { font-size:18px; left:20%;  animation-delay:6s,.5s }
.vthangios-snowflake:nth-of-type(4)  { font-size:12px; left:30%;  animation-delay:4s,2s }
.vthangios-snowflake:nth-of-type(5)  { font-size:20px; left:40%;  animation-delay:2s,2s }
.vthangios-snowflake:nth-of-type(6)  { font-size:22px; left:50%;  animation-delay:8s,3s }
.vthangios-snowflake:nth-of-type(7)  { font-size:16px; left:60%;  animation-delay:6s,2s }
.vthangios-snowflake:nth-of-type(8)  { font-size:24px; left:70%;  animation-delay:2.5s,1s }
.vthangios-snowflake:nth-of-type(9)  { font-size:13px; left:80%;  animation-delay:1s,0s }
.vthangios-snowflake:nth-of-type(10) { font-size:19px; left:90%;  animation-delay:3s,1.5s }
.vthangios-snowflake:nth-of-type(11) { font-size:17px; left:25%;  animation-delay:2s,0s }
.vthangios-snowflake:nth-of-type(12) { font-size:25px; left:65%;  animation-delay:4s,2.5s }

@keyframes vthangios-snow-fall {
    0%   { top: -10% }
    100% { top: 100% }
}
@keyframes vthangios-snow-shake {
    0%, 100% { transform: translateX(0) }
    50%       { transform: translateX(60px) }
}

/* ANIMATIONS */
@keyframes vthangios-fadeup {
    from { opacity:0; transform:translateY(14px); }
    to   { opacity:1; transform:translateY(0); }
}
@keyframes vthangios-popIn {
    from { opacity:0; transform:scale(.94); }
    to   { opacity:1; transform:scale(1); }
}

/* RECAPTCHA */
.grecaptcha-badge { visibility: hidden !important; }

/* SKILL ANIMATION */
.vthangios-skill {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    padding: 40px 16px 70px;
}

/* MUSIC PLAYER */
.vthangios-music-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 28px 24px 24px;
    width: 280px;
    background: transparent;
    border-radius: 24px;
}
.vthangios-disc-outer {
    position: relative;
    width: 140px;
    height: 140px;
    flex-shrink: 0;
}
/* Spinning gradient ring behind disc */
.vthangios-disc-outer::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #4a6cf7, #b983ff, #ff6b9d, #ffd93d, #4a6cf7);
    z-index: 0;
    opacity: 1;
    transition: opacity .5s ease;
    animation: vthangios-ring-spin 6s linear infinite;
    animation-play-state: paused;
}
.vthangios-disc-outer:has(.vthangios-disc.playing)::before {
    opacity: 1;
    animation-play-state: running;
}
@keyframes vthangios-ring-spin { to { transform: rotate(360deg); } }

.vthangios-disc-wrap {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(0,0,0,.18);
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: box-shadow .5s ease;
}
/* Pulsing glow - always on */
.vthangios-disc-wrap {
    animation: vthangios-glow-pulse 2s ease-in-out infinite;
}
/* Faster glow when playing */
.vthangios-disc-outer:has(.vthangios-disc.playing) .vthangios-disc-wrap {
    animation: vthangios-glow-pulse 1.2s ease-in-out infinite;
}
@keyframes vthangios-glow-pulse {
    0%, 100% {
        box-shadow: 0 0 0 2.5px rgba(255,255,255,.65),
                    0 0 16px rgba(74,108,247,.65),
                    0 0 36px rgba(74,108,247,.3);
    }
    50% {
        box-shadow: 0 0 0 2.5px rgba(255,255,255,.9),
                    0 0 28px rgba(185,131,255,.85),
                    0 0 54px rgba(185,131,255,.4);
    }
}

.vthangios-disc {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    background: linear-gradient(135deg, var(--vi-accent), var(--vi-accent2));
    background-size: cover;
    background-position: center;
    animation: vthangios-disc-spin 8s linear infinite;
    animation-play-state: paused;
}
.vthangios-disc.playing { animation-play-state: running; }
@keyframes vthangios-disc-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
.vthangios-track-info { text-align: center; width: 100%; }
.vthangios-track-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--vi-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 232px;
    margin-bottom: 2px;
}
.vthangios-track-artist { font-size: 12px; color: var(--vi-text-muted); }
.vthangios-progress-wrap { display: flex; align-items: center; gap: 8px; width: 100%; }
.vthangios-time {
    font-size: 11px;
    color: var(--vi-text-muted);
    min-width: 36px;
    font-variant-numeric: tabular-nums;
}
.vthangios-time:last-child { text-align: right; }
.vthangios-progress-track {
    flex: 1;
    height: 4px;
    background: var(--vi-border);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}
.vthangios-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--vi-accent), var(--vi-accent2));
    border-radius: 4px;
    transition: width .3s linear;
    pointer-events: none;
}
.vthangios-controls { display: flex; align-items: center; gap: 20px; }
.vthangios-ctrl-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--vi-text-muted);
    font-size: 18px;
    padding: 6px;
    line-height: 1;
    transition: color .2s;
    -webkit-tap-highlight-color: transparent;
}
.vthangios-ctrl-btn:hover { color: var(--vi-accent); }
.vthangios-play-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--vi-text-muted);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .15s;
    -webkit-tap-highlight-color: transparent;
}
.vthangios-play-btn:active { transform: scale(.92); }
body.vthangios-dark .vthangios-skill { background: var(--vi-surface-solid); }
body.vthangios-dark .vthangios-music-player { background: transparent; }

