*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

/* Sports Categories Grid & Card Styles */
.sports-grid {
    display: flex;
    flex-direction: row;
    gap: 18px;
    overflow-x: auto;
    padding: 20px 0 20px 10px;
    max-width: 100vw;
    scrollbar-width: thin;
    scrollbar-color: #0078d7 #f0f4f8;
}

.sport-card {
    min-width: 350px;
    max-width: 220px;
    background: #f0f4f8;
    border-radius: 12px;
    padding: 22px 0 18px 0;
    text-align: center;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px #0002;
    transition: box-shadow 0.2s, background 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.sport-card:hover {
    box-shadow: 0 4px 16px #0078d733;
    background: #e6f0fa;
}

.card-image {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px #0001;
}

.badge {
    color: #222;
    font-weight: bold;
    padding: 7px 18px;
    font-size: 1rem;
    margin: 10px 0 8px 0;
    background: #dde4ff;
    width: fit-content;
    border-radius: 50px;
    display: inline-block;
}

.card-title {
    font-size: 1.08rem;
    color: #222;
    font-weight: 600;
    margin-bottom: 10px;
}

.card-button {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 16px;
    background: #0078d7;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    transition: background 0.18s;
    cursor: pointer;
}
.card-button:hover {
    background: #5f010a;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .sports-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 0 2px;
    }
    .sport-card {
        padding: 14px 0 12px 0;
    }
    .card-image {
        width: 70px;
        height: 70px;
    }
}

.choose-sport-title {
    font-size: 2rem;
    font-weight: bold;
    margin: 20px 0;
    text-align: center;
}
/* Slideshow */
.slideshow {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    background-color: #fff;
    z-index: 5;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slides img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    flex-shrink: 0;
}

.slideshow .prev, 
.slideshow .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    z-index: 1;
}

.slideshow .prev {
    left: 10px;
}

.slideshow .next {
    right: 10px;
}
/* Adjust slideshow images for mobile view */
@media (max-width: 768px) {
    .slides img {
        height: auto;
        object-fit: contain;
    }
}
/* Subscription plans container: row on desktop, column on mobile */
.plans-section-bg {
    background: linear-gradient(120deg, #232946 0%, #1a1a2e 100%);
    padding: 48px 0 56px 0;
    width: 98.9vw;
    margin: 0 auto 0 auto;
}
.plans-container {
    display: flex;
    flex-direction: row;
    gap: 32px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1100px;   /* was 800px, now wider */
    margin: 40px auto 0 auto;
}
.plan-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 0 32px 0 #2b4cff55, 0 4px 24px #0002;
    padding: 32px 28px;
    flex: 1 1 380px;
    min-width: 320px;
    text-align: center;
    border: 2.5px solid #e3e8f0;
    margin-bottom: 0;
    transition: box-shadow 0.2s, transform 0.2s;
}
.plan-card.pro {
    border: 2.5px solid #2b4cff;
    box-shadow: 0 0 40px 0 #2b4cff99, 0 6px 32px #2b4cff22;
}
.plan-card:hover {
    box-shadow: 0 0 48px 8px #2b4cffcc, 0 8px 32px #0003;
    transform: translateY(-6px) scale(1.03);
}
.plan-title {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2b4cff;
}
.plan-price {
    font-size: 2.2em;
    font-weight: 800;
    margin-bottom: 18px;
    color: #222;
}
.plan-features {
    text-align: left;
    margin: 0 auto 22px auto;
    max-width: 260px;
}
.plan-features li {
    margin-bottom: 10px;
    font-size: 1.08em;
}
.plan-btn {
    background: linear-gradient(90deg, #2b4cff 60%, #6d8cff 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 36px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s, box-shadow 0.18s;
    box-shadow: 0 2px 8px #2b4cff22;
}
.plan-btn:disabled {
    background: #e3e8f0;
    color: #aaa;
    cursor: not-allowed;
}

/* Stack plans in a column on small screens */
@media (max-width: 700px) {
    .plans-container {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
}