body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000;
    color: #ffd700;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 25px rgba(255, 215, 0, 0.2);
    width: 360px;
    max-width: 90%;
}

.logo-area { text-align: center; margin-bottom: 15px; }

.main-logo {
    width: 90px;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.logo-text { color: #ffd700; font-size: 28px; margin: 5px 0; font-weight: bold; }

h2 { text-align: center; font-size: 16px; opacity: 0.9; margin-bottom: 20px; border-bottom: 1px solid #333; padding-bottom: 10px; }

label { display: block; margin-top: 12px; font-weight: bold; font-size: 14px; color: #ffd700; }

input, select {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    border: 1px solid #444;
    border-radius: 8px;
    background-color: #252525;
    color: #fff;
    box-sizing: border-box;
    font-size: 16px;
}

input:focus { border-color: #ffd700; outline: none; box-shadow: 0 0 5px rgba(255, 215, 0, 0.3); }

button {
    width: 100%;
    padding: 14px;
    margin-top: 20px;
    background-color: #ffd700;
    color: #000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 17px;
    font-weight: bold;
    transition: 0.3s;
}

button:hover { background-color: #e6c200; transform: scale(1.02); }

.result {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #ffd700;
}

/* تنسيق أزرار التواصل */
.social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 25px;
    padding-top: 20px;
}

.social-btn {
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    transition: 0.3s;
}

.tiktok { background-color: #fff; color: #000; grid-column: span 2; }
.telegram-channel { background-color: #24A1DE; color: #fff; }
.telegram-contact { background-color: #ffd700; color: #000; }

.social-btn:hover { opacity: 0.9; transform: translateY(-3px); box-shadow: 0 4px 10px rgba(255,255,255,0.1); }