﻿
body {
    margin: 0;
    padding: 0;
    background: #f5f7fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.25rem;
    margin: 0.25rem 0;
}

.soon {
    font-size: 1rem;
    color: #888;
    margin-top: 1rem;
}

.coming-soon-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f5f7fa;
    text-align: center;
    padding: 1rem;
}

    .coming-soon-container h1 {
        font-size: 4rem;
        margin-bottom: 0.5rem;
    }

    .coming-soon-container .tagline {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #333;
    }

    .coming-soon-container .soon {
        font-size: 1rem;
        color: #888;
    }

.play-link {
    display: inline-block; /* veya block */
    margin: 0 auto; /* yatayda otomatik boşluk */
    text-align: center; /* içindeki metni ortala */
    padding: 0.75rem 1.5rem;
    background: var(--purple);
    color: #333;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
}

    .play-link:hover {
        background: var(--purple-d);
        transform: scale(1.05);
    }

    .play-link:active {
        transform: scale(.93);
    }

@media(max-width:480px) {
    .play-link {
        display: block; 
        width: fit-content; 
        font-size: 0.85rem;
    }
}