/* ============================================
   ZANAT ⚡ GTA VI Style
   ============================================ */

:root {
    --neon-purple: #B537F2;
    --neon-blue: #00D4FF;
    --neon-orange: #FF6B35;
    --neon-pink: #FF2E97;
    --neon-yellow: #FFD700;
    --bg-dark: #0A0015;
    --bg-mid: #1A0A2E;
    --bg-card: rgba(26, 10, 46, 0.85);
    --text-main: #FFFFFF;
    --text-dim: rgba(255, 255, 255, 0.6);
}

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

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background image + overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./bg-zanat.jpg?v=5') center center / cover no-repeat;
    background-color: #1A0A2E;
    z-index: -2;
    /* Force fill: use img tag fallback below */
}

/* Fullscreen bg image that always fills — no black bars ever */
.bg-fill {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100vw;
    min-height: 100vh;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -3;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(181, 55, 242, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 46, 151, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, rgba(10, 0, 21, 0.3) 0%, rgba(26, 10, 46, 0.25) 40%, rgba(45, 16, 69, 0.3) 70%, rgba(10, 0, 21, 0.5) 100%);
    z-index: -1;
}

/* Neon frame around background */
.neon-frame {
    position: fixed;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 2px solid rgba(0, 212, 255, 0.8);
    border-radius: 18px;
    z-index: 2;
    pointer-events: none;
    box-shadow:
        0 0 8px rgba(0, 212, 255, 0.6),
        0 0 20px rgba(0, 212, 255, 0.3),
        0 0 40px rgba(181, 55, 242, 0.2),
        inset 0 0 8px rgba(0, 212, 255, 0.4),
        inset 0 0 20px rgba(181, 55, 242, 0.15);
    animation: neon-flicker 4s ease-in-out infinite;
}

/* Corner accents */
.neon-frame::before,
.neon-frame::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-color: var(--neon-pink);
    border-style: solid;
    border-width: 0;
}

.neon-frame::before {
    top: -1px;
    left: -1px;
    border-top-width: 3px;
    border-left-width: 3px;
    border-radius: 18px 0 0 0;
    box-shadow: -2px -2px 12px rgba(255, 46, 151, 0.6);
}

.neon-frame::after {
    bottom: -1px;
    right: -1px;
    border-bottom-width: 3px;
    border-right-width: 3px;
    border-radius: 0 0 18px 0;
    box-shadow: 2px 2px 12px rgba(255, 46, 151, 0.6);
}

@keyframes neon-flicker {
    0%, 100% { 
        opacity: 1; 
        box-shadow: 0 0 8px rgba(0, 212, 255, 0.6), 0 0 20px rgba(0, 212, 255, 0.3), 0 0 40px rgba(181, 55, 242, 0.2), inset 0 0 8px rgba(0, 212, 255, 0.4), inset 0 0 20px rgba(181, 55, 242, 0.15);
    }
    50% { 
        opacity: 0.92; 
        box-shadow: 0 0 12px rgba(0, 212, 255, 0.8), 0 0 30px rgba(0, 212, 255, 0.5), 0 0 60px rgba(181, 55, 242, 0.3), inset 0 0 12px rgba(0, 212, 255, 0.5), inset 0 0 30px rgba(181, 55, 242, 0.2);
    }
}

/* Scan lines overlay */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
}

/* Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: float linear infinite;
    opacity: 0;
}

@keyframes float {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* Splash screen — 2 sec foto e pastër */
.splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: #1A0A2E;
    overflow: hidden;
    animation: splashZoom 2.8s ease-out forwards;
    pointer-events: none;
}

@keyframes splashZoom {
    0% { transform: scale(1); opacity: 1; }
    70% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1); opacity: 0; visibility: hidden; }
}

@keyframes splashFade {
    0% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
}

/* Container — hidden first, appears after splash */
.container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
    text-align: center;
    opacity: 0;
    animation: contentAppear 0.8s ease-out 2s forwards;
}

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

/* Logo */
.logo-wrapper {
    margin-bottom: 50px;
    animation: fadeInDown 1s ease-out;
}

.logo {
    font-family: 'Passion One', cursive;
    font-size: clamp(80px, 15vw, 160px);
    font-weight: 900;
    letter-spacing: 8px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(181, 55, 242, 0.5));
    text-transform: uppercase;
    position: relative;
    animation: glow-pulse 3s ease-in-out infinite;
}

.logo::after {
    content: 'ZANAT';
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'Passion One', cursive;
    font-size: clamp(80px, 15vw, 160px);
    font-weight: 900;
    letter-spacing: 8px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
}

@keyframes glow-pulse {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(181, 55, 242, 0.5)); }
    50% { filter: drop-shadow(0 0 60px rgba(255, 46, 151, 0.7)); }
}

.tagline {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 600;
    color: var(--text-dim);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-top: -5px;
}

/* Choices */
.choices {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.3s both;
    flex-wrap: wrap;
    justify-content: center;
}

.choice-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 260px;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 3px solid transparent;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.choice-btn.kam {
    background: linear-gradient(145deg, rgba(181, 55, 242, 0.45), rgba(255, 46, 151, 0.25));
    border-color: var(--neon-purple);
    box-shadow: 
        0 8px 32px rgba(181, 55, 242, 0.4),
        0 0 20px rgba(181, 55, 242, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 0 20px rgba(181, 55, 242, 0.15);
}

.choice-btn.dua {
    background: linear-gradient(145deg, rgba(0, 212, 255, 0.45), rgba(255, 107, 53, 0.25));
    border-color: var(--neon-blue);
    box-shadow: 
        0 8px 32px rgba(0, 212, 255, 0.4),
        0 0 20px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 0 20px rgba(0, 212, 255, 0.15);
}

.choice-btn:active {
    transform: translateY(2px) scale(0.97);
    transition: all 0.1s ease;
}

.choice-btn:hover {
    transform: translateY(-8px) scale(1.05);
}

.choice-btn.kam:hover {
    box-shadow: 
        0 16px 48px rgba(181, 55, 242, 0.6),
        0 0 60px rgba(255, 46, 151, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 0 30px rgba(181, 55, 242, 0.25);
    border-color: var(--neon-pink);
}

.choice-btn.dua:hover {
    box-shadow: 
        0 16px 48px rgba(0, 212, 255, 0.6),
        0 0 60px rgba(255, 107, 53, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 0 30px rgba(0, 212, 255, 0.25);
    border-color: var(--neon-orange);
}

/* Glowing border animation */
.choice-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 22px;
    background: linear-gradient(45deg, transparent, var(--neon-purple), transparent, var(--neon-blue));
    background-size: 400% 400%;
    animation: border-glow 4s linear infinite;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.choice-btn:hover::before {
    opacity: 1;
}

@keyframes border-glow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-icon {
    font-size: 50px;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.btn-label {
    font-family: 'Passion One', cursive;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 4px;
    line-height: 1;
}

.btn-sublabel {
    font-family: 'Passion One', cursive;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 3px;
    opacity: 0.8;
    line-height: 1;
}

.btn-desc {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.6;
    margin-top: 10px;
    letter-spacing: 1px;
}

.btn-arrow {
    margin-top: 12px;
    font-size: 20px;
    opacity: 0.7;
    transition: all 0.3s ease;
    animation: arrow-bounce 1.5s ease-in-out infinite;
}

.choice-btn:hover .btn-arrow {
    opacity: 1;
    transform: translateX(4px);
}

@keyframes arrow-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* Categories */
.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 600px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cat-item {
    background: var(--bg-card);
    border: 1px solid rgba(181, 55, 242, 0.3);
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
    cursor: default;
}

.cat-item:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 0 15px rgba(181, 55, 242, 0.4);
    transform: translateY(-2px);
}

.cat-icon {
    margin-right: 4px;
}

/* Stats bar */
.stats-bar {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.stat {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dim);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stat-num {
    font-family: 'Passion One', cursive;
    font-size: 32px;
    display: block;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Footer */
.footer {
    animation: fadeInUp 1s ease-out 1.2s both;
}

.footer p {
    font-size: 14px;
    color: var(--text-dim);
    letter-spacing: 2px;
}

/* Skyline */
.skyline {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(0deg, rgba(10, 0, 21, 0.9) 0%, transparent 100%);
    z-index: 5;
    pointer-events: none;
}

.skyline::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: 
        /* Buildings silhouette */
        linear-gradient(90deg, 
            transparent 0%, transparent 5%,
            var(--bg-dark) 5%, var(--bg-dark) 8%,
            transparent 8%, transparent 12%,
            var(--bg-dark) 12%, var(--bg-dark) 14%,
            transparent 14%, transparent 18%,
            var(--bg-dark) 18%, var(--bg-dark) 23%,
            transparent 23%, transparent 26%,
            var(--bg-dark) 26%, var(--bg-dark) 28%,
            transparent 28%, transparent 35%,
            var(--bg-dark) 35%, var(--bg-dark) 40%,
            transparent 40%, transparent 44%,
            var(--bg-dark) 44%, var(--bg-dark) 47%,
            transparent 47%, transparent 52%,
            var(--bg-dark) 52%, var(--bg-dark) 58%,
            transparent 58%, transparent 62%,
            var(--bg-dark) 62%, var(--bg-dark) 65%,
            transparent 65%, transparent 70%,
            var(--bg-dark) 70%, var(--bg-dark) 74%,
            transparent 74%, transparent 78%,
            var(--bg-dark) 78%, var(--bg-dark) 82%,
            transparent 82%, transparent 88%,
            var(--bg-dark) 88%, var(--bg-dark) 92%,
            transparent 92%, transparent 100%
        );
    opacity: 0.6;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile responsive */
@media (max-width: 520px) {
    .choices {
        gap: 16px;
    }
    
    .choice-btn {
        width: 160px;
        height: 210px;
    }
    
    .btn-label {
        font-size: 28px;
    }
    
    .btn-sublabel {
        font-size: 22px;
    }
    
    .btn-icon {
        font-size: 40px;
    }
    
    .stats-bar {
        gap: 24px;
    }
    
    .stat-num {
        font-size: 26px;
    }
    
    .categories {
        gap: 8px;
    }
    
    .cat-item {
        padding: 6px 14px;
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .choice-btn {
        width: 140px;
        height: 190px;
    }
}

/* ============================================
   Telegram Floating Button
   ============================================ */
.telegram-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0088cc, #00bbff);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.5), 0 0 30px rgba(0, 187, 255, 0.3);
    transition: all 0.3s ease;
    animation: tg-pulse 2s infinite;
}
.telegram-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 136, 204, 0.7), 0 0 50px rgba(0, 187, 255, 0.5);
}
.telegram-float:active {
    transform: scale(0.95);
}
.tg-tooltip {
    position: absolute;
    right: 66px;
    background: rgba(0, 136, 204, 0.9);
    color: white;
    padding: 6px 14px;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}
.telegram-float:hover .tg-tooltip {
    opacity: 1;
    transform: translateX(0);
}
@keyframes tg-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(0, 136, 204, 0.5), 0 0 30px rgba(0, 187, 255, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(0, 136, 204, 0.7), 0 0 40px rgba(0, 187, 255, 0.5); }
}

/* ============================================
   Google Translate Widget
   ============================================ */
#google_translate_element {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 950;
    background: rgba(10, 0, 21, 0.85);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    padding: 6px 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.15);
}
#google_translate_element select {
    background: rgba(10, 0, 21, 0.9) !important;
    color: #00ffff !important;
    border: 1px solid rgba(0, 255, 255, 0.4) !important;
    border-radius: 6px !important;
    padding: 4px 8px !important;
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 13px !important;
    outline: none !important;
}
.goog-te-gadget { color: transparent !important; font-size: 0 !important; }
.goog-te-gadget span { display: none !important; }
.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }
.skiptranslate { display: none !important; }
#google_translate_element .skiptranslate { display: block !important; }
