/* Ü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;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* --- Ə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: 40px 30px;
    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: 30px;
}

.logo-container {
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #fadd5c, #aa8529);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.5);
}

.logo-icon {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.logo-text {
    color: #111;
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.brand-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(to right, #fadd5c, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    font-size: 14px;
    color: #b3b3b3;
    line-height: 1.5;
    margin-bottom: 35px;
}

.btn-chat {
    width: 100%;
    background: linear-gradient(to right, #d4af37, #b8860b);
    color: #000;
    border: none;
    padding: 16px;
    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);
}

.footer-text {
    margin-top: 25px;
    font-size: 12px;
    color: #666;
}

/* --- YENİ DÜYMƏ (OYUNA KEÇ) STİLİ --- */
.btn-game {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    color: #d4af37;
    border: 1px solid #d4af37;
    padding: 16px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 15px; /* Üstündəki düymə ilə arasına məsafə */
    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);
}
