:root {
    --bg-color: #050510;
    /* Deeper navy/black */
    --text-color: #ffffff;
    --accent-color: #60a5fa;
    /* Lighter blue for better contrast against dark */
    --glass-bg: rgba(20, 20, 30, 0.6);
    /* Slightly more opaque for readability over bg image */
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    /* Prevent scroll from fixed elements */
}

.bg-logo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 200vw;
    /* Removed max-width/height to allow full immersion */
    opacity: 0.12;
    filter: blur(100px) saturate(200%);
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
    box-sizing: border-box;
}

header {
    text-align: center;
    padding: 4rem 0 2rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.05rem;
    background: linear-gradient(135deg, #fff 0%, #a5a5a5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.logo {
    width: 140px;
    height: 140px;
    margin-bottom: 1.5rem;
    border-radius: 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.subtitle {
    color: #888;
    font-size: 1.25rem;
    font-weight: 300;
}

main {
    flex: 1;
}

.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

h2 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0.5rem;
    color: #eee;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-label {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 1.125rem;
    color: #fff;
}

.contact-value a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-value a:hover {
    color: #60a5fa;
    text-decoration: underline;
}

.placeholder-note {
    background-color: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.3);
    color: #ffcc00;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

footer {
    text-align: center;
    padding: 2rem;
    color: #444;
    font-size: 0.875rem;
}

/* Subtle background flair */
.bg-gradient {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }

    .container {
        padding: 1rem;
    }
}

/* Language Switcher */
.lang-switch {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.lang-btn {
    background: none;
    border: 1px solid transparent;
    color: #888;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s;
}

.lang-btn:hover {
    color: var(--text-color);
    background: var(--glass-bg);
    border-color: var(--glass-border);
}

.lang-btn.active {
    color: var(--accent-color);
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lang-content.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

.lang-content {
    display: none;
}