html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

*, *:after, *:before {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #fff;
}

.header {
    background: linear-gradient(135deg, #ff4500, #ff6b35);
    color: white;
    position: relative;
    z-index: 1000;
    width: 100%;
    overflow: hidden;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px 10px;
}

.header-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 15px;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

.nav-desktop {
    display: flex;
    list-style: none;
    margin: 0;
    gap: 30px;
    align-items: center;
}

.nav-desktop li {
    margin: 0;
}

.nav-desktop a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.nav-desktop a:hover {
    opacity: 0.8;
}

.auth-buttons-desktop {
    display: flex;
    gap: 10px;
    align-items: center;
}

.login-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    white-space: nowrap;
}

.login-btn:hover {
    background: white;
    color: #ff4500;
}

.create-account-btn {
    background: #28a745;
    border: none;
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 14px;
    white-space: nowrap;
}

.create-account-btn:hover {
    background: #218838;
}

.language-selector {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
}

.help-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.burger-line {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.mobile-overlay.show {
    display: block;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100%;
    background: #2c2c2c;
    z-index: 1001;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.open {
    left: 0;
}

.mobile-menu-header {
    background: linear-gradient(135deg, #ff4500, #ff6b35);
    padding: 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-header .logo {
    font-size: 24px;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav {
    padding: 20px 0;
}

.mobile-nav-item {
    padding: 15px 20px;
    border-bottom: 1px solid #444;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: background-color 0.3s;
}

.mobile-nav-item:hover {
    background: #444;
}

.mobile-nav-item i {
    width: 20px;
    margin-right: 15px;
    text-align: center;
}

.mobile-auth-buttons {
    padding: 20px;
    border-top: 1px solid #444;
}

.mobile-auth-buttons button {
    width: 100%;
    margin-bottom: 10px;
    padding: 12px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-login-btn {
    background: transparent;
    border: 2px solid #ff4500;
    color: #ff4500;
}

.mobile-create-btn {
    background: #28a745;
    border: none;
    color: white;
}

.hero-banner {
    background: url("../images/banner.avif") no-repeat 0 0;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-banner:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.partner-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    color: #333;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.payment-method {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 950px) {
    .header-top {
        padding: 15px 20px;
    }

    .header-bottom {
        display: none;
    }

    .auth-buttons-desktop {
        display: none;
    }

    .burger-menu {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .partner-badge {
        position: static;
        display: inline-block;
        margin-bottom: 20px;
    }

    .payment-methods {
        gap: 10px;
    }

    .payment-method {
        font-size: 10px;
        padding: 6px 12px;
    }
}

.popular-sports {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 0;
}

.sports-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.sports-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
}

.show-all-btn {
    background: transparent;
    border: 2px solid #ff4500;
    color: #ff4500;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-all-btn:hover {
    background: #ff4500;
    color: white;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.sport-card {
    background: url("../images/list-icon-1.avif") no-repeat 0 0;
    background-size: cover;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    &:nth-child(2) {
        background: url("../images/list-icon-2.avif") no-repeat 0 0;
        background-size: cover;
    }

    &:nth-child(3) {
        background: url("../images/list-icon-3.avif") no-repeat 0 0;
        background-size: cover;
    }

    &:nth-child(4) {
        background: url("../images/list-icon-4.avif") no-repeat 0 0;
        background-size: cover;
    }

    &:nth-child(5) {
        background: url("../images/list-icon-5.avif") no-repeat 0 0;
        background-size: cover;
    }

    &:nth-child(6) {
        background: url("../images/list-icon-6.avif") no-repeat 0 0;
        background-size: cover;
    }
}

.sport-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .9);
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.sport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.3);
}

.sport-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.sport-icon svg {
    width: 100%;
    height: 100%;
    fill: white;
}

.sport-name {
    color: white;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sports-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .sports-title {
        font-size: 28px;
    }

    .sports-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .sport-card {
        padding: 30px 15px;
        min-height: 150px;
    }

    .sport-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }

    .sport-name {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


.why-play-section {
    max-width: 1400px;
    margin: 0 auto 30px;
    background: white;
    border-radius: 12px;
    padding: 50px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 50px;
    text-align: left;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    padding: 30px 0;
}

.feature-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.feature-description {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-stats {
    margin-top: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.stat-label {
    margin-right: 10px;
}

.stat-value {
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
}

.info-icon {
    width: 16px;
    height: 16px;
    background: #ccc;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    cursor: help;
}

.contact-link {
    color: #ff4500;
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

.feature-card:not(:last-child) {
    border-right: 1px solid #e9ecef;
    padding-right: 40px;
}

@media (max-width: 1024px) {
    .why-play-section {
        padding: 40px 30px;
    }

    .features-grid {
        gap: 30px;
    }

    .feature-card:not(:last-child) {
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    .why-play-section {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-card {
        padding: 20px 0;
        border-right: none !important;
        padding-right: 0 !important;
    }

    .feature-card:not(:last-child) {
        border-bottom: 1px solid #e9ecef;
        padding-bottom: 40px;
    }

    .feature-title {
        font-size: 18px;
        text-align: center;
    }

    .feature-description {
        text-align: center;
        font-size: 14px;
    }

    .feature-stats {
        text-align: center;
    }

    .stat-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .why-play-section {
        padding: 20px 15px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .features-grid {
        gap: 30px;
    }

    .feature-card:not(:last-child) {
        padding-bottom: 30px;
    }
}


.footer {
    background: #3c3c3c;
    color: #ffffff;
    padding: 60px 20px 30px;
    margin-top: auto;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: right;
}

.copyright {
    color: #999999;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 20px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-column h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

section.content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 0;

    @media(max-width: 765px) {
        padding: 0 10px;
    }

    h2 {
        font-size: 22px;
        font-weight: 600;
        text-align: center;
        margin: 15px 0;
        line-height: 27px;
    }

    h3 {
        font-size: 20px;
        font-weight: 600;
        text-align: center;
        margin: 15px 0;
        line-height: 25px;
    }

    p {
        font-size: 16px;
        line-height: 1.5;
    }

    ul, ol {
        list-style: disc;
        padding-left: 15px;
    }

    li {
        line-height: 1.5;
    }

    table {
        width: 100%;
        border-collapse: collapse;
        background-color: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        margin: 20px 0;
    }

    td {
        padding: 12px 16px;
        border-bottom: 1px solid #e1e5e9;
        vertical-align: top;
    }

    tr:first-child td {
        background-color: #f8f9fa;
        font-weight: 600;
        color: #2c3e50;
        border-bottom: 2px solid #dee2e6;
    }

    tr:last-child td {
        border-bottom: none;
    }

    tr:not(:first-child):hover {
        background-color: #f8f9fa;
        transition: background-color 0.2s ease;
    }

    p {
        margin: 0;
        line-height: 1.4;
    }

    strong {
        font-weight: 600;
    }

    @media screen and (max-width: 768px) {
        .table-container {
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        table {
            min-width: 600px;
            margin: 0;
            border-radius: 0;
        }

        td {
            white-space: nowrap;
            padding: 12px 8px;
            min-width: 120px;
        }

        td:first-child {
            min-width: 100px;
        }

        td:last-child {
            min-width: 200px;
            white-space: normal;
            max-width: 250px;
        }
    }


    @media screen and (max-width: 480px) {

        .table-container {
            margin: 0 -10px;
            border-radius: 0;
        }

        table {
            min-width: 500px;
        }

        td {
            padding: 10px 6px;
            font-size: 14px;
        }
    }

    .content-wrapper {

    }
}

.trending-section {
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: hidden;

    @media (max-width: 768px) {
        padding: 0 10px;
    }
}

.trending-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.trending-title {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trending-count {
    background: rgba(255, 255, 255, 0.1);
    color: #888;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 14px;
}

.view-all {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.2s;
}

.view-all:hover {
    opacity: 0.8;
}

.games-container {
    position: relative;
    margin: 0 -10px;
}

.games-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 0 10px 20px 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.games-scroll::-webkit-scrollbar {
    height: 6px;
}

.games-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.games-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.game-card {
    flex: 0 0 280px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.game-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    color: white;
}

.game-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.new-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #4CAF50;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.play-buttons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .play-buttons {
    opacity: 1;
}

.play-btn {
    background: rgba(76, 175, 80, 0.9);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.practice-btn {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.practice-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {

    .trending-title {
        font-size: 20px;
    }

    .game-card {
        flex: 0 0 240px;
    }

    .game-image {
        height: 240px;
    }

    .games-scroll {
        gap: 15px;
        padding: 0 5px 15px 5px;
    }

    .game-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .game-card {
        flex: 0 0 200px;
    }

    .game-image {
        height: 200px;
    }

    .games-scroll {
        gap: 12px;
    }
}

.popular-sports {
    max-width: 1400px;
    margin: 0 auto;
}

.sports-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.sports-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
}

.show-all-btn {
    background: transparent;
    border: 2px solid #ff4500;
    color: #ff4500;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.show-all-btn:hover {
    background: #ff4500;
    color: white;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.sport-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.sport-card {
    background: linear-gradient(135deg, #ff4500, #ff6b35);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sport-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="lines" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M0,20 L20,0" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="200" height="200" fill="url(%23lines)"/></svg>');
    opacity: 0.3;
}

.sport-link:hover .sport-card {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.3);
}

.sport-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.sport-icon svg {
    width: 100%;
    height: 100%;
    fill: white;
}

.sport-name {
    color: white;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .sports-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
}

@media (max-width: 900px) {
    .sports-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .sport-card {
        padding: 30px 15px;
        min-height: 160px;
    }

    .sport-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 14px;
    }

    .sport-name {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .sports-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .sports-title {
        font-size: 28px;
    }

    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .sport-card {
        padding: 25px 15px;
        min-height: 140px;
    }

    .sport-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }

    .sport-name {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 20px 10px;
    }

    .sports-title {
        font-size: 24px;
    }

    .show-all-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .sports-grid {
        gap: 12px;
    }

    .sport-card {
        padding: 20px 10px;
        min-height: 120px;
    }

    .sport-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .sport-name {
        font-size: 13px;
    }
}

/* Focus states for accessibility */
.sport-link:focus {
    outline: 3px solid #ff4500;
    outline-offset: 2px;
    border-radius: 12px;
}

.show-all-btn:focus {
    outline: 3px solid #ff4500;
    outline-offset: 2px;
}

.content-section {
    max-width: 1400px;
    margin: 0 auto 60px;
    background: white;
    border-radius: 12px;
    padding: 50px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.content-section:last-child {
    margin-bottom: 0;
}

/* Typography */
.content-heading {
    font-size: 32px;
    font-weight: bold;
    color: #2c2c2c;
    margin-bottom: 20px;
    border-bottom: 3px solid #ff4500;
    padding-bottom: 15px;
}

.content-subheading {
    font-size: 24px;
    font-weight: 600;
    color: #444;
    margin: 30px 0 15px;
}

.content-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.content-text:last-child {
    margin-bottom: 0;
}

/* Lists */
.content-list {
    margin: 20px 0;
    padding-left: 25px;
}

.content-list li {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.content-ordered-list {
    margin: 20px 0;
    padding-left: 25px;
}

.content-ordered-list li {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Table Styles */
.table-container {
    margin: 25px 0;
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.content-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 600px;
}

.content-table tbody tr:first-child {
    background: #ff4500;
}

.content-table tbody tr:first-child td {
    color: white;
    font-weight: bold;
    padding: 15px 20px;
    border: none;
}

.content-table td {
    padding: 12px 20px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: top;
}

.content-table tbody tr:not(:first-child):nth-child(even) {
    background: #f8f9fa;
}

.content-table tbody tr:not(:first-child):hover {
    background: #e3f2fd;
}

/* Strong text */
.content-text strong,
.content-list strong {
    color: #2c2c2c;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-section {
        margin: 0 20px 40px;
        padding: 30px 25px;
    }

    .content-heading {
        font-size: 28px;
    }

    .content-subheading {
        font-size: 20px;
        margin: 25px 0 12px;
    }

    .content-text {
        font-size: 15px;
    }

    .content-list,
    .content-ordered-list {
        padding-left: 20px;
    }

    .content-list li,
    .content-ordered-list li {
        font-size: 15px;
    }

    .table-container {
        margin: 20px -25px;
        border-radius: 0;
    }

    .content-table {
        min-width: 500px;
    }

    .content-table td {
        padding: 10px 15px;
        font-size: 14px;
    }

    .content-table tbody tr:first-child td {
        padding: 12px 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .content-section {
        margin: 0 10px 30px;
        padding: 25px 20px;
    }

    .content-heading {
        font-size: 24px;
    }

    .content-subheading {
        font-size: 18px;
    }

    .content-text {
        font-size: 14px;
    }

    .content-list li,
    .content-ordered-list li {
        font-size: 14px;
    }

    .table-container {
        margin: 15px -20px;
    }

    .content-table {
        min-width: 450px;
    }

    .content-table td {
        padding: 8px 12px;
        font-size: 13px;
    }

    .content-table tbody tr:first-child td {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* Page spacing */
.page-container {
    padding: 60px 0;
}