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

body {
    font-family: 'Raleway', sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #622140 0%, #8b3a5c 50%, #622140 100%),
                linear-gradient(rgba(98, 33, 64, 0.85), rgba(98, 33, 64, 0.90)),
                url('/images/ikara-hero.jpg') center/cover no-repeat fixed;
    background-blend-mode: overlay, normal;
    color: white;
    text-align: center;
}

.coming-soon-container {
    max-width: 600px;
    padding: 40px 20px;
    animation: fadeIn 1s ease-in;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    margin-bottom: 50px;
    animation: slideDown 1s ease-out 0.3s both;
}

.logo img {
    max-width: 250px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: slideUp 1s ease-out 0.5s both;
}

p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.8;
    opacity: 0.9;
    animation: slideUp 1s ease-out 0.7s both;
}

.cta-button {
    display: inline-block;
    margin-top: 40px;
    padding: 15px 45px;
    background-color: #d4af37;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    animation: slideUp 1s ease-out 0.9s both;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    background-color: #e5c158;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

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

    p {
        font-size: 1rem;
    }

    .logo img {
        max-width: 120px;
    }
}
