:root {
    --gold-primary: #D4AF37;
    --gold-light: #F4C430;
    --gold-dark: #AA8C2C;
    --black-primary: #121212;
    --black-secondary: #1E1E1E;
    --white: #ffffff;
    --text-color: #FAFAFA;
    --glass-bg: rgba(30, 30, 30, 0.65);
    --glass-border: rgba(212, 175, 55, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', sans-serif;
    color: var(--text-color);
    background-color: var(--black-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

/* Background Animation */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #2a2a2a 0%, #000000 100%);
    z-index: -2;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    z-index: -1;
    animation: pulseBg 10s ease-in-out infinite alternate;
}

@keyframes pulseBg {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Glassmorphism Card */
.card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(212, 175, 55, 0.5);
}

/* Typography & Helpers */
.brand-name {
    font-family: 'Amiri', serif;
    font-size: 2.5rem;
    color: var(--gold-primary);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.brand-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    font-weight: 300;
}

.divider {
    height: 2px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    margin: 1.5rem auto;
}

.hero {
    margin-bottom: 2.5rem;
}

.coming-soon-text {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--gold-primary), var(--white), var(--gold-primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    background-size: 200% auto;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.announcement {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    max-width: 450px;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-primary);
    transform: scale(1.02);
}

.icon-wrapper {
    color: var(--gold-primary);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--gold-primary);
}

/* Social Footer */
.social-footer p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-btn:hover {
    background: var(--gold-primary);
    color: var(--black-primary);
    transform: translateY(-3px) rotate(5deg);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

/* Responsive */
@media (max-width: 480px) {
    .card {
        padding: 2rem 1rem;
    }

    .brand-name {
        font-size: 2rem;
    }

    .coming-soon-text {
        font-size: 2.8rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        border-radius: 15px;
    }
}