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

html, body {
    height: 100%;
}

body {
    background-color: #2D3A2D;
    font-family: Georgia, 'Times New Roman', serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-wrapper {
    position: relative;
    display: inline-block;
}

.logo-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(232, 160, 32, 0.3) 0%, rgba(232, 160, 32, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.logo {
    position: relative;
    z-index: 1;
    font-size: 5rem;
    font-weight: normal;
    color: #FFFFFF;
    letter-spacing: 0.05em;
}

.hyphen {
    color: #E8A020;
    animation: pulse 2s ease-in-out infinite;
}

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

.coming-soon {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #A0A0A0;
}

.tagline {
    padding: 2rem;
    font-size: 0.75rem;
    color: #6B6B6B;
    font-family: Arial, Helvetica, sans-serif;
}

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

    .logo-wrapper::before {
        width: 150px;
        height: 150px;
    }

    .coming-soon {
        font-size: 0.75rem;
        letter-spacing: 0.25em;
    }

    .tagline {
        font-size: 0.625rem;
    }
}