body {
    background: radial-gradient(circle at center, #1a1512 0%, #0c0a09 72%);
    color: white;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    padding: 24px;
    padding-bottom: 70px;
    box-sizing: border-box;
    overflow-x: hidden;

    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;

    box-shadow: inset 0 0 180px rgba(0, 0, 0, 0.7);
}

main {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-size: 64px;
    letter-spacing: 6px;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 18px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: Georgia, "Times New Roman", serif;

    background: linear-gradient(
        180deg,
        #f3df9b 0%,
        #c9a24f 35%,
        #8f6828 55%,
        #d8b65f 75%,
        #f0d98c 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    text-shadow: 0 0 18px rgba(210, 179, 108, 0.18);
}

p {
    font-size: 14px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #c8bda8;
    margin: 0;
}

.accent-line {
    width: 70px;
    height: 1px;
    background-color: #8a2027;
    margin: 0 auto 26px auto;
    box-shadow: 0 0 10px rgba(138, 32, 39, 0.35);
}

.intro {
    margin-bottom: 32px;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.7;
    color: #a89f90;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.coming-soon {
    margin-top: 32px;
    font-size: 20px;
    letter-spacing: 7px;
    font-weight: 500;
    text-shadow: 0 0 12px rgba(200, 189, 168, 0.18);
}

.coming-soon::before,
.coming-soon::after {
    content: "•";
    color: #8f6828;
    margin: 0 12px;
}

main > * {
    animation: fadeIn 1.2s ease-out both;
}

h1 {
    animation-delay: 0.1s;
}

.accent-line {
    animation-delay: 0.3s;
}

.intro {
    animation-delay: 0.5s;
}

.coming-soon {
    animation-delay: 0.7s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 42px;
        letter-spacing: 4px;
    }
}

@media (prefers-reduced-motion: reduce) {
    main > * {
        animation: none;
    }
}

.about {
    margin-top: 90px;
    padding-top: 50px;
    border-top: 1px solid rgba(210, 179, 108, 0.18);
}

.about h2 {
    margin: 0 0 28px 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    text-shadow: 0 0 14px rgba(210, 179, 108, 0.12);
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #d2b36c;
}

.about-text {
    max-width: 650px;
    margin: 0 auto 18px auto;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.5px;
    text-transform: none;
    color: #a89f90;
}

.explore {
    margin-top: 90px;
    padding-top: 50px;
    border-top: 1px solid rgba(210, 179, 108, 0.18);
}

.explore h2 {
    margin: 0 0 28px 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #d2b36c;
    text-shadow: 0 0 14px rgba(210, 179, 108, 0.12);
}