/* Asosiy Atmosfera */
.glow-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% -20%, #0a1b2e 0%, #010409 65%);
    z-index: -1;
}

/* Original Shaffof Dizayn */
.glass-container {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.glass-container:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

/* Premium Kirish Tugmasi */
.premium-nav-btn {
    position: relative;
    padding: 12px 35px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(34, 211, 238, 0.4);
    border-radius: 100px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: white;
    transition: 0.4s;
    overflow: hidden;
}

.premium-nav-btn:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.6);
    transform: scale(1.05);
}

/* 3D Tana Rasmi */
.body-3d-glow {
    height: 100%;
    object-fit: contain;
    mix-blend-mode: screen; /* Orqa fon qoraligini yo'qotadi */
    filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.4));
    animation: breathe 5s infinite ease-in-out;
}

@keyframes breathe {
    0%, 100% { transform: scale(1) translateY(0); filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.4)); }
    50% { transform: scale(1.05) translateY(-5px); filter: drop-shadow(0 0 35px rgba(6, 182, 212, 0.6)); }
}

/* Hover Stats */
.hover-stats-box {
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(-10px);
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-container:hover .hover-stats-box {
    opacity: 1;
    transform: translateY(0);
}

.mini-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 10px;
    border-radius: 12px;
    text-align: center;
}
.mini-pill span { display: block; font-weight: 800; font-size: 12px; }
.mini-pill small { font-size: 7px; text-transform: uppercase; opacity: 0.5; }

/* Bloklar Ichidagi Yozuvlar (Tiles) */
.neon-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 14px 20px;
    border-radius: 20px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
}
.neon-item:hover { background: rgba(34, 211, 238, 0.05); transform: translateX(8px); }

.info-tile {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px;
    border-radius: 22px;
    text-align: center;
}
.info-tile b { display: block; font-size: 14px; color: #10b981; }
.info-tile span { font-size: 10px; opacity: 0.5; }

.edu-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Neon Effektlar */
.neon-blue-glow {
    color: #fff;
    text-shadow: 0 0 15px rgba(6, 182, 212, 0.8), 0 0 30px rgba(6, 182, 212, 0.4);
}

.drop-shadow-emerald { filter: drop-shadow(0 0 15px #10b981); }
.drop-shadow-purple { filter: drop-shadow(0 0 15px #a855f7); }

.floating { animation: float 4s infinite ease-in-out; }
.floating-slow { animation: float 6s infinite ease-in-out; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* AI Engine Box */
.ai-footer-box {
    background: rgba(168, 85, 247, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.15);
    padding: 16px;
    border-radius: 25px;
}
.status-dot { width: 6px; height: 6px; background: #a855f7; border-radius: 50%; box-shadow: 0 0 10px #a855f7; animation: blink 1.5s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* Animatsiya Kirish */
.animate-fade-in {
    animation: fadeIn 1.2s ease-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}