/* Font Definitions */
@font-face {
    font-family: 'Google Sans';
    src: url('fonts/GoogleSans-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Google Sans';
    src: url('fonts/GoogleSans-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Google Sans';
    src: url('fonts/GoogleSans-Bold.ttf') format('truetype');
    font-weight: 700;
}

/* Reset & Base Google Dark Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Google Sans', -apple-system, Roboto, sans-serif;
    background-color: #202124;
    color: #e8eaed;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Layout Container */
.container {
    width: 100%;
    max-width: 680px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    min-height: 90vh;
    justify-content: space-between;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
}

.back-link {
    text-decoration: none;
    color: #8ab4f8;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background-color: rgba(138, 180, 248, 0.1);
    transition: background-color 0.2s ease;
}

.back-link:hover {
    background-color: rgba(138, 180, 248, 0.2);
}

/* Coming Soon Content */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    margin: auto 0;
}

.icon-badge {
    width: 64px;
    height: 64px;
    background-color: rgba(138, 180, 248, 0.15);
    color: #8ab4f8;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.status {
    font-size: 1.25rem;
    font-weight: 500;
    color: #81c995; /* Google Green Accent */
    background-color: rgba(129, 201, 149, 0.1);
    padding: 0.35rem 1.25rem;
    border-radius: 9999px;
}

.description {
    color: #9aa0a6;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 480px;
}

/* Footer */
.footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #3c4043;
    color: #80868b;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 480px) {
    .content h1 {
        font-size: 2rem;
    }
}