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

html {
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

.container {
    text-align: center;
    padding: 2rem;
    animation: fadeIn 2s ease-in-out;
}

.logo {
    width: 480px;
    max-width: 90vw;
    margin-bottom: 3rem;
    border: 1px solid #b89968;
    animation: fadeIn 1.5s ease-in-out;
}

.divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9a84c, transparent);
    margin: 0 auto 2.5rem;
}

.message {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    font-style: italic;
    color: #d4d4d4;
    line-height: 1.8;
    letter-spacing: 0.02em;
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

.highlight {
    color: #c9a84c;
    font-weight: 400;
}

.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #888;
    margin-top: 2.5rem;
}

.sparkle {
    display: inline-block;
    color: #c9a84c;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

@media (max-width: 480px) {
    .message {
        font-size: 1.3rem;
    }

    .logo {
        width: 340px;
    }
}
