
:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --accent-color: #e63946;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --success-color: #06d6a0;
    --warning-color: #ffd23f;
}

.sports-page {
    background: #ffffff;
}

/* Hero Section */
.sports-page .hero-section {
    background: linear-gradient(135deg, #fff5f1 0%, #ffe8df 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.sports-page .hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
}

.sports-page .hero-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(230, 57, 70, 0.08);
    border-radius: 50%;
}

.sports-page .badge-custom {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #e63946 100%);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.sports-page .hero-title {
    font-size: 52px;
    font-weight: 900;
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.sports-page .hero-title .highlight {
    background: linear-gradient(135deg, #ff6b35 0%, #e63946 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sports-page .hero-description {
    font-size: 18px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 30px;
}

.sports-page .hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.sports-page .btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #e63946 100%);
    border: none;
    padding: 14px 35px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.sports-page .btn-primary:hover {
    background: linear-gradient(135deg, #e63946 0%, #c41e3a 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.sports-page .btn-outline-primary {
    border: 2px solid #ff6b35;
    color: #ff6b35;
    padding: 14px 35px;
    font-weight: 700;
}

.sports-page .btn-outline-primary:hover {
    background: #ff6b35;
    color: white;
}

.sports-page .hero-stats {
    display: flex;
    gap: 30px;
}

.sports-page .hero-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
}

.sports-page .hero-stats .stat-item i {
    font-size: 20px;
    color: #ff6b35;
}

.sports-page .hero-image {
    position: relative;
}

.sports-page .floating-card {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.sports-page .floating-card.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.sports-page .floating-card.card-2 {
    top: 50%;
    left: -8%;
    animation-delay: 1s;
}

.sports-page .floating-card.card-3 {
    bottom: 10%;
    right: 0;
    animation-delay: 2s;
}

.sports-page .floating-card i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff5f1 0%, #ffe8df 100%);
    border-radius: 10px;
    font-size: 22px;
    color: #ff6b35;
}

.sports-page .floating-card h6 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--dark-color);
}

.sports-page .floating-card p {
    margin: 0;
    font-size: 13px;
    color: #64748b;
}

/* Stats Counter */
.sports-page .stats-section {
    background: white;
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.sports-page .stat-box {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f1 100%);
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.sports-page .stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
}

.sports-page .stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35 0%, #e63946 100%);
    border-radius: 20px;
    font-size: 35px;
    color: white;
}

.sports-page .stat-number {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b35 0%, #e63946 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 15px 0 10px;
}

.sports-page .stat-label {
    font-size: 16px;
    color: #64748b;
    margin: 0;
}

/* Categories Section */
.sports-page .categories-section {
    padding: 80px 0;
    background: #fafafa;
}

.sports-page .section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #fff5f1 0%, #ffe8df 100%);
    border: 2px solid #ff6b35;
    border-radius: 50px;
    color: #ff6b35;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
}

.sports-page .section-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.sports-page .section-description {
    font-size: 17px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 50px;
}

.sports-page .category-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.sports-page .category-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.2);
}

.sports-page .category-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.sports-page .category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sports-page .category-card:hover .category-image img {
    transform: scale(1.15) rotate(2deg);
}

.sports-page .category-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}

.sports-page .category-badge {
    padding: 6px 15px;
    background: linear-gradient(135deg, #ff6b35 0%, #e63946 100%);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.sports-page .category-badge.hot {
    background: linear-gradient(135deg, #e63946 0%, #c41e3a 100%);
    animation: pulse 1.5s infinite;
}

.sports-page .category-badge.trending {
    background: linear-gradient(135deg, #06d6a0 0%, #05a77d 100%);
}

.sports-page .category-content {
    padding: 30px;
}

.sports-page .category-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff5f1 0%, #ffe8df 100%);
    border-radius: 18px;
    font-size: 32px;
    color: #ff6b35;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.sports-page .category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.sports-page .category-icon.yoga {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: #0284c7;
}

.sports-page .category-icon.cardio {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
    color: #ec4899;
}

.sports-page .category-icon.martial {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    color: #a855f7;
}

.sports-page .category-icon.swimming {
    background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 100%);
    color: #2563eb;
}

.sports-page .category-icon.team {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #059669;
}

.sports-page .category-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.sports-page .category-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.sports-page .category-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.sports-page .category-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #64748b;
    font-size: 14px;
}

.sports-page .category-features li i {
    color: #06d6a0;
    font-size: 14px;
}

.sports-page .category-meta {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    margin-bottom: 20px;
    border-top: 2px dashed #f1f5f9;
    border-bottom: 2px dashed #f1f5f9;
}

.sports-page .category-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}

.sports-page .category-meta i {
    color: #ff6b35;
}

.sports-page .btn-category {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #fff5f1 0%, #ffe8df 100%);
    color: #ff6b35;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sports-page .btn-category:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #e63946 100%);
    color: white;
    transform: translateX(-5px);
}

/* Features Section */
.sports-page .features-advanced {
    padding: 80px 0;
    background: white;
}

.sports-page .feature-image-box {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.sports-page .feature-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    padding: 12px 25px;
    background: rgba(255, 107, 53, 0.95);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
}

.sports-page .feature-badge.success {
    background: rgba(6, 214, 160, 0.95);
}

.sports-page .feature-item-inline {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 28px;
    background: #f8f9fa;
    border-radius: 18px;
    transition: all 0.3s ease;
}

.sports-page .feature-item-inline:hover {
    background: linear-gradient(135deg, #fff5f1 0%, #ffe8df 100%);
    transform: translateX(-8px);
}

.sports-page .feature-icon-inline {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35 0%, #e63946 100%);
    border-radius: 18px;
    font-size: 28px;
    color: white;
}

.sports-page .feature-item-inline h4 {
    font-size: 19px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.sports-page .feature-item-inline p {
    font-size: 15px;
    color: #64748b;
    margin: 0;
    line-height: 1.7;
}

/* Pricing Section */
.sports-page .pricing-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.sports-page .pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.sports-page .toggle-label {
    font-size: 16px;
    font-weight: 600;
    color: #64748b;
}

.sports-page .discount-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, #06d6a0 0%, #05a77d 100%);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-left: 8px;
}

.sports-page .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.sports-page .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.sports-page .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    transition: 0.4s;
    border-radius: 30px;
}

.sports-page .slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.sports-page input:checked + .slider {
    background: linear-gradient(135deg, #ff6b35 0%, #e63946 100%);
}

.sports-page input:checked + .slider:before {
    transform: translateX(30px);
}

.sports-page .pricing-card {
    background: white;
    border-radius: 30px;
    padding: 40px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
}

.sports-page .pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(255, 107, 53, 0.2);
}

.sports-page .pricing-card.featured {
    background: linear-gradient(180deg, #fff5f1 0%, #ffffff 100%);
    border: 3px solid #ff6b35;
    transform: scale(1.08);
}

.sports-page .pricing-card.featured:hover {
    transform: scale(1.08) translateY(-15px);
}

.sports-page .popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 28px;
    background: linear-gradient(135deg, #ff6b35 0%, #e63946 100%);
    color: white;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.sports-page .pricing-name {
    font-size: 26px;
    font-weight: 900;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 20px;
}

.sports-page .pricing-price {
    text-align: center;
    margin-bottom: 15px;
}

.sports-page .pricing-price .currency {
    display: block;
    font-size: 14px;
    color: #94a3b8;
    font-weight: 600;
}

.sports-page .pricing-price .amount {
    display: block;
    font-size: 52px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b35 0%, #e63946 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.sports-page .pricing-price .period {
    display: block;
    font-size: 14px;
    color: #94a3b8;
    margin-top: 5px;
}

.sports-page .pricing-description {
    text-align: center;
    color: #64748b;
    font-size: 15px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px dashed #e2e8f0;
}

.sports-page .pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.sports-page .pricing-features ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    color: #1a1a2e;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid #f1f5f9;
}

.sports-page .pricing-features ul li:last-child {
    border-bottom: none;
}

.sports-page .pricing-features ul li i.fa-check {
    color: #06d6a0;
    font-size: 17px;
}

.sports-page .pricing-features ul li.disabled {
    opacity: 0.4;
}

.sports-page .pricing-features ul li.disabled i.fa-times {
    color: #ef4444;
}

.sports-page .btn-pricing {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ff6b35 0%, #e63946 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-weight: 800;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sports-page .btn-pricing:hover {
    background: linear-gradient(135deg, #e63946 0%, #c41e3a 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
    color: white;
}

.sports-page .trust-badges {
    margin-top: 50px;
}

.sports-page .trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.sports-page .trust-item i {
    font-size: 24px;
    color: #ff6b35;
}

.sports-page .trust-item span {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
}

/* Testimonials */
.sports-page .testimonials-section {
    padding: 80px 0;
    background: white;
}

.sports-page .testimonial-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.sports-page .testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
}

.sports-page .testimonial-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 15px;
    background: linear-gradient(135deg, #ff6b35 0%, #e63946 100%);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sports-page .testimonial-rating {
    margin-bottom: 20px;
}

.sports-page .testimonial-rating i {
    color: #ffd23f;
    font-size: 18px;
}

.sports-page .testimonial-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

.sports-page .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sports-page .testimonial-author img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 3px solid #ff6b35;
}

.sports-page .testimonial-author h5 {
    margin: 0;
    font-size: 17px;
    font-weight: 800;
    color: var(--dark-color);
}

.sports-page .testimonial-author span {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}

/* CTA Section */
.sports-page .cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #fff5f1 0%, #ffe8df 100%);
}

.sports-page .cta-box {
    background: linear-gradient(135deg, #ff6b35 0%, #e63946 100%);
    padding: 60px 50px;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(255, 107, 53, 0.3);
}

.sports-page .cta-title {
    font-size: 36px;
    font-weight: 900;
    color: white;
    margin-bottom: 15px;
}

.sports-page .cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
}

.sports-page .cta-features {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.sports-page .cta-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 600;
    font-size: 15px;
}

.sports-page .cta-features i {
    color: #06d6a0;
}

.sports-page .btn-cta {
    padding: 18px 45px;
    background: white;
    color: #ff6b35;
    border: none;
    border-radius: 50px;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sports-page .btn-cta:hover {
    background: #f1f5f9;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
    color: #ff6b35;
}

/* App Section */
.sports-page .app-section {
    padding: 80px 0;
    background: white;
}

.sports-page .app-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.sports-page .app-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-size: 16px;
    color: #64748b;
}

.sports-page .app-features li i {
    color: #06d6a0;
    font-size: 18px;
}

.sports-page .app-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.sports-page .app-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    color: white;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sports-page .app-btn:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #e63946 100%);
    transform: translateY(-3px);
    color: white;
}

.sports-page .app-btn i {
    font-size: 35px;
}

.sports-page .app-btn span {
    display: block;
    font-size: 12px;
    opacity: 0.8;
}

.sports-page .app-btn strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
}

.sports-page .app-mockup {
    text-align: center;
}

.sports-page .app-mockup img {
    max-width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* FAQ Section */
.sports-page .faq-section {
    padding: 80px 0;
    background: #fafafa;
}

.sports-page .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.sports-page .accordion-button {
    background: white;
    color: var(--dark-color);
    font-weight: 700;
    font-size: 16px;
    padding: 22px 28px;
    border: none;
}

.sports-page .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #ff6b35 0%, #e63946 100%);
    color: white;
    box-shadow: none;
}

.sports-page .accordion-body {
    padding: 22px 28px;
    color: #64748b;
    line-height: 1.8;
    background: white;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 991px) {
    .sports-page .hero-title {
        font-size: 38px;
    }
    
    .sports-page .section-title {
        font-size: 34px;
    }
    
    .sports-page .pricing-card.featured {
        transform: scale(1);
    }
    
    .sports-page .cta-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .sports-page .hero-actions {
        flex-direction: column;
    }
    
    .sports-page .hero-title {
        font-size: 32px;
    }
    
    .sports-page .section-title {
        font-size: 28px;
    }
    
    .sports-page .stat-number {
        font-size: 36px;
    }
    
    .sports-page .cta-box {
        padding: 40px 30px;
    }
    
    .sports-page .floating-card {
        padding: 12px 15px;
    }
    
    .sports-page .floating-card h6 {
        font-size: 14px;
    }
}


 