/* Play Hero Section */
.play-hero {
    height: 80vh;
    background: linear-gradient(to right, #2a2a2a, #111);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding: 20px;
    color: white;
}

.play-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.play-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.play-hero .modern-button {
    padding: 15px 50px;
    font-size: 1.2rem;
    font-weight: bold;
    background: linear-gradient(135deg, #f03a47, #f97e2e);
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.play-hero .modern-button:hover {
    background: linear-gradient(135deg, #c02d3d, #f46b2b);
    transform: translateY(-2px);
}