/**
 * Coming Soon Game Page Styles
 */

.coming-soon-page {
    min-height: 100vh;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.coming-soon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.3);
}

.coming-soon-header .back-link,
.coming-soon-header .home-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.coming-soon-header .back-link:hover,
.coming-soon-header .home-link:hover {
    color: var(--color-btc-orange);
}

.coming-soon-main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 60px);
    padding: 2rem;
}

.coming-soon-content {
    max-width: 500px;
    text-align: center;
}

.game-icon-large {
    font-size: 6rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(247, 147, 26, 0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.game-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-primary), var(--color-btc-orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.game-tagline {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: var(--radius-full);
    color: #ffc107;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #ffc107;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.notify-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
}

.notify-section h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.notify-section p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.notify-form .form-row {
    display: flex;
    gap: 0.5rem;
}

.notify-form .form-input {
    flex: 1;
}

.notify-success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--success);
    font-weight: 500;
    padding: 1rem;
}

.success-icon {
    font-size: 1.25rem;
}

.features-section {
    text-align: left;
    margin-bottom: 2rem;
}

.features-section h3 {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

.features-list li:last-child {
    border-bottom: none;
}

.feature-check {
    color: var(--color-btc-orange);
    font-weight: bold;
}

.expected-launch {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.expected-launch strong {
    color: var(--text-primary);
}

.other-games {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.other-games p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.live-game-link {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--color-btc-orange), #ff9f1c);
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.live-game-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(247, 147, 26, 0.4);
}

/* Responsive */
@media (max-width: 640px) {
    .coming-soon-header {
        padding: 1rem;
    }

    .game-icon-large {
        font-size: 4rem;
    }

    .game-name {
        font-size: 2rem;
    }

    .notify-form .form-row {
        flex-direction: column;
    }

    .notify-form .btn {
        width: 100%;
    }
}
