:root {
    --bg-color: #0b0c10;
    --text-primary: #e0e6ed;
    --text-secondary: #9aa8b8;
    --accent: #d4af37; /* Brand Gold */
    --accent-hover: #f1c40f;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Background Blobs for Glassmorphism effect */
.background-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -2;
    pointer-events: none;
}

.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background-color: rgba(212, 175, 55, 0.15); /* Gold glow */
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background-color: rgba(43, 88, 118, 0.2); /* Deep blueish glow */
    bottom: -150px;
    right: -100px;
}

/* Typography */
h1.logo {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, #b0c0d1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1.logo span {
    font-weight: 300;
    color: var(--text-primary);
    -webkit-text-fill-color: initial;
}

h2 {
    font-size: 1.5rem;
    color: var(--accent);
    margin: 2.5rem 0 1rem 0;
    font-weight: 600;
}

p, li {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

strong {
    color: var(--text-primary);
    font-weight: 500;
}

/* Layout */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glass Header */
.glass-header {
    background: rgba(11, 12, 16, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.5rem 0;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.header-content p {
    margin-top: 0.5rem;
    margin-bottom: 0;
    color: var(--text-primary);
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

/* Main Content Card */
.content-section {
    margin: 3rem auto;
    padding: 3rem;
    border-radius: 24px;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.last-updated {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 2rem;
    text-align: right;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
}

/* Elements */
.contact-box {
    background: rgba(212, 175, 55, 0.05); /* Very light gold */
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.contact-box p {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-box p:last-child {
    margin-bottom: 0;
}

/* Footer */
.glass-footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    margin-top: 4rem;
}

.glass-footer p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 600px) {
    .content-section {
        padding: 2rem 1.5rem;
        margin: 2rem auto;
        border-radius: 16px;
    }

    h1.logo {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.3rem;
    }
}

/* Language Selector */
.lang-selector {
    display: flex;
    gap: 8px;
    margin-top: 1.5rem;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.lang-btn.active {
    background: var(--accent);
    color: var(--bg-color);
    border-color: var(--accent);
    font-weight: 600;
}
