.soon-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--color-bg);
    overflow: hidden;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--border-btn-secondary) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.4;
    z-index: 0;
}

[data-theme="dark"] .bg-pattern {
    opacity: 0.15;
}

.soon-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
    padding: 20px;
}

.top-controls {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
}

.brand-display {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.brand-display .logo-box {
    width: 64px;
    height: 64px;
    font-size: 36px;
    border-radius: 16px;
    background: var(--color-brand);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(var(--color-brand-rgb), 0.2);
}

.brand-name {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-text-main);
    letter-spacing: -1px;
    line-height: 1;
}

.main-title {
    font-size: 64px;
    font-weight: 800;
    color: var(--color-text-main);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.sub-text {
    font-size: 20px;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.action-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.copyright {
    position: absolute;
    bottom: -60px;
    font-size: 13px;
    color: var(--color-text-light);
    opacity: 0.5;
}

@media (max-width: 600px) {
    .brand-display .logo-box {
        width: 48px;
        height: 48px;
        font-size: 28px;
        border-radius: 12px;
    }

    .brand-name {
        font-size: 36px;
    }

    .main-title {
        font-size: 42px;
    }

    .sub-text {
        font-size: 18px;
    }

    .action-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .top-controls {
        top: 20px;
        right: 20px;
    }
}