/* Title Screen Specific Styles */
#title-screen {
    background: linear-gradient(45deg, #ff00cc, #333399);
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
}

.game-title {
    font-size: 3rem;
    text-shadow: 4px 4px 0px #000;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.game-logo {
    max-width: 80%;
    width: 600px;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.8));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.game-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: #fff;
    text-shadow: 2px 2px 0px #000;
}

.press-start {
    font-size: 1.5rem;
    animation: blink 1s infinite;
    cursor: pointer;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border: 2px solid white;
    color: white;
}

.coin-counter {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px #000;
}

.coin-btn {
    padding: 15px 30px;
    font-size: 1.2rem;
    background: #e74c3c;
    color: white;
    border: 4px solid #c0392b;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.1s;
    font-weight: bold;
    box-shadow: 0 4px 0 #c0392b;
}

.coin-btn:active {
    transform: translateY(4px);
    box-shadow: none;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}
