
body {
    background-color: #0b132b;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}


.gym-hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: radial-gradient(circle at top center, #1c2541 0%, #0b132b 80%);
    text-align: center;
}

.gym-card-container {
    max-width: 800px;
    width: 100%;
    background: rgba(28, 37, 65, 0.6);
    border: 2px solid #00d2ff;
    border-radius: 20px;
    padding: 50px 30px;
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.15);
    backdrop-filter: blur(10px);
}

.badge-tag {
    display: inline-block;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    padding: 8px 18px;
    border-radius: 30px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.gym-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin: 10px 0 20px;
    background: linear-gradient(to right, #ffffff, #00d2ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gym-subtitle {
    font-size: 1.15rem;
    color: #e0e6ed;
    margin-bottom: 35px;
    line-height: 1.6;
}


.btn-fitness {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
}

.btn-fitness:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.5);
    background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
}

.btn-fitness span {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.btn-fitness:hover span {
    transform: translateX(5px);
}


@media screen and (max-width: 768px) {
    .gym-title {
        font-size: 2.2rem;
    }

    .gym-subtitle {
        font-size: 1rem;
    }

    .gym-card-container {
        padding: 35px 20px;
    }
}