@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&family=El+Messiri:wght@400;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400&display=swap');

:root {
    --bg-color: #050505;
    --card-bg: rgba(20, 20, 20, 0.7);
    --gold-primary: #D4AF37;
    --gold-gradient: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    --text-color: #f0f0f0;
    --text-muted: #b0b0b0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', 'Cairo', sans-serif;
    background-color: var(--bg-color);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 40%);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    padding: 2rem;
    width: 100%;
    max-width: 700px;
    z-index: 1;
}

/* Luxury Glass Card */
.card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 4rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

/* Header Section */
.header-section {
    margin-bottom: 2rem;
}

.company-name-en {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1.5px;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.company-name-ar {
    font-family: 'El Messiri', 'Cairo', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* Separator Line */
.separator {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    margin: 0 auto 3rem auto;
    opacity: 0.8;
}

/* Content Section */
.content-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.msg-group {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.msg-en {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    font-weight: 300;
    color: #fff;
}

.msg-ar {
    font-family: 'Cairo', sans-serif;
    font-size: 1.15rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Status Badge (Replaces Domain Badge visually for the status) */
.status-badge {
    display: inline-block;
    align-self: center;
    margin-top: 1rem;
    padding: 1rem 2.5rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    transition: all 0.4s ease;
}

.status-badge:hover {
    background: rgba(212, 175, 55, 0.12);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

.status-badge .msg-en {
    font-size: 1.1rem;
    color: var(--gold-primary);
    font-weight: 500;
}

.status-badge .msg-ar {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

/* Footer */
footer {
    margin-top: 4.5rem;
    font-size: 0.9rem;
    opacity: 0.6;
    font-family: 'Cairo', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

footer a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
    position: relative;
    padding-bottom: 2px;
}

footer a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--gold-primary);
    transition: width 0.3s ease;
}

footer a:hover::after {
    width: 100%;
}

footer a:hover {
    color: var(--gold-primary);
}

/* Ambient Glows */
.gold-glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.glow-1 {
    top: -30%;
    left: -20%;
}

.glow-2 {
    bottom: -30%;
    right: -20%;
}

@media (max-width: 600px) {
    .company-name-en {
        font-size: 2.2rem;
    }

    .company-name-ar {
        font-size: 1.8rem;
    }

    .card {
        padding: 3rem 1.5rem;
    }

    .container {
        padding: 1rem;
    }
}