:root {
    --menuFont: Orbitron, sans-serif;
    --menuFontColor: black;
    --hamburgerMenu: rgb(249, 244, 244);
    --bodyFont: Teko, sans-serif;
    --secondaryColor: #d4b611;
    --primaryColor: #000000;
    --searchColor: #180891;
    /* --secondaryColor: #6e5370;
    --primaryColor: #400046; */
    --menuColor: #ba8e8e;
    --linkColor: #2893d6;
    --inputFieldColor: #4d4b4b;
    --inputFieldFontColor: #ffffff;
    --footerFontColor: #ffffff;
    --placeholderColor: #c1edf1;
    --contrastBackgroundColor: rgba(255, 255, 255, 0.03);
}

html {
    scroll-behavior: smooth; /* Enables smooth scrolling */
}

body,
a,
button,
input,
textarea,
select,
[role="button"],
.card,
.card-with-image,
.links a,
.form a,
.before-hero-button,
.container-header-btn,
.card-button,
.hamburgerMenu,
.search-btn,
.social-icon {
    cursor: none !important; /* Hide the default cursor on ALL interactive elements */
}

* {
    text-align: center;
    font-family: var(--bodyFont);
    color: var(--secondaryColor);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background: black; /* or your site's background color */
}

.container-fluid {
    width: 100%;
    background: var(--primaryColor);
    margin: auto;
    padding-top: 1px;
}
.cursor {
    position: fixed;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--secondaryColor);
    background-color: transparent;
    pointer-events: none; /* So it doesn't interfere with clicking */
    transform: translate(-50%, -50%);
    z-index: 999999999999999;
    transition: width 0.2s, height 0.2s;
}

.cursor-in {
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-out {
    -webkit-transition: all 0.08s ease-out;
    transition: all 0.08s ease-out;
}

.cursor-in {
    margin-left: 3px;
    margin-top: 3px;
    width: 6px;
    height: 6px;
    z-index: 10000001;
    background-color: var(--secondaryColor);
}

.cursor-out {
    margin-left: -15px;
    margin-top: -15px;
    width: 40px;
    height: 40px;
    border: 1.8px solid var(--secondaryColor);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 10000000;
    opacity: 0.5;
}

@media (prefers-reduced-motion) {
    .cursor-in {
        transition: all 0s !important;
    }

    .cursor-out {
        -webkit-transition: all 0s !important;
        transition: all 0s !important;
    }
}

.cursor::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background-color: var(--secondaryColor);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Larger circle when hovering over clickable elements */
.cursor.cursor-grow {
    width: 75px;
    height: 75px;
    background-color: rgba(
        212,
        182,
        17,
        0.5
    ); /* Semi-transparent version of your --secondaryColor */
}
.container {
    width:100%;
    /* max-width: 1200px; */
    margin: 0px;
    padding-bottom: 1rem;
}

.hero-container {
    width: 100%;
    /* max-width: 1200px; */
    margin: auto 0;
    box-shadow: rgba(255, 255, 255, 0) 0px 30px 60px -12px,
        rgba(250, 250, 250, 0) 0px 18px 36px -18px;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}
.main-container-news {
    display: grid;
    grid-template-columns: repeat(auto-fit, 220px) !important;
    grid-row-gap: 15px;
    grid-column-gap: 25px;
    justify-content: center;
}

.main-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px; /* row-gap column-gap */
    justify-content: center; /* centers all rows */
    max-width: fit-content; /* shrink-wrap to content */
    margin-inline: auto; /* center the whole container */
    padding-inline: 10%; /* adds left and right padding */
}

.main-container > * {
    flex: 0 0 220px; /* fixed width per item */
}

.main-container-clubs {
    display: grid;
    grid-template-columns: repeat(auto-fit, 275px);
    grid-row-gap: 15px;
    grid-column-gap: 25px;
    justify-content: center;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url("../../images/home/header.jpg?v=2");
    background-position: center;
    background-size: 70% 300%;
    padding: 2px 14px;
    font-size: larger;
    border-radius: 5px;
    margin-top: 1rem;
    color: var(--menuFontColor);
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.header-container {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header a {
    text-decoration: none;
    color: #f4f4f4;
    position: relative;
    transition: all 0.3s ease-in-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    box-shadow: rgba(164, 152, 152, 0.4);
    backdrop-filter: blur(4px);
    font-family: "Protest Guerrilla", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
}

.header a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background-color: var(--linkColor);
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

.header a:hover::after {
    transform: scaleX(1); /* Expand underline */
}

.header .links {
    display: flex;
    gap: 3rem;
}
.header .form {
    display: flex;
    gap: 10px;
}

.logo img {
    background-image: url("../../images/home/logo.png");
    max-width: 7.7rem;
    height: 3.2rem;
    margin: 10px 0px 0px 0px;
}

/* Hover color change */
.links a:hover,
.form a:hover {
    background-color: var(--linkColor);
    color: white;
    padding: 5px;
    border-radius: 10px;
}

/* Hover scale effect */
.links a:hover,
.form a:hover {
    transform: scale(1); /* Slight zoom effect */
}

.hamburgerMenu {
    display: none;
    font-size: 30px;
    /*cursor: pointer;*/
    color: var(--hamburgerMenu);
}

.search-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 1rem;
}
.search-field {
    width: 50%;
}

.search-field input {
    width: 100%;
    border-radius: 5px;
    font-size: 1.4rem;
    /* letter-spacing: 2px; */
    border: 2px solid var(--secondaryColor);
    padding: 4px;
    overflow: hidden;
    background-color: #f3eeee;
    color: var(--searchColor);
}

.search-btn {
    background-color: var(--secondaryColor);
    border-radius: 10px;
    border: none;
    padding: 5px;
    /*cursor: pointer;*/
}

.search-btn i {
    font-size: 19px;
    color: black;
}

.form .login-logo {
    display: none;
    color: black;
}

.before-hero-text {
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.before-hero-text h2 {
    margin: 0;
}
.before-hero-text h1 {
    font-size: 40px;
    margin: 0;
}

.before-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.before-hero-buttons .before-hero-button {
    padding: 10px;
    font-size: 15px;
    width: 200px;
    border: 2px solid var(--secondaryColor);
    font-weight: bold;
    background-color: #f4f4f4;
    color: var(--secondaryColor, goldenrod);
    font-family: "Arial Black", sans-serif;
    transition: transform 0.3s;
    animation: eyeMotion 4s infinite;
}

/* Specific shapes for the "eye" effect */
#registerPlayer {
    border-radius: 10% 70%;
    background-color: white;
    /* box-shadow: 0 4px 12px rgba(225, 218, 4, 0.928);  */
    font-size: 0.8rem;
}
/* .rotated-text-left {
    display: inline-block; 
    transform: rotate(5deg); 
    transform-origin: center; 
}

.rotated-text-right {
    display: inline-block;
    transform: rotate(-5deg);
    transform-origin: center; 
} */

#registerClub {
    border-radius: 70% 10%;
    background-color: white;
    /* box-shadow: 0 4px 12px rgba(225, 218, 4, 0.928); */
    font-size: 0.8rem;
}

#registerClub:hover {
    background-color: var(--hamburgerMenu);
    font-size: 1rem;
    transform: scale(1.1) translateY(-5px);
}

#registerPlayer:hover {
    background-color: var(--hamburgerMenu);
    font-size: 1rem;
    transform: scale(1.1) translateY(-5px);
}

.before-hero-buttons .before-hero-button:hover {
    background-color: var(--secondaryColor);
    color: white;
}

/* 👁 Combined animation for blinking + looking */
@keyframes eyeMotion {
    0%,
    100% {
        transform: scaleY(1) translateX(0);
    }
    10% {
        transform: scaleY(0.1) translateX(0); /* Blink */
    }
    20% {
        transform: scaleY(1) translateX(0); /* Open */
    }
    40% {
        transform: scaleY(1) translateX(4px); /* Look right */
    }
    60% {
        transform: scaleY(1) translateX(-4px); /* Look left */
    }
    80% {
        transform: scaleY(1) translateX(2px); /* Look center-right */
    }
}

.clubs {
    overflow: hidden;
    position: relative;
    margin: auto;
}
.clubs .clubs-text {
    margin: auto;
    border-radius: 10px;
    font-size: 30px;
    padding: 10px;
}

.clubs ul {
    display: flex;
    gap: 2rem;
    justify-content: center;
    animation: scrollImage 100s linear infinite;
    margin: 0;
    /*cursor: pointer;*/
    width: max-content;
}
.clubs ul:hover {
    animation-play-state: paused;
}

.clubs ul li {
    list-style: none;
    transition: transform 0.3s ease;
}

.clubs ul li:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(255, 196, 0, 0.4);
}

.clubs ul:hover li:not(:hover) {
    opacity: 0.4;
    transform: scale(0.95);
    filter: blur(1px); /* Optional: adds subtle blur */
}

.clubs ul li img {
    height: 75px;
    width: 75px;
}

@keyframes scrollImage {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partners {
    overflow: hidden;
    position: relative;
    margin: auto;
}
.partners .partners-text {
    margin: auto;
    border-radius: 10px;
    font-size: 30px;
    padding: 10px;
}

.partners ul {
    display: flex;
    gap: 2rem;
    justify-content: center;
    animation: scrollImagePartner 25s linear infinite;
    margin: 0;
    /*cursor: pointer;*/
    width: max-content;
}
.partners ul:hover {
    animation-play-state: paused;
}

.partners ul li {
    list-style: none;
    transition: transform 0.3s ease;
}

.partners ul li:hover {
    transform: scale(1.2);
    translate: translateY(-3px);
    border: 2px solid var(--secondaryColor);
    box-shadow: 0 4px 12px rgba(255, 196, 0, 0.4);
}

.partners ul:hover li:not(:hover) {
    opacity: 0.4;
    transform: scale(0.95);
    filter: blur(1px); /* Optional: adds subtle blur */
}

.partners ul li img {
    height: 130px;
    width: 270px;
    /* border: 2px dashed var(--secondaryColor); */
}

@keyframes scrollImagePartner {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.notice {
    position: relative;
    overflow: hidden;
    margin: 1rem;
    /*cursor: pointer;*/
}

.notice-text {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    padding: 1rem;
    background-color: var(--secondaryColor);
    color: var(--menuFontColor);
    border-left: 2px solid var(--primaryColor);
    border-right: none;
    font-size: 22px;
}
.notice .notices {
    border-block: 2px solid;
}
.notices {
    background-color: var(--primaryColor);
    border-right: 2px solid var(--secondaryColor);
}
.notices ul {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 1rem;
    animation: scrollNotice 40s linear infinite;
    margin-left: 100px;
    width: max-content;
}

.notices a,
li {
    color: var(--secondaryColor);
    font-size: 1.2rem;
}

@keyframes scrollNotice {
    0% {
        transform: translateX(50%); /* Start from the right */
    }
    100% {
        transform: translateX(-100%); /* End at the left */
    }
}

.notices li {
    white-space: nowrap;
}

.notice:hover ul {
    animation-play-state: paused;
}
.cards-img {
    height: 200px;
    overflow: hidden;
}

.cards-img img {
    height: 200px;
    width: fit-content;
    border-radius: 10px;
}

.cards {
    height: 200px;
    overflow: hidden;
    border: 2px dashed;
    /*box-shadow: rgb(255 237 15 / 98%) 0px 5px 15px 0px;*/
}

.card-body {
}
.card-title {
    margin-top: 0.3rem;
    margin-bottom: 0rem;
    font-size: 15px;
}
.card-text {
    margin-block-start: 0.5rem;
    color: var(--footerFontColor);
}

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

.card-with-image {
    height: 230px;
    overflow: hidden;
    border-radius: 10px;
    border: 2px dashed;
    /*box-shadow: rgb(255 237 15 / 98%) 0px 5px 15px 0px;*/
    /*cursor: pointer;*/
}

.announcement-card {
    height: 220px;
    overflow: hidden;
    border-radius: 10px;
    border: 2px dashed;
}
.announcement-card .card-image {
    border-radius: 10px;
}
.announcement-card .card-header {
    display: flex;
    justify-content: space-around;
}

.announcement-card .card-header h3 {
    font-size: 12px;
    width: 90%;
}

.announcement-card hr {
    width: 85%;
    margin: 6px auto -4px auto;
}

.announcement-card .card-header .copy-btn {
    background-color: transparent;
    border: none;
}
.announcement-card .card-footer {
    display: flex;
    justify-content: space-around;
    padding: 1rem;
    font-size: 12px;
}

.announcement-card .card-footer span {
    color: var(--footerFontColor);
}

.card-with-image .card-image {
    height: 160px;
    width: 100%;
}

.announcement-card .card-image {
    height: 144px;
    width: 100%;
}

.container .main-container a {
    text-decoration: none;
    color: var(--inputFieldFontColor);
}

.container .container-header {
    display: flex;
    justify-content: space-between;
    margin: 3rem 0 3rem 0;
    position: relative;
    top: 20px;
    margin-left: 1rem;
    margin-right: 1rem;
}

.container .container-header h2 {
    margin: 0;
}

.container-header h2 {
    background-color: var(--secondaryColor, gold); /* Use your theme color */
    color: black;
    padding: 12px 20px;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-left: 5px solid black;
    margin: 30px 0 15px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
    /* clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%, 10% 50%); */
    clip-path: polygon(
        0 0,
        100% 0,
        100% 25%,
        90% 50%,
        100% 75%,
        100% 100%,
        0 100%,
        0 75%,
        10% 50%,
        0 25%
    );
    /* clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%); */
    /* clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); */
    background: linear-gradient(to right, gold, orange);
    animation: gradientMove 2s ease infinite;
}

.container .container-header .container-header-btn {
    border-radius: 10px;
    font-size: 15px;
    border: 2px solid var(--secondaryColor);
    background-color: transparent;
    /*cursor: pointer;*/
    padding: 10px;
    font-weight: bold;
}
.container .container-header .container-header-btn:hover {
    background-color: var(--secondaryColor);
    color: var(--primaryColor);
}

.custom-shape-divider-top-1743493294 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1743493294 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 134px;
}

.custom-shape-divider-top-1743493294 .shape-fill {
    fill: var(--secondaryColor);
}

.footer-container {
    background-image: url("../../images/home/header.jpg?v=2"); /* relative or full URL */
    background-size: cover; /* fills the container */
    background-position: center;
    margin-top: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.credit {
    margin-top: 15px;
    margin-bottom: 17px;
    font-family: "Protest Guerrilla", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: var(--footerFontColor);
    backdrop-filter: blur(4px);
}

.credit a {
    font-family: "Protest Guerrilla", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
}

.social-links {
    margin-top: 15px;
    margin-bottom: 15px;
    display: flex;
    gap: 25px;
    font-size: 14px;
}

.social-icon {
    color: var(--footerFontColor);
    font-size: 18px;
    transition: scale 300ms, filter 300ms;
    backdrop-filter: blur(4px);
}

.social-icon:hover {
    color: var(--linkColor);
    scale: 1.2;
}

.search-highlight {
    font-weight: bolder;
    background-color: red;
}

.cards,
.announcement-card,
.card-with-image {
    transition: border-color 0.3s ease, box-shadow 0.3s ease,
        transform 0.3s ease, /* Add this line */ background-color 0.3s ease;
}

.cards:hover,
.announcement-card:hover,
.card-with-image:hover {
    box-shadow: 0 4px 12px rgba(225, 218, 4, 0.928); /* soft blue glow */
    transform: scale(1.05);
    /* background-color: #198ec5; */
    border: 1px solid var(--secondaryColor);
}

.banner-wrapper {
    position: relative;
    width: 90%;
    height: 60px;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
}

.banner {
    background-color: var(--secondaryColor);
    width: 100%;
    height: 10px;
    position: relative;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--secondaryColor);
    color: black;
    font-family: "Protest Guerrilla", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 30px;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
}

@keyframes slideIn {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.viewmore {
    margin-top: 30px;
    width: 10%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid var(--hamburgerMenu);
    border-radius: 14px;
    background-color: var(--secondaryColor);
    color: #f4f4f4;
}

.viewmore:hover {
    transform: scale(1.1) translateY(-5px);
}
#newsDiv {
        margin-bottom:-13px;
    }

@media (max-width: 768px) {
    #newsDiv {
        margin-bottom:-20px;
    }
    .search-area {
        gap: 20px;
        margin: 1rem;
    }
    .announcement-card {
        height: 142px;
    }
    .announcement-card .card-image {
        height: 70px;
    }
    .announcement-card .card-header h3 {
        margin-top: -3px;
        font-size: 8px;
        width: 90%;
    }

    .announcement-card hr {
        width: 85%;
        margin: 6px auto -4px auto;
    }
    .announcement-card .card-footer {
        flex-direction: column;
        align-items: center;
        padding: 0.5rem 1rem;
    }

    .announcement-card .card-footer span {
        display: block;
        font-size: 0.5rem;
    }
    .viewmore {
        width: 25%;
        padding: 5px;
        font-size: 0.7rem;
    }
    .banner-wrapper {
        width: 90%;
        margin: 5px auto;
    }
    .banner {
        height: 7px;
    }
    .banner-text {
        font-size: 0.5rem;
        padding: 6px 20px;
        clip-path: polygon(0 0, 100% 0, 88% 100%, 12% 100%);
    }
    .main-container {
        gap: 15px 5px; /* match your smaller gap */
        padding-inline: 10px; /* same as your grid version */
    }
    .main-container > * {
        flex: 0 0 110px; /* match your grid's 110px column size */
    }
    .main-container-news {
        display: grid;
        grid-template-columns: repeat(auto-fit, 110px) !important;
        grid-row-gap: 15px;
        grid-column-gap: 5px;
        justify-content: center;
        padding-inline: 50px; /* adds left and right padding */
    }
    .cards-img {
        height: 200px;
        overflow: hidden;
    }

    .cards-img img {
        height: 200px;
        width: 300px;
        border-radius: 10px;
    }

    .cards {
        height: 200px;
        overflow: hidden;
        width: 300px;
        border-radius: 10px;
        box-shadow: rgb(255 237 15 / 98%) 0px 5px 15px 0px;
        margin: auto;
    }

    .cards h3 {
        padding: 5px;
        overflow: hidden;
        font-size: medium;
    }

    .cards p {
        padding: 2px;
        overflow: hidden;
        font-size: small;
    }

    .card-with-image {
        margin: auto;
        height: 100px;
        width: 100px;
    }

    .card-with-image .card-image {
        height: 64px;
    }
    .card-title {
        margin-top: -0.3rem;
        margin-bottom: 0rem;
        font-size: 8px;
    }
    .card-text {
        margin-block-start: 0.3rem;
        font-size: 6px;
    }

    .logo img {
        max-width: 5rem;
        height: 2.3rem;
    }
    .header .links {
        opacity: 0;
        max-height: 0;
        gap: 1rem;
        overflow: hidden;
        flex-direction: column;
        align-items: flex-start;
        width: -webkit-fill-available;
        position: absolute;
        border-top: 1px solid var(--hamburgerMenu);
        border-bottom: 1px solid var(--hamburgerMenu);
        background-color: #181f2f;
        top: 52px; /* Adjust based on your header height */
        left: 0;
        padding: 1rem;
        transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out,
            padding 0.4s ease-in-out;
    }

    .cursor {
        display: none !important;
    }

    .hamburgerMenu {
        display: block;
        /*cursor: pointer;*/
        position: absolute;
        right: 10px;
        color: var(--hamburgerMenu);
        backdrop-filter: blur(4px);
    }

    .nav-active {
        padding: 1rem !important; /* Show the links when the nav is active */
        max-height: 400px !important;
        opacity: 1 !important;
    }

    .form .login {
        display: none;
    }

    .form .login-logo {
        display: none; /* Hide it in header */
    }

    /* Create a clone of login-logo in the links container */
    .links .login-link {
        display: flex;
        align-items: center;
        gap: 5px;
        color: rgb(255, 255, 255);
    }

    .nav-active .login-link {
        display: flex;
    }

    .before-hero-text h2 {
        margin: 0;
        font-size: 15px;
    }
    .before-hero-text h1 {
        font-size: 25px;
    }

    .credit {
        margin-bottom: -17px;
        font-size: 10px;
    }

    .credit a {
        font-size: 10px;
    }

    .container .container-header h2 {
        font-size: 1.5rem;
    }
    .container .container-header .container-header-btn {
        font-size: 10px;
        padding: 5px;
    }

    .search-field {
        width: 70%;
        margin-right: -5px;
    }

    .search-field input {
        width: 100%;
        border-radius: 5px;
        font-size: 0.7rem;
        letter-spacing: 2px;
        border: 2px solid var(--secondaryColor);
        padding: 6px;
        overflow: hidden;
    }

    .search-btn {
        border-radius: 10px;
        border: none;
        padding: 3px;
        /*cursor: pointer;*/
    }

    .search-btn i {
        font-size: 13px;
        color: black;
    }

    .clubs {
        margin-bottom: 1rem;
    }
    .clubs .clubs-text {
        margin-top: 0;
        font-size: 15px;
        padding: 8px;
    }
    .clubs ul {
        gap: 1rem;
    }
    .clubs ul li img {
        height: 37.5px;
        width: 37.5px;
    }

    .partners {
        margin-bottom: 0.1rem;
    }
    .partners .partners-text {
        margin-top: 0;
        font-size: 15px;
        padding: 8px;
    }
    .partners ul {
        gap: 1rem;
    }
    .partners ul li img {
        height: 60px;
        width: 90px;
    }

    .notice {
        padding: 0;
        margin: 0;
    }
    .notice-text {
        font-size: 14px;
        padding: 5px;
    }
    .notice .notices {
        margin: 0;
        padding: 5px;
    }

    .notices ul {
        padding: 0;
        gap: 1rem;
    }

    .notices ul a,
    li {
        padding: 0;
        font-size: 12px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .social-links {
        justify-content: center;
        margin-bottom: 15px;
    }

    .before-hero-buttons .before-hero-button {
        padding: 10px;
        font-size: 8px;
        width: 150px;
    }
}
