/* ŽaibasGames - Išskirtinis Neoninis ir Stiklo (Glassmorphism) Dizainas */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --bg-dark: #070713;
    --bg-card: rgba(18, 18, 48, 0.65);
    --border-glass: rgba(255, 255, 255, 0.08);
    --neon-pink: #ff007f;
    --neon-cyan: #00ffff;
    --neon-purple: #9b51e0;
    --neon-yellow: #f1c40f;
    --neon-green: #00ff66;
    --text-main: #f3f3f9;
    --text-muted: #a4a4d0;
    --font-primary: 'Outfit', sans-serif;
    --glow-shadow-pink: 0 0 15px rgba(255, 0, 127, 0.4);
    --glow-shadow-cyan: 0 0 15px rgba(0, 255, 255, 0.4);
    --glow-shadow-purple: 0 0 15px rgba(155, 81, 224, 0.4);
    --glow-shadow-green: 0 0 15px rgba(0, 255, 102, 0.4);
    --glow-shadow-yellow: 0 0 15px rgba(241, 196, 15, 0.4);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-primary);
    min-height: 100vh;
    overflow-x: hidden;
    background-image: 
        radial-gradient(at 10% 20%, rgba(155, 81, 224, 0.15) 0px, transparent 50%),
        radial-gradient(at 90% 80%, rgba(0, 255, 255, 0.1) 0px, transparent 50%),
        radial-gradient(at 50% 50%, rgba(255, 0, 127, 0.05) 0px, transparent 60%);
    background-attachment: fixed;
}

/* Švelnus slinkties juostos stilius */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(155, 81, 224, 0.3);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(155, 81, 224, 0.6);
}

/* ----------------------------------------------------
   MAKETAS IR STRUKTŪRA
   ---------------------------------------------------- */
.app-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ----------------------------------------------------
   NAVIGACIJA / HEADER
   ---------------------------------------------------- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: rgba(10, 10, 30, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-icon {
    font-size: 2.2rem;
    color: var(--neon-yellow);
    text-shadow: var(--glow-shadow-yellow);
    animation: pulseGlow 2s infinite ease-in-out;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Monetų rodiklis */
.wallet-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(241, 196, 15, 0.3);
    padding: 8px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: inset 0 0 10px rgba(241, 196, 15, 0.05);
    transition: all 0.3s ease;
}

.wallet-badge:hover {
    border-color: var(--neon-yellow);
    box-shadow: var(--glow-shadow-yellow), inset 0 0 10px rgba(241, 196, 15, 0.1);
}

.coin-icon {
    font-size: 1.4rem;
    display: inline-block;
    animation: coinSpin 4s infinite linear;
}

.coin-balance {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--neon-yellow);
    text-shadow: 0 0 10px rgba(241, 196, 15, 0.3);
}

/* Garselio mygtukas */
.audio-toggle-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-main);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.audio-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-shadow-cyan);
    color: var(--neon-cyan);
}

/* Vartotojo avataro mygtukas */
.profile-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    padding: 5px 15px 5px 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 40px;
    transition: all 0.3s ease;
}

.profile-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--neon-pink);
    box-shadow: var(--glow-shadow-pink);
}

.avatar-circle-sm {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1e1e38;
    border: 2px solid var(--neon-pink);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px rgba(255, 0, 127, 0.3);
}

.profile-info {
    display: flex;
    flex-direction: column;
}

.profile-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
}

/* ----------------------------------------------------
   MARŠRUTIZATORIAUS SEKCIJOS (VIEWS)
   ---------------------------------------------------- */
.view-pane {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.view-pane.hidden {
    display: none !important;
    opacity: 0;
}

/* ----------------------------------------------------
   PAGRINDINIS PUSLAPIS: ŽAIDIMŲ SĄRAŠAS
   ---------------------------------------------------- */
/* Hero Baneris */
.hero-banner {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.5) 0%, rgba(255, 0, 127, 0.25) 100%);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    max-width: 60%;
    z-index: 2;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    background: linear-gradient(to right, #fff, #ebd3f8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title span {
    color: var(--neon-cyan);
    -webkit-text-fill-color: var(--neon-cyan);
    text-shadow: var(--glow-shadow-cyan);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.hero-stats {
    display: flex;
    gap: 30px;
}

.hero-stat-item {
    background: rgba(0, 0, 0, 0.25);
    padding: 10px 20px;
    border-radius: 12px;
    border-left: 3px solid var(--neon-purple);
}

.stat-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.stat-lbl {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero-avatar-preview {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #121230;
    border: 3px solid var(--neon-pink);
    box-shadow: var(--glow-shadow-pink);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.hero-avatar-preview:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Žaidimų grid'as */
.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 25px;
    background: var(--neon-cyan);
    border-radius: 3px;
    box-shadow: var(--glow-shadow-cyan);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* Žaidimo kortelė */
.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--card-accent, var(--neon-cyan));
    opacity: 0.7;
    transition: height 0.3s ease;
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: var(--card-accent, var(--neon-cyan));
    box-shadow: 0 12px 30px rgba(0,0,0,0.4), 0 0 20px rgba(var(--card-accent-rgb), 0.15);
}

.game-card:hover::before {
    height: 6px;
}

.game-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease;
}

.game-card:hover .game-icon-box {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(var(--card-accent-rgb), 0.1);
    border-color: var(--card-accent);
}

.game-meta h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.game-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 45px;
}

.game-reward-info {
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.2);
    padding: 6px 12px;
    border-radius: 8px;
    color: var(--neon-yellow);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    border: 1px solid rgba(241, 196, 15, 0.15);
}

.play-now-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: #fff;
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.game-card:hover .play-now-btn {
    background: var(--card-accent);
    border-color: var(--card-accent);
    box-shadow: 0 4px 15px rgba(var(--card-accent-rgb), 0.3);
    transform: scale(1.02);
}

/* Žaidimų akcentų spalvos */
.gc-clicker { 
    --card-accent: var(--neon-yellow); 
    --card-accent-rgb: 241, 196, 15;
}
.gc-dodger { 
    --card-accent: var(--neon-cyan); 
    --card-accent-rgb: 0, 255, 255;
}
.gc-memory { 
    --card-accent: var(--neon-purple); 
    --card-accent-rgb: 155, 81, 224;
}
.gc-snake { 
    --card-accent: var(--neon-green); 
    --card-accent-rgb: 0, 255, 102;
}

/* ----------------------------------------------------
   ŽAIDIMO KAMBARYS (PLAYROOM)
   ---------------------------------------------------- */
.playroom-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}

@media (max-width: 900px) {
    .playroom-layout {
        grid-template-columns: 1fr;
    }
}

.game-screen-wrapper {
    background: rgba(10, 10, 25, 0.8);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 20px;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    position: relative;
}

.game-screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-back {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-main);
    padding: 8px 16px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: rgba(255, 0, 127, 0.1);
    border-color: var(--neon-pink);
    color: var(--neon-pink);
}

.game-title-active {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.1);
}

/* Žaidimų ekranų konteineriai */
#game-viewport {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    background: #090915;
}

/* Drobės žaidimų bendri stiliai */
.canvas-game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 15px;
    position: relative;
}

.canvas-game-container canvas {
    background: #0f0f1c;
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    max-width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.game-hud {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
    gap: 5px;
}

.game-score {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
}

.game-score span {
    color: var(--neon-cyan);
    text-shadow: var(--glow-shadow-cyan);
}

.game-instruction {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-align: center;
}

/* Žaidimo pabaigos overlay */
.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 7, 19, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.game-overlay.hidden {
    display: none;
}

.overlay-content {
    text-align: center;
    padding: 30px;
    background: rgba(20, 20, 45, 0.9);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), var(--glow-shadow-pink);
    max-width: 350px;
    animation: zoomIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.overlay-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--neon-pink);
    text-shadow: var(--glow-shadow-pink);
    margin-bottom: 10px;
}

.overlay-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.bonus-msg {
    font-weight: 700;
    color: var(--neon-yellow) !important;
    text-shadow: var(--glow-shadow-yellow);
}

.neon-btn {
    background: var(--neon-pink);
    border: none;
    color: #fff;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--glow-shadow-pink);
}

.neon-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 0, 127, 0.7);
}

/* ----------------------------------------------------
   GYVATĖLĖS VALDYMAS MOBILIESIEMS
   ---------------------------------------------------- */
.mobile-controls {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
}

.control-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: #fff;
    border-radius: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    touch-action: manipulation;
}

.control-btn:active {
    background: var(--neon-green);
    color: #000;
    box-shadow: var(--glow-shadow-green);
}

.mid-row {
    display: flex;
    gap: 30px;
}

@media (max-width: 768px) {
    .mobile-controls {
        display: flex;
    }
}

/* ----------------------------------------------------
   CLICKER SPECIFINIAI STILIAI
   ---------------------------------------------------- */
.clicker-game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10px;
    justify-content: space-around;
}

.clicker-main-area {
    margin: 20px 0;
}

.clicker-coin-wrapper {
    width: 160px;
    height: 160px;
    cursor: pointer;
    position: relative;
    user-select: none;
    transition: transform 0.1s ease;
}

.clicker-gold-coin {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #f5cd79 0%, #f19066 100%);
    border-radius: 50%;
    border: 8px solid #f3a683;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), var(--glow-shadow-yellow), inset 0 0 15px rgba(255,255,255,0.4);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: floatAnim 3s infinite ease-in-out;
}

.clicker-float-txt {
    position: absolute;
    color: var(--neon-yellow);
    font-weight: 800;
    font-size: 1.8rem;
    pointer-events: none;
    animation: clickFloatUp 0.8s forwards ease-out;
    text-shadow: 0 0 10px rgba(241, 196, 15, 0.8), 0 2px 5px rgba(0,0,0,0.8);
    z-index: 100;
}

.clicker-shop {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 580px;
}

@media (max-width: 600px) {
    .clicker-shop {
        grid-template-columns: 1fr;
    }
}

.clicker-shop-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    color: #fff;
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.clicker-shop-btn:hover:not(:disabled) {
    background: rgba(241, 196, 15, 0.1);
    border-color: var(--neon-yellow);
    box-shadow: var(--glow-shadow-yellow);
}

.clicker-shop-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.clicker-shop-btn .title {
    font-size: 0.78rem;
    font-weight: 600;
    text-align: center;
}

.clicker-shop-btn .cost {
    font-size: 0.72rem;
    color: var(--neon-yellow);
    font-weight: 700;
}

/* ----------------------------------------------------
   ATMINTIES KORTELIŲ SPECIFINIAI STILIAI
   ---------------------------------------------------- */
.memory-game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10px;
}

.memory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 320px;
    margin-top: 15px;
}

.memory-card {
    aspect-ratio: 1;
    perspective: 1000px;
    cursor: pointer;
}

.card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.memory-card.flipped .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid var(--border-glass);
}

.card-front {
    background: linear-gradient(135deg, #1b1b3a, #0b0b1c);
    color: var(--neon-purple);
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: inset 0 0 10px rgba(155, 81, 224, 0.1);
}

.card-front:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 0 10px rgba(155, 81, 224, 0.3);
}

.card-back {
    background: #11112b;
    transform: rotateY(180deg);
    font-size: 2rem;
    border-color: var(--neon-purple);
}

.memory-card.matched .card-back {
    background: rgba(0, 255, 102, 0.1);
    border-color: var(--neon-green);
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.15);
}

/* ----------------------------------------------------
   ŽAIDIMO KAMBARIO ŠONINĖ JOUSTA (STATISTIKA & LAIKAS)
   ---------------------------------------------------- */
.game-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-panel {
    background: rgba(10, 10, 25, 0.6);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.sidebar-panel h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 6px;
}

/* Laiko monetų uždarbio skaitiklis */
.reward-timer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
    gap: 15px;
}

.circular-progress {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(closest-side, #0a0a19 79%, transparent 80% 100%),
                conic-gradient(var(--neon-pink) 0%, rgba(255,255,255,0.05) 0%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    transition: background 0.3s ease;
}

.circular-progress::before {
    content: '';
    position: absolute;
    width: 98px;
    height: 98px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.03);
    pointer-events: none;
}

.timer-text-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-seconds {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.timer-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.reward-info-text {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.reward-info-text strong {
    color: var(--neon-pink);
    text-shadow: 0 0 5px rgba(255,0,127,0.2);
}

.active-multiplier-badge {
    background: rgba(0, 255, 102, 0.1);
    color: var(--neon-green);
    border: 1px solid rgba(0,255,102,0.2);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    animation: pulseBorder 1.5s infinite ease-in-out;
}

/* ----------------------------------------------------
   AVATARO PARDUOTUVĖ & REDAKTORIUS (AVATAR VIEW)
   ---------------------------------------------------- */
.avatar-editor-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 30px;
}

@media (max-width: 850px) {
    .avatar-editor-layout {
        grid-template-columns: 1fr;
    }
}

/* Kairysis panelis - Avataro Peržiūra */
.avatar-preview-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(10, 10, 25, 0.7);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    height: fit-content;
}

.avatar-preview-frame {
    width: 230px;
    height: 230px;
    border-radius: 30px;
    background: #101026;
    border: 2px solid var(--border-glass);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.6), inset 0 0 20px rgba(0,0,0,0.8);
    transition: border-color 0.3s ease;
    margin-bottom: 25px;
}

.avatar-preview-frame:hover {
    border-color: var(--neon-pink);
}

.avatar-actions {
    display: flex;
    gap: 12px;
    width: 100%;
}

.avatar-actions button {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: #fff;
    padding: 10px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.88rem;
    transition: all 0.3s ease;
}

.avatar-actions button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
}

.avatar-actions .btn-randomize {
    background: linear-gradient(135deg, rgba(155, 81, 224, 0.3), rgba(255, 0, 127, 0.3));
    border-color: rgba(255,255,255,0.1);
}

.avatar-actions .btn-randomize:hover {
    background: linear-gradient(135deg, rgba(155, 81, 224, 0.6), rgba(255, 0, 127, 0.6));
    border-color: var(--neon-pink);
    color: #fff;
    box-shadow: var(--glow-shadow-pink);
}

/* Dešinysis panelis - Parduotuvė */
.shop-panel {
    background: rgba(10, 10, 25, 0.5);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

/* Parduotuvės kategorijų skirtukai (Tabs) */
.shop-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    overflow-x: auto;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.shop-tab-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.shop-tab-btn:hover {
    background: rgba(255,255,255,0.07);
    color: #fff;
}

.shop-tab-btn.active {
    background: var(--neon-purple);
    border-color: var(--neon-purple);
    color: #fff;
    box-shadow: var(--glow-shadow-purple);
}

/* Prekių grid'as */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    max-height: 480px;
    overflow-y: auto;
    padding-right: 5px;
}

.shop-item-card {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.shop-item-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-3px);
}

.shop-item-card.equipped {
    border-color: var(--neon-pink);
    background: rgba(255, 0, 127, 0.04);
}

.item-badge-equipped {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--neon-pink);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 20px;
}

/* Prekės mini portretas */
.item-preview-box {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: #181830;
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.item-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.item-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.3;
    min-height: 28px;
}

/* Pirkimo / užsidėjimo mygtukai */
.item-action-btn {
    width: 100%;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Nemokamas / Užsidėti */
.btn-equip {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
}

.btn-equip:hover {
    background: var(--neon-cyan);
    border-color: var(--neon-cyan);
    color: #000;
    box-shadow: var(--glow-shadow-cyan);
}

/* Jau užsidėtas */
.btn-active {
    background: var(--neon-pink);
    border: 1px solid var(--neon-pink);
    color: #fff;
    cursor: default;
}

/* Pirkti už monetas */
.btn-buy {
    background: rgba(241, 196, 15, 0.1);
    border: 1px solid rgba(241, 196, 15, 0.4);
    color: var(--neon-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-buy:hover {
    background: var(--neon-yellow);
    border-color: var(--neon-yellow);
    color: #000;
    box-shadow: var(--glow-shadow-yellow);
}

.btn-buy.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: rgba(255,255,255,0.03) !important;
    border-color: rgba(255,255,255,0.05) !important;
    color: var(--text-muted) !important;
    box-shadow: none !important;
}

/* ----------------------------------------------------
   PASIEKIMŲ PANELIS (ACHIEVEMENTS PANEL)
   ---------------------------------------------------- */
.achievements-panel {
    background: rgba(10, 10, 25, 0.6);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 25px;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.achievements-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.achievement-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    border-color: rgba(0, 255, 255, 0.15);
    background: rgba(255,255,255,0.02);
}

.achievement-card.completed {
    border-color: rgba(0, 255, 102, 0.2);
    background: rgba(0, 255, 102, 0.02);
}

.ach-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.achievement-card.completed .ach-icon-box {
    background: rgba(0, 255, 102, 0.1);
    color: var(--neon-green);
    box-shadow: 0 0 10px rgba(0,255,102,0.1);
}

.ach-info {
    flex: 1;
}

.ach-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.ach-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.ach-reward {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--neon-yellow);
    margin-top: 2px;
}

.ach-status {
    font-size: 1.2rem;
    color: var(--neon-green);
}

/* ----------------------------------------------------
   UŽVEDIMO ANIMACIJŲ / PAPILDOMI EFEKTAI
   ---------------------------------------------------- */
@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(241, 196, 15, 0.3);
    }
    50% {
        transform: scale(1.08);
        text-shadow: 0 0 20px rgba(241, 196, 15, 0.8), 0 0 30px rgba(241, 196, 15, 0.4);
    }
}

@keyframes pulseBorder {
    0%, 100% {
        border-color: rgba(0,255,102,0.2);
        box-shadow: 0 0 5px rgba(0,255,102,0.05);
    }
    50% {
        border-color: rgba(0,255,102,0.6);
        box-shadow: 0 0 15px rgba(0,255,102,0.2);
    }
}

@keyframes coinSpin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes clickFloatUp {
    0% {
        transform: translateY(0) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translateY(-80px) scale(1.1);
        opacity: 0;
    }
}

@keyframes zoomIn {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Skraidančio teksto pranešimas apie monetų uždarbį */
.coin-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(10, 10, 30, 0.9);
    border: 1px solid var(--neon-yellow);
    border-radius: 16px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), var(--glow-shadow-yellow);
    animation: toastSlideIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
               toastFadeOut 0.5s 3.5s forwards ease-in;
    z-index: 9999;
}

.toast-icon {
    font-size: 2rem;
    animation: coinSpin 2s infinite linear;
}

.toast-content h5 {
    color: var(--neon-yellow);
    font-size: 1rem;
    font-weight: 800;
}

.toast-content p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

@keyframes toastSlideIn {
    0% { transform: translateX(120%); }
    100% { transform: translateX(0); }
}

@keyframes toastFadeOut {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

/* ====================================================
   PROFILIŲ PASIRINKIMO MODALO STILIAI
   ==================================================== */
.profile-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 4, 12, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.profile-modal-overlay.hidden {
    display: none !important;
    opacity: 0;
    pointer-events: none;
}

.profile-modal-card {
    background: rgba(18, 18, 48, 0.6);
    border: 1px solid rgba(155, 81, 224, 0.25);
    border-radius: 28px;
    padding: 40px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(155, 81, 224, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: zoomIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.profile-modal-header {
    margin-bottom: 30px;
}

.modal-lightning {
    font-size: 3rem;
    display: inline-block;
    color: var(--neon-yellow);
    text-shadow: var(--glow-shadow-yellow);
    animation: pulseGlow 1.5s infinite ease-in-out;
    margin-bottom: 10px;
}

.profile-modal-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.profile-modal-header p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Profilių sąrašas ir kortelės */
.profile-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 15px;
    width: 100%;
    max-height: 280px;
    overflow-y: auto;
    margin-bottom: 30px;
    padding: 5px;
    justify-content: center;
}

.profile-item-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    color: #fff;
    padding: 18px 12px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.01);
}

.profile-item-btn:hover {
    background: rgba(155, 81, 224, 0.08);
    border-color: var(--neon-purple);
    transform: translateY(-5px);
    box-shadow: var(--glow-shadow-purple), inset 0 0 10px rgba(155, 81, 224, 0.05);
}

/* Didelis avataro rėmelis kortelės viduje */
.profile-card-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #111126;
    border: 2px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: border-color 0.3s ease;
}

.profile-item-btn:hover .profile-card-avatar {
    border-color: var(--neon-purple);
    box-shadow: 0 0 10px rgba(155, 81, 224, 0.4);
}

.profile-card-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Auksinis monetų ženkliukas po vardu */
.profile-card-coins {
    background: rgba(241, 196, 15, 0.1);
    border: 1px solid rgba(241, 196, 15, 0.25);
    color: var(--neon-yellow);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}


/* Sukūrimo zona */
.profile-create-area {
    display: flex;
    gap: 12px;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 25px;
}

.profile-create-area input {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 12px 18px;
    color: #fff;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.profile-create-area input:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.5);
}

.profile-create-area input::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.profile-create-area .neon-btn {
    padding: 12px 24px;
    white-space: nowrap;
    background: var(--neon-cyan);
    color: #000;
    box-shadow: var(--glow-shadow-cyan);
}

.profile-create-area .neon-btn:hover {
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.7);
}

/* ====================================================
   PAPILDOMI DINAMINIAI MOBILIŲJŲ ĮRENGINIŲ RESPONSIVE APRIBOJIMAI
   (PILNA ADAPTACIJA TELEFONAMS / PLANŠETĖMS)
   ==================================================== */

/* 1. PLANŠETĖMS (MAŽIAU NEI 900PX) */
@media (max-width: 900px) {
    .app-container {
        padding: 10px;
    }
    
    header {
        padding: 12px 20px;
        margin-bottom: 20px;
    }
    
    .hero-banner {
        padding: 30px;
    }
    
    .avatar-editor-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .avatar-preview-panel {
        height: auto;
    }
}

/* 2. TELEFONAMS (MAŽIAU NEI 768PX) */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    /* Švarus Header pritaikymas */
    header {
        padding: 10px 15px;
        border-radius: 15px;
        margin-bottom: 15px;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }

    .nav-controls {
        gap: 10px;
    }

    .wallet-badge {
        padding: 6px 12px;
        border-radius: 20px;
    }
    
    .coin-icon {
        font-size: 1.1rem;
    }
    
    .coin-balance {
        font-size: 1.05rem;
    }

    .audio-toggle-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    /* Paslepiame tekstą šalia mažiuko avataro, rodome tik apskritimą */
    .profile-badge {
        padding: 4px;
        border-radius: 50%;
    }
    
    .profile-info {
        display: none; /* Paslepiame tekstą mobiliuosiuose ekrano vietai taupyti */
    }

    .avatar-circle-sm {
        width: 36px;
        height: 36px;
    }

    /* Hero reklamos sekcija */
    .hero-banner {
        flex-direction: column-reverse;
        padding: 25px 20px;
        text-align: center;
        gap: 20px;
        border-radius: 20px;
        margin-bottom: 25px;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .hero-stats {
        gap: 15px;
        width: 100%;
        justify-content: center;
    }
    
    .hero-stat-item {
        padding: 8px 12px;
        flex: 1;
        max-width: 110px;
    }
    
    .stat-val {
        font-size: 1.2rem;
    }
    
    .stat-lbl {
        font-size: 0.75rem;
    }
    
    .hero-avatar-preview {
        width: 110px;
        height: 110px;
    }

    /* Žaidimų grid'as */
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
        gap: 15px;
    }
    
    .game-card {
        padding: 20px;
    }

    /* Pasiekimai */
    .achievements-list {
        grid-template-columns: 1fr;
    }

    /* Žaidimų kambarys (Playroom) */
    .playroom-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .game-screen-wrapper {
        min-height: auto;
        padding: 12px;
        border-radius: 20px;
    }
    
    .game-screen-header {
        margin-bottom: 10px;
    }
    
    .game-title-active {
        font-size: 1.15rem;
    }
    
    .btn-back {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    #game-viewport {
        border-radius: 12px;
        min-height: 320px;
    }

    /* Canvas žaidimų automatinis suspaudimas, kad neviršytų ekrano pločio */
    .canvas-game-container canvas {
        width: 100% !important;
        max-width: 100%;
        height: auto !important;
        border-width: 1px;
    }
    
    .game-hud {
        margin-bottom: 8px;
    }
    
    .game-score {
        font-size: 1.15rem;
    }
    
    .game-instruction {
        font-size: 0.75rem;
    }

    /* Parduotuvės skirtukai */
    .shop-tabs {
        gap: 6px;
        margin-bottom: 15px;
    }
    
    .shop-tab-btn {
        padding: 8px 12px;
        font-size: 0.82rem;
        border-radius: 8px;
    }

    /* Vartotojų kūrimo modalas telefonu */
    .profile-modal-card {
        padding: 25px 20px;
        max-width: 90%;
        border-radius: 20px;
    }
    
    .profile-modal-header h2 {
        font-size: 1.6rem;
    }
    
    .profile-modal-header p {
        font-size: 0.82rem;
    }
    
    .profile-create-area {
        flex-direction: column;
        gap: 10px;
        padding-top: 15px;
    }
    
    .profile-create-area input {
        width: 100%;
    }
    
    .profile-create-area .neon-btn {
        width: 100%;
    }
}

/* 3. MAŽIEMS TELEFONAMS (MAŽIAU NEI 480PX) */
@media (max-width: 480px) {
    /* Paslepiame logotipą (paliekame tik žaibą), kad tilptų monetos ir vartotojas */
    .logo-text {
        display: none !important;
    }
    
    header {
        padding: 8px 10px;
    }

    .nav-controls {
        width: 100%;
        justify-content: space-between;
    }
    
    /* Parduotuvė telefonu: 2 prekės eilutėje patogiam naršymui */
    .shop-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
        max-height: 400px;
    }
    
    .shop-item-card {
        padding: 10px;
    }
    
    .item-preview-box {
        width: 64px;
        height: 64px;
        margin-bottom: 8px;
    }
    
    .item-name {
        font-size: 0.82rem;
        min-height: auto;
    }
    
    .item-desc {
        display: none !important; /* Paslepiame aprašymus kortelėse telefonu vietos taupymui */
    }
    
    .item-action-btn {
        padding: 6px 8px;
        font-size: 0.72rem;
    }

    /* Avataro peržiūros rėmelis redaktoriuje */
    .avatar-preview-panel {
        padding: 15px;
    }
    
    .avatar-preview-frame {
        width: 160px;
        height: 160px;
        border-radius: 20px;
        margin-bottom: 15px;
    }
    
    .avatar-actions {
        gap: 8px;
    }
    
    .avatar-actions button {
        padding: 8px;
        font-size: 0.8rem;
    }

    /* Clicker žaidimo spaudymo monetos sumažinimas */
    .clicker-gold-coin {
        width: 130px;
        height: 130px;
        font-size: 4rem;
        border-width: 6px;
    }
    
    .clicker-shop {
        gap: 8px;
    }
    
    .clicker-shop-btn {
        padding: 8px;
    }
    
    .clicker-shop-btn .title {
        font-size: 0.72rem;
    }
}

/* ====================================================
   SERVERIO RYŠIO BŪSENOS INDIKATORIAI
   ==================================================== */
.server-status-info {
    font-size: 0.85rem;
    margin: -15px 0 25px 0;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.server-status-info.online {
    color: var(--neon-green);
    background: rgba(0, 255, 102, 0.08);
    border: 1px solid rgba(0, 255, 102, 0.2);
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.05);
}

.server-status-info.offline {
    color: var(--neon-pink);
    background: rgba(255, 0, 127, 0.08);
    border: 1px solid rgba(255, 0, 127, 0.2);
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.05);
}

.server-status-info.warning {
    color: var(--neon-yellow);
    background: rgba(241, 196, 15, 0.08);
    border: 1px solid rgba(241, 196, 15, 0.25);
    box-shadow: 0 0 10px rgba(241, 196, 15, 0.05);
    line-height: 1.4;
    max-width: 90%;
}

/* Prisijungusių žaidėjų būsena (glowing dot) */
.profile-card-avatar {
    position: relative;
}

.online-indicator-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--neon-green);
    border: 2px solid #111126;
    box-shadow: 0 0 8px var(--neon-green);
    z-index: 5;
    animation: pulseGlowGreen 1.5s infinite ease-in-out;
}

.profile-card-playing-badge {
    position: absolute;
    top: 2px;
    left: 2px;
    background: var(--neon-purple);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 1px 5px;
    border-radius: 10px;
    box-shadow: 0 0 6px var(--neon-purple);
    z-index: 5;
}

@keyframes pulseGlowGreen {
    0%, 100% { transform: scale(1); box-shadow: 0 0 6px var(--neon-green); }
    50% { transform: scale(1.15); box-shadow: 0 0 12px var(--neon-green); }
}
