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

body, html {
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    background: #0a0a1a;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

#background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Header with language picker */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    z-index: 100;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.site-header-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Locale Navigation */
.locale-nav {
    display: block;
}

.locale-nav-list {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.locale-nav-item { 
    margin: 0; 
}

.locale-nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    line-height: 1;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.1);
}

.locale-nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 1);
}

.locale-nav-link.active {
    font-weight: 700;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
}

.locale-nav-link.active:hover {
    background: rgba(255, 255, 255, 1);
    color: #333;
}

.locale-code { 
    text-transform: uppercase;
    font-size: 0.85rem;
}

/* Main content container */
.content-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    margin-top: 4rem; /* Account for fixed header */
}

.message-container {
    background: rgba(255, 255, 255, 0.97);
    padding: 3rem 4rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    text-align: center;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 10;
    position: relative;
}

.owl-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.coming-soon {
    font-size: 1.5rem;
    color: #333;
    font-weight: 300;
    letter-spacing: 0.1em;
}

.coming-soon h1 {
    font-size: 1.5rem;
    color: #333;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin: 0;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

footer a {
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #74b9ff;
    text-decoration: underline;
}

footer .container {
    margin: 0;
    padding: 0;
}

footer .text-center {
    margin: 0;
}

footer .text-muted {
    color: white;
}

@media (max-width: 640px) {
    .message-container {
        padding: 2rem 2.5rem;
    }
    
    .coming-soon,
    .coming-soon h1 {
        font-size: 1.2rem;
    }
    
    .locale-nav-link {
        padding: 0.35rem 0.6rem;
        font-size: 0.9rem;
    }
}
