:root {
    --gold: #c5a059;
    --white: #ffffff;
    --dark: #0a0a0a;
    --glass: rgba(255, 255, 255, 0.1);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--dark);
    color: var(--white);
    -webkit-font-smoothing: antialiased;
}

/* Hero Section with Dubai Backdrop */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
}

.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.pre-title {
    letter-spacing: 5px;
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 10px;
}

h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 10vw, 6rem);
    margin: 0;
    letter-spacing: 15px;
}

.divider {
    height: 1px;
    width: 100px;
    background: var(--gold);
    margin: 20px auto;
}

.motto {
    font-family: 'Cinzel', serif;
    font-style: italic;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

/* Content Section */
.intro {
    padding: 100px 20px;
    text-align: center;
    background: #111;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

h2 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 30px;
}

p {
    line-height: 1.8;
    font-weight: 300;
    opacity: 0.8;
}

/* Footer & Secret Gate */
footer {
    padding: 40px 20px;
    border-top: 1px solid #222;
    text-align: center;
}

.legal {
    font-size: 0.75rem;
    opacity: 0.4;
    letter-spacing: 1px;
}

/* Hidden link: No color change or underline */
.secret-gate {
    color: inherit;
    text-decoration: none;
    cursor: default;
}

.secret-gate:hover {
    opacity: 1; /* Subtle hint only on hover */
}