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

body {
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, #2a1c12 0%, #3d2817 50%, #1a120b 100%);
    color: #f5e6d3;
    overflow-x: hidden;
    position: relative;
}

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

.content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
}

.logo-container {
    margin-bottom: 40px;
}

.logo {
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(210, 180, 140, 0.4));
}

.coming-soon {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 6px;
    margin-bottom: 60px;
    color: #d4b896;
    text-transform: uppercase;
    font-style: italic;
}

.back-link {
    display: inline-block;
    color: #f5e6d3;
    text-decoration: none;
    padding: 15px 30px;
    border: 1px solid rgba(210, 180, 140, 0.4);
    transition: all 0.3s;
    letter-spacing: 2px;
    font-size: 0.9rem;
    border-radius: 5px;
    background: rgba(62, 39, 18, 0.3);
}

.back-link:hover {
    background: rgba(210, 180, 140, 0.2);
    border-color: #d4b896;
    box-shadow: 0 0 20px rgba(210, 180, 140, 0.3);
}

.copyright {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    color: rgba(210, 180, 140, 0.5);
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .logo {
        max-width: 280px;
    }
    .coming-soon {
        font-size: 1.3rem;
        letter-spacing: 4px;
    }
}
