/* Coming Soon Page */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.coming-soon-page {
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

/* Page-specific backgrounds */
body.game-coming-soon {
    background: url("../img/coming-soon/game-bg.png") no-repeat center center / cover;
}

body.meta-coming-soon {
    background: url("../img/coming-soon/meta-bg.png") no-repeat center center / cover;
}

/* Common container styles */
.coming-soon-container {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Common typography */
.coming-soon-title {
    font-size: 90px;
    font-weight: 600;
    font-family: 'Titilium-SemiBold', sans-serif;
}

.coming-soon-subtitle {
    font-size: 30px;
    font-weight: 400;
    line-height: 39px;
}

.coming-soon-description {
    line-height: 30px;
}

/* --- Game Page Specific Styles --- */
.game-coming-soon .dice-icon {
    width: 140px;
    height: auto;
}

.game-coming-soon .coming-soon-title {
    background: linear-gradient(90deg, #fdcc00 0%, #d06500 100%);
    line-height: 120px;
    margin-top: 12px;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.game-coming-soon .coming-soon-subtitle {
    background: linear-gradient(90deg, #fdcc00 0%, #d06500 100%);
    font-family: 'Titilium', sans-serif;
    margin-bottom: 32px;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.game-coming-soon .coming-soon-description {
    font-family: 'Titilium-Light', sans-serif;
    font-size: 16px;
    max-width: 50%;
}

/* --- Meta Page Specific Styles --- */
.meta-coming-soon .coming-soon-container {
    width: 60%;
    gap: 10px;
}

.meta-coming-soon .coming-soon-title {
    background: linear-gradient(91deg, #013a81 6.85%, #51f4e9 94.13%);
    line-height: 100px;
    position: relative;
    padding-bottom: 7px;
    width: 70%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.meta-coming-soon .coming-soon-title::after {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    margin: 16px auto 0;
    background: #1972a0;
}

.meta-coming-soon .coming-soon-subtitle {
    background: linear-gradient(
            90deg,
            #51f4e9 6.51%,
            #013a81 51.02%,
            #4be6e1 93.84%
    );
    text-shadow: 0px 4px 4.7px rgba(0, 0, 0, 0.98);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 32px;
}

.meta-coming-soon .coming-soon-description {
    font-size: 18px;
    font-weight: 350;
    text-shadow: 0px 4px 4.7px rgba(0, 0, 0, 0.98);
}

/* --- Media Queries for responsiveness --- */
@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 48px;
    }

    .coming-soon-subtitle {
        font-size: 18px;
    }

    .coming-soon-description {
        font-size: 14px;
    }

    .game-coming-soon .coming-soon-description {
        max-width: 90%;
    }

    .meta-coming-soon .coming-soon-container {
        width: 90%;
    }
}