/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    min-height: 100vh;
}

/* Layout Utilities */
.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    min-height: 100vh;
    position: relative;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    /* Equivalent to gap-8 */
}

/* Component Styles */
.logo {
    height: auto;
    width: auto;
    max-width: 100%;
    display: block;
}

.text-coming-soon {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    letter-spacing: 0.1em;
    /* tracking-widest */
    text-transform: uppercase;
}

.text-gold {
    color: #e8d6b5;
}

.text-red {
    color: #c34c33;
}

/* Footer */
.footer {
    position: absolute;
    bottom: 2rem;
    /* bottom-8 */
    width: 100%;
    display: flex;
    justify-content: center;
}

.social-link {
    color: #e8d6b5;
    transition: color 0.3s ease;
    display: inline-block;
}

.social-link:hover {
    color: #c34c33;
}

.icon {
    opacity: 0.3;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
