.cta-main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #191108, #170000);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 600px;
    margin: 2rem auto;
}

.cta-box-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-family: Arial, sans-serif;
    padding: 1rem;
}

.cta-box-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cta-box-description {
    font-size: 1rem;
    margin-bottom: 1rem;
    max-width: 400px;
}

.cta-play-button {
    text-decoration: none;
    padding: 0.8rem 2rem;
    background-color: #ff8c00;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.cta-play-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.cta-play-button:active {
    transform: scale(0.95);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
