@font-face {
    font-family: 'NMSFuturaProBook';
    src: url('https://font.nmscd.com/assets/font/NMSFuturaProBook_Kerned/Web-TT/NMSFuturaProBook_Kerned.eot');
    src: url('https://font.nmscd.com/assets/font/NMSFuturaProBook_Kerned/Web-TT/NMSFuturaProBook_Kerned.eot?#iefix') format('embedded-opentype'),
        url('https://font.nmscd.com/assets/font/NMSFuturaProBook_Kerned/Web-TT/NMSFuturaProBook_Kerned.woff') format('woff'),
        url('https://font.nmscd.com/assets/font/NMSFuturaProBook_Kerned/Web-TT/NMSFuturaProBook_Kerned.ttf') format('truetype');
}

:root {
    --wfa: -webkit-fill-available;
    --nms-font: 'NMSFuturaProBook';
    --nms-charcoal: #1a1a1a;
    --nms-light: #ffffff;
    --nms-red: #D71920;
    --nms-red-light: #D719208C;

    /* Charity Colors */
    --charity-box-bg: #00007e20;
    --charity-box-border: #009cee96;
    --charity-btn-bg: #F0F0FFde;
    --charity-btn-hover: #e60079de;

    --primary-color: var(--nms-red);
    --secondary-color: var(--nms-light);
    --bg-gradient: linear-gradient(135deg, #000 0%, #111 50%, #000 100%);
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

html {
    min-height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: var(--nms-font);
    background: var(--bg-gradient);
    color: #fff;
    margin: 0;
    padding: 0;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.para-h1 {
    font-size: 26px !important;
    margin-bottom: 1rem;
}

.para-txt {
    font-size: 18px !important;
}

.para-ul {
    font-size: 18px !important;
    list-style: none;
    padding-left: 0px;
    display: grid;
    gap: 0.5rem;
}

.para-ul li strong i {
    margin-right: 0.5rem;
}

.site-btn {
    font-size: 16px !important;
}

.site-btn i {
    margin-right: 0.5rem;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--primary-color);
    position: fixed;
    top: 0px;
    width: var(--wfa);
    z-index: 1000;
}

#hamburger-menu {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 6px;
    z-index: 1002;
}

#hamburger-menu span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

#hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

#hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -9px);
}

.mobile-menu-modal {
    display: none;
    position: fixed;
    top: 120px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1001;
    border-bottom: 1px solid var(--primary-color);
    animation: slideDown 0.3s ease-out;
}

.mobile-menu-modal.active {
    display: block;
}

.mobile-nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    display: block;
    padding: 1rem 1.5rem;
    text-shadow: var(--text-shadow);
    transition: background 0.3s;
}

.mobile-nav-menu a:hover {
    background: var(--card-bg);
    color: var(--primary-color);
}

.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-content {
    display: none;
    background: rgba(255, 255, 255, 0.05);
}

.mobile-dropdown-content a {
    padding: 0.75rem 1.5rem 0.75rem 3rem;
    font-size: 0.95rem;
}

.mobile-dropdown.active .mobile-dropdown-content {
    display: block;
}

.brand {
    background-image: url('images/xc-new-t.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 200px;
    height: 75px;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    min-width: 160px;
    box-shadow: 0 8px 16px rgb(158 24 29 / 0.5);
    z-index: 1;
}

.dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-shadow: var(--text-shadow);
}

.dropdown-content a:hover {
    background: var(--card-bg);
    color: var(--primary-color);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.nav-menu a {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    text-shadow: var(--text-shadow);
}

.nav-menu a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgb(158 24 29 / 0.5);
}

main {
    flex: 1;
    margin-top: 100px;
    padding: 0.5rem 2rem 2rem 2rem;
}

img.cruk-logo {
    width: 200px;
    height: auto;
}

ul.scoring-list {
    list-style: none;
    padding-left: 0;
}

ul.scoring-list li i {
    padding-right: 0.1rem;
}

.page {
    display: none;
    min-height: 60vh;
}

.page.active {
    display: block;
}

h1, h2, h3 {
    color: var(--nms-light);
    text-shadow: var(--text-shadow);
}

i.fas {
    color: var(--nms-red);
    text-shadow: 0 0 10px rgb(158 24 29 / 0.5);
}

button i.fas {
    color: var(--nms-light);
    text-shadow: none;
}

.hero-card {
    padding: 0px !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.1);
}

.card p {
    margin: 0px;
}

.home-card-single {
    margin-top: 1rem;
}

.registration-card {
    border-color: rgba(0, 212, 255, 0.35);
    background: rgba(0, 212, 255, 0.08);
    margin: 0;
    display: flex;
    flex-direction: column;
}

.registration-card p {
    margin: 0.75rem 0 0;
    color: #e6f7ff;
}

.donation-card {
    border-color: var(--charity-box-border);
    background: var(--charity-box-bg);
    display: flex;
    flex-direction: column;
}

.donation-card p {
    margin: 0.75rem 0 0;
    color: #fff3bf;
    display: inline-flex;
}

.card-row {
    display: grid;
    gap: 1rem;
}

.card-row.two-cards {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.card-row.two-cards > .card {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.card-row.one-card {
    grid-template-columns: 1fr;
}

.card-row.two-cards > .card.home-card-single {
    padding: 0;
    min-height: 0;
}

.card-row.two-cards > .card.home-card-single img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    display: block;
}

.registration-btn {
    display: inline-block;
    margin-top: auto;
    text-decoration: none;
    width: var(--wfa);
    text-align: center;
}

.donation-btn {
    display: inline-block;
    margin-top: auto;
    text-decoration: none;
    width: var(--wfa);
    text-align: center;
    background-color: var(--charity-btn-bg) !important;
    color: var(--charity-btn-hover) !important;
    margin-top: 1rem;
}

.donation-btn:hover {
    background-color: var(--charity-btn-hover) !important;
    color: var(--charity-btn-bgr) !important;
}

.hero-overlay {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 -2rem 2rem -2rem;
    overflow: hidden;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(26, 26, 26, 0.7) 100%);
    z-index: 1;
}

.hero-overlay-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    color: #fff;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    margin: 0 0 1.5rem 0;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.card h2 {
    margin-top: 0px;
}

.about-hero, .home-hero {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.about-hero {
    text-align: left !important;
}

.about-content, .home-content {
    flex: 1;
}

.about-image, .home-image {
    font-size: 6rem;
    opacity: 0.7;
    color: var(--primary-color);
}

.hof-subtitle {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    max-width: var(--wfa);
}

.hof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 1rem;
}

.hof-winner-card {
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(255, 255, 255, 0.08);
    text-align: center;
    padding: 1.5rem 1rem;
    display: grid;
    gap: 1rem;
    align-items: center;
}

.hof-year {
    color: var(--secondary-color);
    letter-spacing: 0.1em;
    font-size: 1.25rem;
    font-weight: bold;
    text-transform: uppercase;
}

.hof-winner-badge {
    font-size: 3rem;
}

.hof-winner-name {
    color: #fff;
    font-size: 1.35rem;
    font-weight: bold;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.8);
}

.hof-winner-label {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.pr-search-card {
    width: var(--wfa);
    display: flex;
    justify-content: space-between;
}

.pr-search-label {
    height: fit-content; 
    margin: auto 0; 
    font-size: 20px; 
    font-weight: bold;
}

.pr-search-select {
    font-size: 15px;
}

.standings-accordion {
    display: grid;
    gap: 1rem;
}

.player-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 14px;
    overflow: hidden;
}

.player-summary {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: transparent;
    color: #fff;
    border: none;
    cursor: pointer;
    text-align: left;
}

.player-summary:hover {
    background: rgba(0, 212, 255, 0.08);
}

.rank-badge {
    display: inline-flex;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.2);
    color: var(--nms-light);
    font-weight: bold;
    border: 1px solid rgba(0, 212, 255, 0.35);
}

.player-title {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.player-name {
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.player-platform {
    opacity: 0.75;
    font-size: 0.95rem;
}

.player-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
    white-space: nowrap;
}

.points {
    color: var(--secondary-color);
    font-weight: bold;
}

.omw {
    opacity: 0.75;
    font-size: 0.9rem;
}

.player-details {
    max-height: 0;
    overflow: hidden;
    padding: 0 1rem;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.player-card.expanded .player-details {
    max-height: 400px;
    padding: 1rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-row:last-child {
    border-bottom: none;
}

.podium-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 1rem;
    align-items: end;
}

.podium-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.podium-item.gold {
    border-color: rgba(255, 215, 0, 0.6);
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.12), rgba(255, 255, 255, 0.04));
}

.podium-item.silver {
    border-color: rgba(192, 192, 192, 0.6);
}

.podium-item.bronze {
    border-color: rgba(205, 127, 50, 0.6);
}

.medal-badge {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.podium-item.gold .medal-badge {
    background: #ffd700;
    color: #000;
}

.podium-item.silver .medal-badge {
    background: #c0c0c0;
    color: #000;
}

.podium-item.bronze .medal-badge {
    background: #cd7f32;
    color: #000;
}

.podium-label {
    opacity: 0.75;
    font-size: 0.95rem;
}

.home-hero-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.home-hero-image-secondary {
    width: 100%;
    max-height: 150px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.home-card-buttons {
    width: var(--wfa);
    display: inline-flex;
    gap: 1rem;
    margin-top: auto;
}

.home-card-buttons button {
    flex: 1;
}

.home-card-buttons a {
    text-decoration: none;
    text-align: center;
    flex: 1;
}

.btn {
    background: var(--primary-color);
    color: var(--nms-light);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-family: var(--nms-font);
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background: var(--nms-red-light);
}

a.contact-email {
    color: var(--primary-color);
    text-decoration: none;
}

a.contact-email:hover {
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid var(--primary-color);
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.table th, .table td {
    border: 1px solid var(--primary-color);
    padding: 0.5rem;
    text-align: left;
}

.table th {
    background: var(--card-bg);
    color: var(--primary-color);
}

select.select option {
    background: #010101;
    color: #fff;
}

.select {
    background: var(--card-bg);
    color: #fff;
    border: 1px solid var(--primary-color);
    padding: 0.5rem;
    border-radius: 5px;
    font-family: var(--nms-font);
}

.fixtures-list {
    display: grid;
    gap: 1rem;
}

.fixture-card {
    background: rgba(52, 165, 251, 0.05);
    border: 1px solid rgba(52, 165, 251, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.fixture-card:hover {
    background: rgba(52, 165, 251, 0.075);
    border-color: rgba(52, 165, 251, 0.5);
    box-shadow: 0 4px 15px rgba(52, 165, 251, 0.10);
}

.fixture-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.fixture-datetime {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    display: flex;
}

.fixture-dt-box {
    height: fit-content;
    display: flex;
    gap: 2rem;
    margin: auto;
}

.fixture-matchup {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.fixture-player {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.fixture-matchup > .fixture-player:first-child {
    text-align: right;
    justify-self: end;
}

.fixture-matchup > .fixture-player:last-child {
    text-align: left;
    justify-self: start;
}

.fixture-player .player-name {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--nms-light);
}

.fixture-player .player-platform {
    font-size: 0.85rem;
    opacity: 0.8;
}

.vs-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-weight: bold;
    font-size: 0.9rem;
}

.fixture-umpire {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
}

.fixture-ump-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: auto;
}

.fixture-status {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    white-space: nowrap;
    min-width: 100px;
    height: var(--wfa);
    align-content: center;
}

.fixture-status.scheduled {
    background: rgb(210 210 210 / 0.2);
    border-color: rgb(210 210 210 / 0.75);
    color: rgb(210 210 210 / 0.75);
}

.fixture-status.live {
    background: rgb(0 216 32 / 0.2);
    border-color: rgb(76 199 94);
    color: rgb(76 199 94);
    animation: pulse 2s infinite;
}

.fixture-status.completed {
    background: rgb(60 228 85 / 0.1);
    border-color: rgb(76 199 94 / 0.5);
    color: rgb(76 199 94 / 0.5);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Accordion Styles for Rules Page */
.accordion-rule-card {
    padding: 0 !important;
    overflow: hidden;
}

.accordion-rule-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 1.5rem;
    color: inherit;
    font-family: inherit;
    transition: background 0.3s ease;
}

.accordion-rule-toggle:hover {
    background: rgb(215 25 32 / 0.1);
}

.accordion-rule-toggle h2 {
    margin: 0;
    flex: 1;
    display: flex;
    align-items: center;
}

.accordion-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.accordion-rule-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-rule-card.expanded .accordion-rule-content {
    max-height: 2000px;
    padding: 1.5rem;
}

.accordion-rule-card.expanded .accordion-icon {
    transform: rotate(180deg);
}

.accordion-rule-card.expanded button {
    background: rgb(215 25 32 / 0.2);
}

@media (max-width: 900px) {
    .hero-overlay {
        min-height: 400px;
        margin: 0 -1rem 1.5rem -1rem;
    }

    .hero-overlay-content {
        padding: 1.5rem 2rem;
    }

    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .home-card-buttons {
        display: grid;
    }

    header {
        padding: 0.75rem 1rem;
        justify-content: space-between;
    }

    #hamburger-menu {
        display: flex;
    }

    .brand {
        width: 150px;
        height: 50px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-modal {
        top: 120px;
    }

    main {
        padding: 1rem;
        margin-top: 59px;
    }

    .mobile-menu-modal.active {
        margin-top: -45px;
    }

    .fixture-dt-box span {
        display: grid;
        text-align: center;
    }

    .fixture-dt-box span i {
        margin: 0;
        margin-bottom: 0.25rem;
    }

    .hof-grid {
        display: block;
    }

    .hof-winner-card {
        margin: 1rem 0 !important;
    }

    .podium-grid {
        grid-template-columns: 1fr;
    }

    .player-summary {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .player-stats {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .card {
        padding: 1rem;
        margin: 1rem 0;
    }

    .home-card-single {
        margin-top: 1rem;
    }

    .registration-card {
        margin: 0;
    }

    .registration-btn {
        text-align: center;
    }

    .about-hero, .home-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image, .home-image {
        font-size: 4rem;
    }

    .card-row {
        grid-template-columns: 1fr;
    }

    .card-row.two-cards {
        grid-template-columns: 1fr;
    }

    .donation-card p {
        display: contents;
    }

    .registration-btn {
        margin-top: 1rem;
    }

    .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
        width: var(--wfa);
    }

    .table {
        font-size: 0.85rem;
    }

    .table th, .table td {
        padding: 0.25rem;
    }

    .fixture-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    .fixture-round-badge {
        position: static;
        margin-bottom: 0.5rem;
        display: inline-block;
    }

    .fixture-details {
        gap: 1.5rem;
    }

    .fixture-datetime {
        gap: 0.5rem;
        font-size: 0.9rem;
    }

    .fixture-matchup {
        grid-template-columns: 1fr auto 1fr;
        gap: 0.75rem;
        align-items: center;
    }

    .fixture-player .player-name {
        font-size: 0.95rem;
    }

    .fixture-player .player-platform {
        font-size: 0.8rem;
    }

    .vs-text {
        font-size: 0.85rem;
        padding: 0 0.25rem;
    }

    .fixture-umpire {
        font-size: 0.85rem;
    }

    .fixture-status {
        width: var(--wfa);
        padding: 0.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-overlay {
        min-height: 350px;
        margin: 0 -0.75rem 1rem -0.75rem;
        background-attachment: scroll;
    }

    .hero-overlay-content {
        padding: 1rem 2rem;
        text-align: center;
    }

    .hero-overlay h1 {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
    }

    .hero-overlay-content p {
        font-size: 1rem;
        max-width: 100%;
    }

    .home-card-buttons {
        display: grid;
    }

    header {
        padding: 0.5rem 0.75rem;
        top: 0px;
    }

    .brand {
        width: 120px;
        height: 60px;
    }

    .mobile-menu-modal {
        top: 110px;
    }

    .mobile-menu-modal.active {
        margin-top: -33px;
    }

    main {
        margin-top: 65px;
        padding: 0.75rem;
    }

    .hof-grid {
        display: block;
    }

    .hof-winner-card {
        margin: 1rem 0 !important;
    }

    .fixture-dt-box span {
        display: grid;
        text-align: center;
    }

    .fixture-dt-box span i {
        margin: 0;
        margin-bottom: 0.25rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .card {
        padding: 0.75rem;
        margin: 1rem 0;
    }

    .home-card-single {
        margin-top: 1rem;
    }

    .card-row.two-cards {
        grid-template-columns: 1fr;
    }

    .donation-card p {
        display: contents;
    }

    .registration-card {
        margin: 0;
    }

    .registration-btn {
        text-align: center;
        margin-top: 1rem;
    }

    .pr-search-card {
        display: block;
    }

    .pr-search-label {
        width: var(--wfa);
    }

    .pr-search-select {
        width: var(--wfa);
        margin-top: 0.5rem;
    }

    .btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }

    .podium-grid {
        grid-template-columns: 1fr;
    }

    .player-summary {
        grid-template-columns: 1fr;
    }

    .player-stats {
        align-items: flex-start;
    }

    .table {
        font-size: 0.75rem;
    }

    .table th, .table td {
        padding: 0.2rem;
    }

    .fixture-card {
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .fixture-round-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    .fixture-matchup {
        gap: 0.5rem;
    }

    .fixture-player .player-name {
        font-size: 0.9rem;
    }

    .fixture-player .player-platform {
        font-size: 0.75rem;
    }

    .vs-text {
        font-size: 0.8rem;
    }

    .dropdown-content a {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .select {
        font-size: 0.9rem;
        padding: 0.4rem;
    }
}
