/* Press To Start Component Styles */
.asc-press-to-start {
    position: relative;
    z-index: 2;
    margin-top: 50px;
    text-align: center;
}

.asc-press-to-start__button {
    background: linear-gradient(to right, rgba(59, 130, 246, 0.8), rgba(59, 130, 246, 0.6));
    border: 2px solid rgba(59, 130, 246, 0.8);
    border-radius: 30px;
    color: white;
    font-size: 1.2rem;
    padding: 15px 40px;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInOut 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

    .asc-press-to-start__button:hover {
        background: linear-gradient(to right, rgba(59, 130, 246, 1), rgba(59, 130, 246, 0.8));
        border-color: rgba(59, 130, 246, 1);
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
        transform: scale(1.05);
    }

.asc-press-to-start__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.asc-press-to-start__button:hover::before {
    left: 100%;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}