:root {
    color-scheme: light;
    --home-hero-bg: linear-gradient(180deg, #eef7eb 0%, #d7ebd3 100%);
    --slider-bg: #0f172a;
    --slider-panel: #111c34;
    --slider-panel-highlight: rgba(76, 175, 128, 0.2);
    --slider-text-soft: #9db0d4;
    --slider-bullet: rgba(255, 255, 255, 0.35);
    --slider-bullet-active: #7dd3a7;
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--home-hero-bg);
    color: #114724;
}
.home-page {
    overflow: hidden;
    background: #eefcf3;
}
.hero-section {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
    text-align: center;
}
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0.9rem;
    border: 1px solid rgba(46, 189, 115, 0.25);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #21693e;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.hero-section .display-5 {
    color: #122a17;
}
.hero-section p {
    color: #2a5b34;
    font-size: 1rem;
}
.search-form .search-input {
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(19, 58, 28, 0.12);
    background: #ffffff;
}
.search-form .search-input .form-control {
    border: 0;
    min-height: 56px;
    font-size: 1rem;
    background: transparent;
}
.search-form .search-input .form-control:focus {
    box-shadow: none;
}
.search-form .search-input .input-group-text {
    border: 0;
    background: #ffffff;
    color: #2b6b35;
}
.btn-search {
    min-height: 56px;
    border-radius: 999px;
    font-weight: 600;
}
.btn-sport {
    background-color: #ffffff !important;
    color: #122a17 !important;
    border: 1px solid rgba(17, 71, 36, 0.12) !important;
}
.btn-sport:hover,
.btn-sport:focus {
    background-color: #f5f8f5 !important;
    color: #122a17 !important;
}
.registration-options-section {
    padding: 5rem 0 5.5rem;
    background: transparent;
}
.registration-heading {
    margin-bottom: 2.5rem;
}
.registration-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 520px;
    padding: 2rem;
    border: 1px solid rgba(46, 189, 115, 0.34);
    border-radius: 8px;
    background: #f9fff8;
    color: #5b6680;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 18px 45px rgba(18, 42, 23, 0.08);
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease,
        background 0.28s ease,
        color 0.28s ease;
}
.registration-card:hover,
.registration-card:focus {
    border-color: transparent;
    background: linear-gradient(145deg, #2ebd73 0%, #1c9d5b 100%);
    color: #ffffff;
    transform: translateY(-10px);
    box-shadow: 0 28px 70px rgba(28, 157, 91, 0.24);
}
.registration-card:focus-visible {
    outline: 3px solid rgba(46, 189, 115, 0.36);
    outline-offset: 4px;
}
.registration-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: #35d375;
    color: #ffffff;
    font-size: 2rem;
    transition:
        transform 0.28s ease,
        background-color 0.28s ease,
        color 0.28s ease;
}
.registration-card:hover .registration-icon,
.registration-card:focus .registration-icon {
    background: #ffffff;
    color: #1f9f5d;
    transform: scale(1.06) rotate(-3deg);
}
.registration-card-title {
    margin: 0 0 0.75rem;
    color: #122a17;
    font-size: 1.25rem;
    font-weight: 800;
    transition: color 0.28s ease;
}
.registration-card-description {
    min-height: 4.5rem;
    margin: 0 auto 1.75rem;
    color: #62708b;
    line-height: 1.55;
    transition: color 0.28s ease;
}
.registration-feature-list {
    display: grid;
    gap: 1rem;
    margin: 0 0 1.75rem;
    padding: 0;
    color: #5b6680;
    list-style: none;
    text-align: left;
    transition: color 0.28s ease;
}
.registration-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    line-height: 1.45;
}
.registration-feature-list li::before {
    content: "\f00c";
    flex: 0 0 auto;
    margin-top: 0.18rem;
    color: #2ebd73;
    font-family: "Font Awesome 6 Free";
    font-size: 0.78rem;
    font-weight: 900;
    transition: color 0.28s ease;
}
.registration-card:hover .registration-card-title,
.registration-card:focus .registration-card-title,
.registration-card:hover .registration-card-description,
.registration-card:focus .registration-card-description,
.registration-card:hover .registration-feature-list,
.registration-card:focus .registration-feature-list,
.registration-card:hover .registration-feature-list li::before,
.registration-card:focus .registration-feature-list li::before {
    color: #ffffff;
}
.registration-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    margin-top: auto;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: #45d982;
    color: #ffffff;
    font-weight: 800;
    transition:
        background-color 0.28s ease,
        color 0.28s ease,
        transform 0.28s ease;
}
.registration-card:hover .registration-card-cta,
.registration-card:focus .registration-card-cta {
    background: #ffffff;
    color: #1f9f5d;
    transform: translateY(-2px);
}
.sponsors-section {
    padding: 0 0 2.5rem;
    background: #eefcf3;
}
.sponsors-strip {
    width: 100%;
    padding: 1rem 0;
    background: #eefcf3;
    box-shadow:
        0 14px 30px rgba(0, 86, 8, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.sponsors-strip > .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.sponsors-group-main {
    width: 100%;
}
.sponsors-swiper {
    width: 100%;
    overflow: hidden;
}
.sponsors-swiper .swiper-wrapper {
    align-items: center;
    will-change: transform;
}
.sponsors-swiper .swiper-slide {
    width: auto;
    height: auto;
    flex-shrink: 0;
}
.sponsors-swiper.sponsors-swiper-ready {
    cursor: grab;
}
.sponsors-swiper.sponsors-swiper-ready:active {
    cursor: grabbing;
}
.sponsors-logos {
    display: flex;
    align-items: center;
}
.sponsor-logo-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    min-height: 58px;
    padding: 0.35rem 0.85rem;
    background: transparent;
    text-decoration: none;
    text-align: center;
}
.sponsor-logo-card span {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.1;
}
/* .sponsor-logo-image {
    display: block;
    max-width: 100%;
    width: auto;
    max-height: 42px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(11%) sepia(22%) saturate(1199%) hue-rotate(87deg) brightness(95%) contrast(92%);
} */
.btn-success {
    background-color: #2ebd73;
    border-color: #2ebd73;
}
.btn-success:hover,
.btn-success:focus {
    background-color: #249d5b;
    border-color: #249d5b;
}
.main-nav-list {
    justify-content: flex-end;
    gap: 1rem;
}
.main-nav-list .nav-link {
    position: relative;
    padding-right: 0;
    padding-left: 0;
    color: #1f4428 !important;
    font-weight: 600;
    text-decoration: none;
}
.main-nav-list .nav-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0.25rem;
    left: 0;
    height: 1px;
    background: #1f4428;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}
.main-nav-list .nav-link:hover,
.main-nav-list .nav-link:focus {
    color: #0f2a16 !important;
}
.main-nav-list .nav-link:hover::after,
.main-nav-list .nav-link:focus::after {
    transform: scaleX(1);
}
@media (max-width: 991.98px) {
    .main-nav-list {
        gap: 0.35rem;
    }
    .main-nav-list .nav-link {
        display: inline-block;
    }
}
.brand-logo {
    width: 42px;
    max-width: 42px;
    height: auto;
    max-height: 42px;
    object-fit: contain;
    display: block;
}
.featured-slider-section {
    position: relative;
    padding: 5rem 0 6rem;
    background: transparent;
    color: #eff6ff;
}
.featured-slider-section::before,
.featured-slider-section::after {
    display: none;
}
.featured-slider-section::before {
    top: 2rem;
    left: -4rem;
    background: rgba(46, 189, 115, 0.4);
}
.featured-slider-section::after {
    right: -5rem;
    bottom: 2rem;
    background: rgba(59, 130, 246, 0.3);
}
.section-heading {
    max-width: 42rem;
    margin: 0 auto 2.5rem;
}
.section-badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.45rem 0.85rem;
    border: 1px solid rgba(125, 211, 167, 0.35);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.45);
    color: #b7f0cf;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.section-heading h2 {
    margin-bottom: 1rem;
    color: #122a17;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
}
.section-heading p {
    margin: 0;
    color: #2a5b34;
    font-size: 1rem;
    line-height: 1.7;
}
.featured-coverflow {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
    padding: 1rem 0 4.5rem;
}
.home-coverflow-slider {
    overflow: visible;
    padding: 1.5rem 0 3rem;
}
.home-coverflow-slider .swiper-slide {
    width: min(74vw, 340px);
    transition: transform 0.45s ease, opacity 0.45s ease;
}
.featured-card {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    transform: translateZ(0);
}
.featured-card-image {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    display: block;
}
.featured-card-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.5rem;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.2) 20%, rgba(15, 23, 42, 0.92) 100%);
}
.featured-card-overlay h3 {
    margin: 0 0 0.6rem;
    color: #f8fafc;
    font-size: 1.4rem;
    font-weight: 700;
}
.featured-card-overlay p {
    margin: 0;
    color: #dbeafe;
    font-size: 0.95rem;
    line-height: 1.6;
}
.home-coverflow-slider .swiper-slide-active .featured-card {
    box-shadow:
        0 30px 80px rgba(15, 23, 42, 0.55),
        0 0 0 1px rgba(125, 211, 167, 0.14) inset,
        0 0 32px rgba(46, 189, 115, 0.16);
}
.home-coverflow-slider .swiper-button-prev,
.home-coverflow-slider .swiper-button-next {
    top: 50%;
    width: 52px;
    height: 52px;
    margin-top: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(8px);
    color: #f8fafc;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.28);
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
    transform: translateY(-50%);
    z-index: 20;
    pointer-events: auto;
}
.home-coverflow-slider .swiper-button-prev:hover,
.home-coverflow-slider .swiper-button-next:hover,
.home-coverflow-slider .swiper-button-prev:focus,
.home-coverflow-slider .swiper-button-next:focus {
    background: rgba(30, 41, 59, 0.92);
    border-color: rgba(125, 211, 167, 0.45);
    transform: translateY(calc(-50% - 2px));
}
.home-coverflow-slider .swiper-button-prev::after,
.home-coverflow-slider .swiper-button-next::after {
    font-size: 1rem;
    font-weight: 700;
}
.home-coverflow-slider .swiper-button-prev {
    left: 0.25rem;
}
.home-coverflow-slider .swiper-button-next {
    right: 0.25rem;
}
.home-coverflow-slider .swiper-pagination {
    bottom: 0;
}
.home-coverflow-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--slider-bullet);
    opacity: 1;
    transition: transform 0.25s ease, background-color 0.25s ease;
}
.home-coverflow-slider .swiper-pagination-bullet-active {
    background: var(--slider-bullet-active);
    transform: scale(1.15);
}
.role-benefits-section {
    padding: 0;
    background: #eefcf3;
}
.role-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.25rem, 3vw, 1.75rem);
    max-width: 1120px;
    margin: 0 auto;
    padding: 3.75rem 0 5rem;
}
.role-benefit-column {
    min-width: 0;
    min-height: 280px;
    padding: 2rem;
    border-radius: 8px;
    background: #ffffff;
    color: #5f6f89;
    box-shadow: 0 18px 45px rgba(18, 42, 23, 0.08);
}
.role-benefit-heading {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    margin-bottom: 1.35rem;
}
.role-benefit-icon {
    flex: 0 0 auto;
    margin-top: 0.18rem;
    color: #2ebd73;
    font-size: 1.15rem;
    line-height: 1;
}
.role-benefit-eyebrow {
    display: block;
    margin-bottom: 0.35rem;
    color: #21693e;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}
.role-benefit-heading h3 {
    margin: 0;
    color: #122a17;
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    font-weight: 800;
    line-height: 1.22;
}
.role-benefit-list {
    display: grid;
    gap: 1.35rem;
    margin: 0;
    padding: 0 0 0 1.1rem;
    color: #5f6f89;
    font-size: 1rem;
    line-height: 1.55;
}
.role-benefit-list li {
    padding-left: 0.15rem;
}
.role-benefit-list li::marker {
    color: #5f6f89;
    font-size: 0.75em;
}
.home-cta-section {
    padding: 5.5rem 0;
    /* background: #20382a; */
    background: #1c5e4a;
    /* background: #243b53; */
    color: #ffffff;
}
.home-cta-content {
    max-width: 1080px;
}
.home-cta-content h2 {
    max-width: 980px;
    margin: 0 0 1.25rem;
    color: #f8f8f8;
    font-size: clamp(2.4rem, 5.3vw, 4.2rem);
    font-weight: 400;
    line-height: 1.15;
}
.home-cta-content p {
    max-width: 720px;
    margin: 0 0 1.75rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
    line-height: 1.7;
}
.home-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: min(290px, 100%);
    min-height: 48px;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    background: #858673;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.25s ease;
}
.home-cta-button:hover,
.home-cta-button:focus {
    background: #2ebd73;
    color: #ffffff;
    transform: translateY(-2px);
}
@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .registration-options-section {
        padding: 4rem 0;
    }
    .registration-card {
        min-height: auto;
        padding: 1.5rem;
    }
    .registration-card-description {
        min-height: auto;
    }
    .sponsors-strip {
        padding: 0.85rem 0;
    }
    .search-form .btn,
    .search-form .form-control {
        min-height: 52px;
    }
    .featured-slider-section {
        padding: 4rem 0 5rem;
    }
    .section-heading {
        margin-bottom: 2rem;
    }
    .home-coverflow-slider {
        padding-top: 0.75rem;
    }
    .home-coverflow-slider .swiper-slide {
        width: min(78vw, 300px);
    }
    .featured-card,
    .featured-card-image {
        min-height: 400px;
    }
    .role-benefits-section {
        padding-bottom: 0;
    }
    .role-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 3rem 0 4rem;
    }
    .role-benefit-list {
        gap: 1rem;
    }
    .home-cta-section {
        padding: 4rem 0;
    }
    .home-cta-content h2 {
        font-size: clamp(2rem, 11vw, 3rem);
    }
    .home-cta-content p {
        font-size: 1rem;
    }
    .home-coverflow-slider .swiper-button-prev,
    .home-coverflow-slider .swiper-button-next {
        width: 44px;
        height: 44px;
    }
}
@media (max-width: 575.98px) {
    .hero-kicker {
        font-size: 0.74rem;
    }
    .sponsors-section {
        padding-bottom: 2.8rem;
    }
    .sponsors-swiper .swiper-slide {
        padding: 0 0.35rem;
    }
    .sponsor-logo-card {
        min-width: 120px;
        min-height: 50px;
        padding: 0.3rem 0.65rem;
    }
    .sponsor-logo-card span {
        font-size: 0.95rem;
    }
    .sponsor-logo-image {
        max-height: 34px;
    }
    .featured-coverflow {
        padding-bottom: 4rem;
    }
    .home-coverflow-slider .swiper-slide {
        width: min(82vw, 280px);
    }
    .featured-card,
    .featured-card-image {
        min-height: 360px;
        border-radius: 24px;
    }
    .featured-card-overlay {
        padding: 1.15rem;
    }
    .featured-card-overlay h3 {
        font-size: 1.15rem;
    }
    .featured-card-overlay p {
        font-size: 0.88rem;
    }
    .role-benefits-grid {
        padding: 2.5rem 0 3.5rem;
    }
    .role-benefit-heading {
        gap: 0.7rem;
    }
    .role-benefit-column {
        min-height: auto;
        padding: 1.5rem;
    }
    .role-benefit-heading h3 {
        font-size: 1.28rem;
    }
    .role-benefit-list {
        padding-left: 1rem;
        font-size: 0.95rem;
    }
    .home-coverflow-slider .swiper-button-prev {
        left: -0.1rem;
    }
    .home-coverflow-slider .swiper-button-next {
        right: -0.1rem;
    }
}
