:root {
    --heading-color: #09144b;
}

/* ===========================
HERO SECTION
=========================== */

.hero-section {
    background:
        linear-gradient(
            135deg,
            #000000 0%,
            #0f0f0f 40%,
            #1a1a1a 100%
        );
    padding: 50px 0;
    overflow: hidden;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, .05);
    border-radius: 50%;
    top: -200px;
    right: -150px;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(250, 204, 21, .08);
    border-radius: 50%;
    bottom: -120px;
    left: -120px;
}

/* Badge */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    color: #facc15;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-badge i {
    font-size: 14px;
}

/* Heading */

.hero-section h1 {
    color: #fff;
    font-size: 45px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-section h1 span {
    color: #facc15;
}

.hero-desc {
    color: #dbe4ff;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Stats */

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.stat-box {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    padding: 10px 10px;
    text-align: center;
    transition: .3s;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, .12);
}

.stat-box i {
    font-size: 28px;
    color: #facc15;
    margin-bottom: 10px;
}

.stat-box h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0px;
}

.stat-box span {
    color: #dbe4ff;
    font-size: 12px;
}

/* Buttons */

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: space-between;
}

.hero-btns .btn {
    padding: 10px 30px;
    border-radius: 12px;
    font-weight: 600;
}

/* Trust Text */

.hero-trust {
    color: #dbe4ff;
    font-size: 14px;
}

.hero-trust i {
    color: #22c55e;
    margin-right: 8px;
}

/* Image */

.hero-image {
    position: relative;
    background: #fff;
    border-radius: 25px;
    padding: 5px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, .25);
}

.hero-image img {
    border-radius: 18px;
}

/* Floating Badges */

.hero-image-badge {
    position: absolute;
    padding: 10px 18px;
    background: #fff;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.badge-live {
    top: -15px;
    left: -15px;
    color: #16a34a;
}

.badge-fantasy {
    bottom: 25px;
    right: -20px;
    color: #2563eb;
}

/* Responsive */

@media(max-width:991px) {


    .hero-section {
        padding: 70px 0;
    }

    .hero-section h1 {
        font-size: 40px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-image {
        margin-top: 40px;
    }


}

@media(max-width:576px) {


    .hero-btns {
        flex-direction: column;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .hero-section h1 {
        font-size: 34px;
    }


}


.summary-card {
    background: #f7f8fc;
    border-radius: 10px;
}

.summary-title {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
    color: #09144b;
    margin-bottom: 10px;
}

.summary-text {
    color: #666;
    font-size: 12px;
    line-height: 1.9;
    margin-bottom: 10px;
}

.feature-box {
    background: #fff !important;
    border: 1px solid #edf0f5 !important;
    border-radius: 10px;
    padding: 25px 10px;
}

.why-sports .feature-box {
    background-color: transparent !important;
    border: none !important;
}

.why-sports .feature-box .card {
    border-radius: 10px;
    margin: 5px 0;
}

.why-sports .feature-box .card small {
    font-size: 12px;
}

.why-sports .feature-box h6 {
    font-size: 10px !important;
}

.feature-box .col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-box i {
    font-size: 30px;
    margin-bottom: 0px;
}

.feature-box h6 {
    font-size: 12px !important;
    font-weight: 800;
    color: #111;
    line-height: 1.4;
    margin: 0;
}

/* Icon Colors */
.sports-blue {
    color: #2747a8;
}

.sports-green {
    color: #29c66f;
}

.sports-orange {
    color: #f7a31a;
}

.sports-purple {
    color: #a84cff;
}

.sports-red {
    color: #ff4d4d;
}

.sports-business .left-area .card {
    border-radius: 10px;
}

.sports-business .left-area .card h2 {
    font-size: 25px;
    color: var(--heading-color);
    font-weight: 700;
}

.sports-business .left-area .card i {
    font-size: 35px;
}

.sports-business .left-area .card h6 {
    font-size: 12px;
    font-weight: 900;
}

.sports-business .left-area .card small {
    font-size: 11px;
}

.sports-business .right-area .card {
    height: 100%;
    border-radius: 10px;
}

.sports-business .right-area .card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.sports-business .right-area .card h5 {
    font-size: 30px;
    font-weight: 700;
}

.custom-sports {
    border-radius: 10px;
}

.custom-sports h2 {
    font-size: 25px;
    font-weight: 700;
    color: var(--heading-color);
}

.custom-sports small {
    font-size: 12px;
}

.custom-sports .card {
    border: none !important;
    margin: 10px 0;
}

.custom-sports .card i {
    font-size: 40px;
    margin-right: 15px;
}

.custom-sports .card h5 {
    font-size: 13px;
    color: #000;
    font-weight: 700;
}

.custom-sports .card p {
    font-size: 12px;
}

.sports-software-development h2 {
    font-size: 25px;
    color: var(--heading-color);
    text-align: center;
}

.sports-software-development p {
    font-size: 12px;
    text-align: center;
}

.sports-software {
    border-radius: 10px;
}

.sports-software h2 {
    font-size: 25px;
    font-weight: 700;
    color: var(--heading-color);
    text-align: center;
}

.sports-software .card {
    border: none;
    border-radius: 10px;
    height: 18rem;
    /* margin: 10px 0; */
}

.sports-software .card .card-body {
    padding: 10px;
}

.sports-software .card h5 {
    font-size: 11px;
    font-weight: 700;
}

.sports-software .card p {
    font-size: 11px;
}

.sports-row{
    display:flex;
    flex-wrap:nowrap;
    gap:10px;
}

.sports-row .col{
    flex:1;
    padding:0;
}


/* Mobile */
@media(max-width:767px){

    .sports-row{
        flex-wrap:wrap;
    }

    .sports-row .col{
        flex:0 0 100%;
        width:100%;
    }

    .sports-software .card{
        height: max-content;
    }

}

.sports-software .card i {
    font-size: 40px;
}

.sports-solutions {
    background: #f8fafc;
}

.solution-wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .05);
}

.solution-content {
    padding-right: 20px;
}

.solution-badge {
    display: inline-block;
    background: #eef2ff;
    color: #2563eb;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.solution-content h2 {
    font-size: 23px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}

.solution-content p {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 25px;
}

.solution-image {
    max-height: 220px;
}

.feature-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 22px;
    height: 100%;
    transition: .3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    border-color: #dbeafe;
}

.feature-card i {
    font-size: 42px;
    margin-bottom: 15px;
    display: block;
}

.feature-card h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.feature-card p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.club-academy .row{
    display:flex;
    flex-wrap:nowrap;
    gap:10px;
}

.club-academy .col{
    flex:0 0 16.666%;
    width:16.666%;
    padding:0;
}

.club-academy .feature-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    padding:20px 15px;
    height:100%;
    min-height:240px;
    transition:.3s ease;
    text-align:center;
}

.club-academy .feature-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.club-academy .feature-card i{
    font-size:32px;
    margin-bottom:15px;
}

.club-academy .feature-card h5{
    font-size:14px;
    font-weight:700;
    margin-bottom:10px;
}

.club-academy .feature-card p{
    font-size:12px;
    color:#6b7280;
    line-height:1.6;
}

/* Tablet */
@media (max-width:991px){

    .club-academy .row{
        flex-wrap:wrap;
    }

    .club-academy .col{
        flex:0 0 50%;
        width:50%;
    }
}

/* Mobile */
@media (max-width:767px){

    .club-academy .col{
        flex:0 0 100%;
        width:100%;
    }

    .club-academy .feature-card{
        min-height:auto;
    }
}



.betting-section {
    border-left: 6px solid #16a34a;
}

.fantasy-section {
    border-right: 6px solid #2563eb;
}

@media (max-width: 991px) {

    .solution-wrapper {
        padding: 25px;
    }

    .solution-content {
        text-align: center;
        margin-bottom: 30px;
        padding-right: 0;
    }

    .solution-content h2 {
        font-size: 28px;
    }

}




.sports-section {
    border-radius: 0px;
    margin: 0px 0;
    padding: 70px 0px;
}

.club-academy {
    background: #f8fbff;
}

.live-fan {
    background:
        radial-gradient(circle at center,
            #4a7dff 0%,
            #224db7 45%,
            #071b4f 100%);
}

.live-fan h2,
.live-fan p,
.live-fan .section-badge {
    color: #fff;
}

.live-fan .section-header p,
.analytics-athlete .section-header p,
.analytics-athlete .section-header h2 {
    color: #fff;
}

.analytics-athlete {
    background:
        radial-gradient(circle at center,
            #efe3ff 0%,
            #cfaeff 20%,
            #7c3aed 55%,
            #341067 100%);
}

.section-header {
    max-width: 900px;
    margin: auto;
}

.section-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: #edf4ff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 13px;
    color: #666;
}

.feature-card {
    background: #fff;
    border-radius: 22px;
    padding: 20px;
    height: 100%;
    transition: .35s;
    border: none;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.live-fan .feature-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
}

.live-fan .feature-card h5,
.live-fan .feature-card p {
    color: #fff;
}

.feature-card i {
    font-size: 35px;
    margin-bottom: 0px;
    display: block;
}

.feature-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 13px;
}

.feature-card p {
    margin: 0;
    color: #666;
    font-size: 12px;
}



.sports-features {
    background: #f8fafc;
}

.section-title {
    max-width: 850px;
    margin: auto;
}

.badge-feature {
    background: #e0f2fe;
    color: #0369a1;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 25px;
    font-weight: 700;
    margin: 10px 0;
}

.section-title p {
    color: #64748b;
    font-size: 14px;
}

.feature-category {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    height: 100%;
    border: 1px solid #e5e7eb;
    transition: .3s;
}

.feature-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    justify-content: center;
}

.category-header i {
    font-size: 25px;
    margin-top: 8px;
}

.category-header h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
}

.feature-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-category ul li {
    padding: 2px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 13px;
    color: #475569;
    position: relative;
    padding-left: 28px;
}

.feature-category ul li:last-child {
    border-bottom: none;
}

.feature-category ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* Theme Colors */

.user-features {
    border-top: 5px solid #2563eb;
}

.user-features i,
.user-features li:before {
    color: #2563eb;
}

.club-features {
    border-top: 5px solid #16a34a;
}

.club-features i,
.club-features li:before {
    color: #16a34a;
}

.admin-features {
    border-top: 5px solid #f59e0b;
}

.admin-features i,
.admin-features li:before {
    color: #f59e0b;
}

@media(max-width:768px) {

    .section-title h2 {
        font-size: 30px;
    }

    .feature-category {
        padding: 20px;
    }

}


.section-heading {
    max-width: 850px;
    margin: auto;
}

.section-heading h2 {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-heading p {
    color: #64748b;
    font-size: 14px;
}

.section-badge {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Security */

.security-section {
    background: #fff;
}

.security-card {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    height: 100%;
    border: 1px solid #e5e7eb;
    transition: .3s;
}

.security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.security-card i {
    font-size: 35px;
    margin-bottom: px;
    display: block;
}

.security-card h5 {
    font-size: 14px;
    font-weight: 700;
}

.security-card p {
    color: #64748b;
    font-size: 12px;
    margin-bottom: 0;
}

/* Integrations */

.integration-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    transition: .3s;
    height: 100%;
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.integration-card i {
    font-size: 50px;
    color: #2563eb;
    margin-bottom: 15px;
    display: block;
}

.integration-card h6 {
    font-weight: 600;
    margin: 0;
}

/* Process */

.process-section {
    background: #f8fafc;
}

.process-card {
    background: #fff;
    text-align: center;
    padding: 25px;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    height: 100%;
    position: relative;
}

.process-card span {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2563eb;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.process-card h5 {
    font-size: 18px;
    font-weight: 700;
}

.process-card p {
    font-size: 14px;
    color: #64748b;
}

@media(max-width:768px) {

    .section-heading h2 {
        font-size: 30px;
    }

}


.why-sisgain {
    background: #f8fafc;
}

.comparison-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    height: 100%;
}

.vendor-card {
    border-left: 5px solid #ef4444;
}

.sisgain-card {
    border-left: 5px solid #22c55e;
}

.comparison-card h4 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
}

.comparison-card li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.comparison-card ul li i {
    font-size: 11px;
    flex-shrink: 0;
    margin-right: 10px;
}


.chips-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.use-chip {
    color: #64748b;
    padding: 10px 25px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid #e5e7eb;
    font-weight: 400;
    transition: .3s;
}

.use-chip:hover {
    background: #64748b;
    color: #fff;
}

.tech-stack {
    background: #f8fafc;
}

.tech-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 20px;
    height: 100%;
    transition: 0.3s;
    text-align: center;
}

.tech-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.tech-card i {
    font-size: 35px;
    margin-bottom: 0px;
    display: block;
}

.tech-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 17px;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.tech-list span {
    background: #f1f5f9;
    color: #334155;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}


.business-outcomes {
    background: #f8fafc;
}

.outcome-card {
    background: #fff;
    padding: 15px;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    height: 100%;
    transition: .3s;
}

.outcome-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.outcome-card i {
    font-size: 35px;
    margin-bottom: 5px;
    display: block;
}

.outcome-card h5 {
    font-size: 12px;
    font-weight: 700;
}

.outcome-card p {
    color: #64748b;
    font-size: 12px;
}

.project-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 20px;
    height: 100%;
    transition: .3s;
}

.project-card h5 {
    font-size: 13px;
    font-weight: 700;
}

.project-card p {
    font-size: 13px;
    color: #64748b;
}

.project-card:hover {
    border-color: #2563eb;
    transform: translateY(-5px);
}

.project-card i {
    font-size: 35px;
    margin-bottom: 5px;
    display: block;
}

.sports-cost {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.sports-cost .lead {
    font-size: 15px;
    color: #64748b;
    max-width: 850px;
}

.cost-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 12px 18px;
    font-size: 12px;
    font-weight: 600;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
    transition: .3s ease;
}

.cost-item::before {
    content: "✓";
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    background: #dcfce7;
    color: #15803d;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.cost-item:hover {
    transform: translateY(-3px);
    border-color: #2563eb;
    box-shadow: 0 10px 25px rgba(37, 99, 235, .08);
}

.estimate-box {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #fff;
    padding: 40px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(37, 99, 235, .25);
}

.estimate-box::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    top: -80px;
    right: -80px;
}

.estimate-box::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    bottom: -50px;
    left: -40px;
}

.estimate-box h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.estimate-box p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .85);
    position: relative;
    z-index: 2;
}

.estimate-box .btn {
    background: #fff;
    color: #2563eb;
    border: none;
    font-weight: 700;
    padding: 12px 24px;
    margin-top: 10px;
    position: relative;
    z-index: 2;
}

.estimate-box .btn:hover {
    transform: translateY(-2px);
}


/* FAQ */
.sports-faq {
    background: #f8fafc;
}

.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .04);
}

.faq-accordion .accordion-button {
    padding: 18px 20px;
    font-size: 14px;
    font-weight: 600;
    background: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: #eff6ff;
    color: #2563eb;
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-body {
    font-size: 13px;
    color: #64748b;
    line-height: 1.7;
}

.final-cta .cta-box {
    background: linear-gradient(135deg, #2563eb, #1e3a8a);
    color: #fff;
    padding: 70px 50px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.final-cta .cta-box h2 {
    font-size: 42px;
    font-weight: 800;
    max-width: 900px;
    margin: auto;
}

.final-cta .cta-box p {
    max-width: 800px;
    margin: 20px auto;
    opacity: .9;
}

.final-cta .btn {
    font-weight: 700;
}


.sports-footer {
    background: #fff;
    padding: 70px 0 20px;
    border-top: 1px solid #e5e7eb;
}

.footer-logo {
    max-width: 220px;
}

.footer-about {
    font-size: 14px;
    color: #64748b;
    line-height: 1.9;
    max-width: 320px;
}

.sports-footer h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #0f172a;
}

.sports-footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sports-footer ul li {
    margin-bottom: 14px;
}

.sports-footer ul li a {
    text-decoration: none;
    color: #475569;
    font-size: 14px;
    transition: .3s;
}

.sports-footer ul li a:hover {
    color: #2563eb;
}

.contact-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #475569;
    font-size: 14px;
}

.contact-list i {
    color: #2563eb;
    margin-top: 2px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border: 1px solid #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    text-decoration: none;
    transition: .3s;
}

.social-icons a:hover {
    background: #2563eb;
    color: #fff;
}

.sports-footer hr {
    margin: 50px 0 25px;
    color: #e2e8f0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #64748b;
}

.footer-bottom a {
    text-decoration: none;
    color: #64748b;
    font-size: 14px;
}

.footer-bottom span {
    margin: 0 15px;
    color: #cbd5e1;
}

@media(max-width:768px) {

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

}