* {
    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 {
    /* Remove the CSS gradient background since we're using three.js */
    background: #0a0a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

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

.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;
}

.floating-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;
}

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

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