/* Ümumi quraşdırmalar və Arxa plan */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: auto; 
    padding: 20px 0;
}

/* --- ƏSAS PANEL DİZAYNI --- */
.support-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px 25px; 
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.panel-badge {
    display: inline-block;
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

/* =========================================
   FASTLOTO BANNER DİZAYNI
   ========================================= */
.fastloto-banner {
    width: 100%;
    margin-bottom: 20px; 
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: #000;
}

.fastloto-banner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.fastloto-banner:hover img {
    transform: scale(1.05); 
}

/* =========================================
   BAŞLIQ VƏ MAVİ TIK DİZAYNI
   ========================================= */
.brand-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(to right, #fadd5c, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mavi tık (Verified Badge) stili */
.verified-badge {
    color: #1da1f2; /* Orijinal mavi rəng */
    -webkit-text-fill-color: #1da1f2; /* Qızılı gradientin effekti bura təsir etməsin deyə */
    font-size: 20px;
    margin-left: 8px;
    text-shadow: 0 0 12px rgba(29, 161, 242, 0.5); /* Yüngül parıltı */
    cursor: pointer;
}

.description {
    font-size: 13.5px;
    color: #b3b3b3;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* =========================================
   CANLI STATİSTİKA
   ========================================= */
.live-stats {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 10px 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: #e9edef;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    width: 100%;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #4caf50;
    border-radius: 50%;
    box-shadow: 0 0 10px #4caf50;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

#onlineCount {
    color: #d4af37;
    font-size: 16px;
    font-weight: 900;
}

/* =========================================
   DÜYMƏLƏR
   ========================================= */
.btn-chat {
    width: 100%;
    background: linear-gradient(to right, #d4af37, #b8860b);
    color: #000;
    border: none;
    padding: 15px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-chat:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.4);
}
.btn-chat:active { transform: translateY(1px); }

.btn-game {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    color: #d4af37;
    border: 1px solid #d4af37;
    padding: 15px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    transition: all 0.2s ease;
}

.btn-game:hover {
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}
.btn-game:active { transform: translateY(1px); }

/* --- SOSİAL ŞƏBƏKƏ İKONLARI --- */
.social-links {
    margin-top: 30px;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-btn {
    text-decoration: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    color: #fff; 
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.social-btn:hover { 
    transform: translateY(-4px) scale(1.05); 
}

.social-btn.tg:hover { background: rgba(0, 136, 204, 0.2); border-color: #0088cc; color: #0088cc; }
.social-btn.ig:hover { background: rgba(225, 48, 108, 0.2); border-color: #e1306c; color: #e1306c; }
.social-btn.tt:hover { background: rgba(255, 255, 255, 0.2); border-color: #69c9d0; color: #69c9d0; }

.footer-text {
    margin-top: 15px;
    font-size: 12px;
    color: #666;
}
