/* General container styling */
.leaderboard-container {
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

/* Filter title styling */
.leaderboard-filter-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #ff00ed;
    margin: 0 0 1vh 0;
    font-size: 1.3em;
    text-align: right !important;
}

/* Filter controls styling */
.leaderboard-controls {
    text-align: right !important;
    margin-bottom: 1.5vh;
    font-size: 1.0em;
}

/* Car filter dropdown styling */
.car-filter {
    background-color: #333 !important;
    color: #fff !important;
    border: 1px solid #ff00ed !important;
    padding: 5px !important;
    border-radius: 4px;
}

.car-filter:hover {
    background-color: #444 !important;
    border-color: #71ffd0 !important;
}

.car-filter:focus {
    outline: none !important;
    border-color: #ff00ed !important;
    box-shadow: 0 0 5px rgba(182, 47, 171, 0.5) !important;
}

/* Override any blue hover colors from theme */
.car-filter option {
    background-color: #333 !important;
    color: #fff !important;
}

.car-filter option:hover {
    background-color: #ff00ed !important;
    color: #000 !important;
}

/* XP challenge leaderboard — category sort */
.leaderboard-xp-controls .leaderboard-filter-title {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 600 !important;
    font-size: 1.95em !important;
    letter-spacing: 0.01em !important;
}

.leaderboard-xp-sort {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
}

.leaderboard-xp-controls button.leaderboard-xp-sort-btn,
.leaderboard-xp-sort-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: fit-content !important;
    min-width: 0 !important;
    max-width: none !important;
    font-family: "Montserrat", sans-serif !important;
    font-weight: 600 !important;
    font-size: 1.425em !important;
    line-height: 1.2 !important;
    letter-spacing: 0.01em !important;
    background-color: #333 !important;
    color: #fff !important;
    border: 1px solid #ff00ed !important;
    padding: 0.3em 0.75em !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
    transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.leaderboard-xp-sort-btn:hover {
    border-color: #71ffd0 !important;
    color: #71ffd0 !important;
}

.leaderboard-xp-sort-btn--active,
.leaderboard-xp-sort-btn.leaderboard-xp-sort-btn--active {
    background-color: #ff00ed !important;
    color: #000 !important;
    border-color: #ff00ed !important;
}

.leaderboard-xp-controls .description {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 1.05em;
}

.leaderboard-cell--xp-active {
    color: #71ffd0;
    font-weight: 600;
}

.igp-profile-link {
    color: inherit;
    cursor: pointer;
    text-decoration: none;
    border-bottom: 1px solid #ffffff;
    transition: color 180ms ease, border-color 180ms ease;
}

.igp-profile-link:hover,
.igp-profile-link:focus {
    color: #ff00ed;
    border-bottom-color: #ff00ed;
    outline: none;
}

.leaderboard-header-xp-total {
    color: #ff00ed;
}



/* Loading and error message styles */
.leaderboard-loading {
    color: #555;
    font-style: italic;
}

.leaderboard-error {
    color: red;
    font-weight: bold;
}

/* Table styling with added padding inside the table itself */
.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.2em;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #433841;
    background-color: rgba(30, 25, 29, 0.7);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

/* Header styling with Montserrat font and bold weight */
.leaderboard-header,
.leaderboard-header-position,
.leaderboard-header-speed {
    background-color: #ff00ed;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    padding: 0.75em 1em;
    text-align: right;
    font-size: 1.2em;
    box-sizing: border-box;
}

.leaderboard-header-position {
    width: 4em;
    padding-left: 1.5em;
}

.leaderboard-header-speed {
    padding-right: 1.5em;
}

/* Row styling for even rows */
.leaderboard-row:nth-child(even) {
    background-color: rgba(34, 29, 33, 0.7);
}

/* Cell styling with Roboto font */
.leaderboard-cell,
.leaderboard-cell-speed {
    font-family: 'Roboto', sans-serif;
    padding: 0.5em 1em;
    text-align: right;
    font-size: 1.2em;
    color: #fff;
    box-sizing: border-box;
}

.leaderboard-cell-position {
    font-family: 'Roboto', sans-serif;
    width: 4em;
    padding-left: 1.5em !important;
    text-align: center;
}

/* Extra padding for speed column cells */
.leaderboard-cell-speed {
    padding-right: 1.5em !important;
}

.leaderboard-header-spacer,
.leaderboard-cell-spacer {
    width: 0.5em;
    padding: 0;
    border: none;
}

/* Personal leaderboard container styling */
.user-leaderboard-container {
    margin: 20px 0;
    font-family: Arial, sans-serif;
    border: 1px solid #71ffd0;
    background-color: rgba(23, 36, 32, 0.7);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.user-leaderboard-loading {
    color: #555;
    font-style: italic;
}

.user-leaderboard-error {
    color: red;
    font-weight: bold;
}

.user-leaderboard-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.2em;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #303a38;
    background-color: rgba(23, 36, 32, 0.7);
}

.user-leaderboard-header,
.user-leaderboard-header-position,
.user-leaderboard-header-speed {
    background-color: #00ffaa;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    padding: 0.75em 1em;
    text-align: right;
    font-size: 1.2em;
    box-sizing: border-box;
}

.user-leaderboard-header-position {
    width: 4em;
    padding-left: 1.5em;
}

.user-leaderboard-header-speed {
    padding-right: 1.5em;
}

.user-leaderboard-row:nth-child(even) {
    background-color: rgba(25, 39, 34, 0.7);
}

.user-leaderboard-cell,
.user-leaderboard-cell-speed {
    font-family: 'Roboto', sans-serif;
    padding: 0.5em 1em;
    text-align: right;
    font-size: 1.2em;
    color: #fff;
    box-sizing: border-box;
}

.user-leaderboard-cell-position {
    font-family: 'Roboto', sans-serif;
    width: 4em;
    padding-left: 1.5em !important;
    text-align: center;
}

.user-leaderboard-cell-speed {
    padding-right: 1.5em !important;
}

.user-leaderboard-header-spacer,
.user-leaderboard-cell-spacer {
    width: 0.5em;
    padding: 0;
    border: none;
}

/* Personal records container styling */
.personal-records-container {
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

.personal-records-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.2em;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #303a38;
    background-color: rgba(23, 36, 32, 0.7);
}

.personal-records-header {
    background-color: #00ffaa;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    padding: 0.75em 1em;
    text-align: center;
    font-size: 1.2em;
    box-sizing: border-box;
}

.personal-records-row:nth-child(even) {
    background-color: rgba(25, 39, 34, 0.7);
}

.personal-records-cell {
    font-family: 'Roboto', sans-serif;
    padding: 0.5em 1em;
    text-align: center;
    font-size: 1.2em;
    color: #fff;
    box-sizing: border-box;
}

/* Trophy showcase styling */
.trophy-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trophy-item {
    position: relative;
    cursor: pointer;
}

.trophy-image {
    width: 12em;
    height: 12em;
    border-radius: 8px;
    transition: transform 0.2s;
}

.trophy-image:hover {
    transform: scale(1.1);
}

.trophy-tooltip {
    font-family: 'Roboto', sans-serif;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 16px;
    pointer-events: none;
    z-index: 10;
}

.modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 20;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    max-width: 80%;
    max-height: 80%;
    border-radius: 8px;
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

/* Responsive styling for mobile */
@media (max-width: 768px) {
    .leaderboard-container,
    .user-leaderboard-container,
    .personal-records-container {
        margin: 10px 5px;
    }

    .leaderboard-table,
    .user-leaderboard-table,
    .personal-records-table,
    .leaderboard-cell,
    .user-leaderboard-cell,
    .personal-records-cell,
    .leaderboard-header,
    .user-leaderboard-header,
    .personal-records-header {
        font-size: 1em;
        padding: 0.5em 0.75em;
    }

    .leaderboard-header,
    .user-leaderboard-header,
    .personal-records-header {
        padding: 0.5em;
    }

    .leaderboard-header-position,
    .leaderboard-header-speed,
    .user-leaderboard-header-position,
    .user-leaderboard-header-speed,
    .leaderboard-cell-position,
    .user-leaderboard-cell-position,
    .leaderboard-cell-speed,
    .user-leaderboard-cell-speed {
        padding: 0.5em;
    }

    .leaderboard-cell,
    .user-leaderboard-cell,
    .personal-records-cell {
        padding: 0.4em;
        font-size: 1em;
    }

    .trophy-showcase {
        gap: 5px;
    }

    .trophy-image {
        width: 8em;
        height: 8em;
    }

    .modal-content {
        max-width: 90%;
        max-height: 90%;
    }

    .close {
        top: 10px;
        right: 10px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .leaderboard-container,
    .user-leaderboard-container,
    .personal-records-container {
        margin: 5px;
    }

    .leaderboard-table,
    .user-leaderboard-table,
    .personal-records-table {
        font-size: 0.9em;
    }

    .trophy-image {
        width: 6em;
        height: 6em;
    }
}

/* Countdown timer styling - specific selector to avoid affecting other headings */
.challenge-countdown {
    font-weight: 400 !important;
}

.challenge-countdown span {
    font-weight: inherit;
}

/* Homepage hero + layered bands */
.igr-home-band {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    font-family: "Montserrat", sans-serif;
    color: #fff;
}

.igr-home-band__bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    transform: scale(1.02);
}

.igr-home-band--pulse .igr-home-band__bg {
    background-image: url("https://www.initialg.gg/wp-content/uploads/2026/06/maib-banner-scaled.webp");
}

.igr-home-band--progression .igr-home-band__bg {
    background-image: url("https://www.initialg.gg/wp-content/uploads/2026/06/banner-main-2-scaled.webp");
}

.igr-home-band__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 8, 12, 0.88) 0%, rgba(6, 8, 12, 0.72) 42%, rgba(6, 8, 12, 0.9) 100%),
        radial-gradient(circle at 18% 12%, rgba(0, 255, 170, 0.08), transparent 34%),
        radial-gradient(circle at 82% 88%, rgba(255, 0, 237, 0.1), transparent 36%);
}

.igr-home-band__inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(4rem, 8vw, 6.5rem) clamp(1.25rem, 3vw, 2rem);
}

.igr-home-world,
.igr-home-progression,
.igr-project-pulse {
    font-family: "Montserrat", sans-serif;
    color: #fff;
}

.igr-home-band--hero {
    margin-top: 0;
    margin-bottom: 0;
    border: none;
    background: #05070a;
}

.igr-home-band--hero .igr-home-band__overlay {
    display: none;
}

.igr-home-band__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: 0;
    pointer-events: none;
}

.igr-home-band--hero .igr-home-band__inner {
    padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.25rem, 3vw, 2rem) clamp(4rem, 8vw, 6rem);
}

.igr-home-world--hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.igr-home-world__headline {
    grid-column: 1 / -1;
    max-width: 860px;
    margin: 0 0 clamp(2.25rem, 5vw, 4.25rem);
}

.igr-home-world__headline h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(2.55rem, 5.8vw, 5rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.045em;
    text-transform: uppercase;
    text-shadow: 0 3px 24px rgba(0, 0, 0, 0.62);
}

.igr-home-band--hero .igr-home-world__cards article {
    background:
        radial-gradient(circle at 0 0, rgba(0, 255, 170, 0.06), transparent 34%),
        radial-gradient(circle at 100% 100%, rgba(255, 0, 237, 0.12), transparent 38%),
        rgba(7, 9, 12, 0.64);
}

.igr-home-band--hero .igr-home-world__copy h2 {
    font-size: clamp(2rem, 3.6vw, 3.35rem);
}

.igr-home-band--hero .igr-home-world__copy h2,
.igr-home-band--hero .igr-home-world__cards h3 {
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.igr-home-band--hero .igr-home-world__copy p,
.igr-home-band--hero .igr-home-kicker {
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.65);
}

.igr-home-kicker {
    margin: 0 0 1rem;
    color: #00ffaa;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.igr-home-world {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.igr-home-world__copy h2,
.igr-home-progression h2,
.igr-project-pulse__header h2 {
    margin: 0 0 1.25rem;
    color: #fff;
    font-size: clamp(2rem, 4.5vw, 3.75rem);
    line-height: 1.02;
    text-transform: uppercase;
}

.igr-home-progression h2,
.igr-project-pulse__header h2 {
    max-width: 820px;
    font-size: clamp(1.85rem, 3.8vw, 3.1rem);
}

.igr-home-world__copy p,
.igr-home-progression__intro p,
.igr-project-pulse__header p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 1.35vw, 1.12rem);
    line-height: 1.65;
}

.igr-home-world__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.igr-home-world__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.85rem 1.15rem;
    border: 1px solid #ff00ed;
    border-radius: 4px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.igr-home-world__actions a:first-child {
    background: #ff00ed;
}

.igr-home-world__actions a:hover,
.igr-home-world__actions a:focus {
    border-color: #00ffaa;
    background: #00ffaa;
    color: #071010;
}

.igr-home-world__cards {
    display: grid;
    gap: 1.25rem;
}

.igr-home-world__cards article,
.igr-home-progression__grid article,
.igr-project-pulse__item {
    background:
        radial-gradient(circle at 0 0, rgba(0, 255, 170, 0.08), transparent 34%),
        radial-gradient(circle at 100% 100%, rgba(255, 0, 237, 0.09), transparent 38%),
        rgba(12, 14, 18, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(8px);
}

.igr-home-world__cards article {
    padding: 1.5rem 1.35rem;
}

.igr-home-world__cards span {
    color: #ff00ed;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.igr-home-world__cards h3,
.igr-home-progression__grid h3 {
    margin: 0.55rem 0 0.75rem;
    color: #fff;
    font-size: 1.15rem;
    line-height: 1.15;
    text-transform: uppercase;
}

.igr-home-world__cards p,
.igr-home-progression__grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.58;
}

.igr-home-band--pulse {
    margin-top: 0;
    margin-bottom: 0;
}

/* Collapse VC default gap between hero video and Project Pulse */
.wpb_text_column.wpb_content_element:has(.igr-home-band--hero) {
    margin-bottom: 0 !important;
}

.wpb_text_column.wpb_content_element:has(.igr-home-band--pulse) {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.wpb_text_column.wpb_content_element:has(.igr-home-band--progression) {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.igr-home-band--progression {
    margin-bottom: 0;
}

body.home {
    background: linear-gradient(180deg, #171717 0%, #1a1a1a 50%, #171717 100%) !important;
}

body.home .wpb-content-wrapper > .vc_row.vc_custom_1725634349512,
body.home .wpb-content-wrapper > .vc_row.vc_custom_1727053483220 {
    margin-top: 0 !important;
    background: linear-gradient(180deg, #171717 0%, #1a1a1a 50%, #171717 100%) !important;
}

body.home .wpb-content-wrapper > .vc_row.vc_custom_1725634349512 {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: clamp(2.25rem, 4.5vw, 3.75rem) 0 clamp(2rem, 4vw, 3.25rem) !important;
}

body.home .vc_custom_1725634349512 > .wpb_column > .vc_column-inner > .wpb_wrapper {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(1rem, 3vw, 2rem);
    padding-right: clamp(1rem, 3vw, 2rem);
}

body.home .wpb-content-wrapper > .vc_row.vc_custom_1727053483220 {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2.5rem, 4vw, 3.5rem) !important;
}

body.home .ig-sub-page--embed {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

body.home .ig-sub-footnotes {
    margin-bottom: clamp(1.25rem, 2.5vw, 2rem) !important;
    padding-bottom: 0 !important;
}

.vc_row.igr-final-cta-row,
.igr-final-cta-row .vc_column-inner,
.igr-final-cta-wrap,
.wpb_text_column.wpb_content_element:has(.igr-final-cta) {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    background: none !important;
    border: 0 !important;
}

body.home .container.content-page:has(.igr-final-cta),
body.home .content-page:has(.igr-final-cta),
body.home .page-content:has(.igr-final-cta) {
    padding-bottom: 0 !important;
}

body.home .wpb-content-wrapper:has(.igr-final-cta),
body.home .content.col-md-12:has(.igr-final-cta),
body.home .sidebar-position-without:has(.igr-final-cta) .row {
    display: flow-root;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

body.home .page-wrapper:has(.igr-final-cta) {
    margin-bottom: -32px !important;
}

body.home .et-footers-wrapper {
    margin-top: -3px !important;
}

body.home footer.footer,
body.home .footer {
    margin-top: 0 !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center top !important;
}

body.home .wpb-content-wrapper > .vc_row.et_custom_uniqid_new_66e38afff220e {
    margin-top: 0 !important;
}

body.home .wpb-content-wrapper:has(.igr-final-cta) > .vc_row:last-child {
    margin-bottom: 0 !important;
}

body.home .wpb-content-wrapper:has(.igr-final-cta) > .vc_row-full-width {
    margin: 0 !important;
    height: 0 !important;
    line-height: 0 !important;
    overflow: hidden !important;
}

.igr-final-cta {
    margin-bottom: 0;
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    font-family: "Montserrat", sans-serif;
    color: #fff;
    background: #05070a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 0;
}

.igr-final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        url("https://www.initialg.gg/wp-content/uploads/2026/06/banner3.webp") center / cover no-repeat;
    transform: scale(1.02);
    pointer-events: none;
}

.igr-final-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 8, 12, 0.84) 0%, rgba(6, 8, 12, 0.68) 45%, rgba(6, 8, 12, 0.52) 100%),
        radial-gradient(circle at 16% 14%, rgba(0, 255, 170, 0.1), transparent 34%),
        radial-gradient(circle at 86% 72%, rgba(255, 0, 237, 0.12), transparent 34%);
    pointer-events: none;
}

.igr-final-cta__inner {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(3.25rem, 6vw, 5rem) clamp(1.25rem, 3vw, 2rem);
}

.igr-final-cta__kicker {
    margin: 0 0 0.85rem;
    color: #00ffaa;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.igr-final-cta h2 {
    max-width: 820px;
    margin: 0 0 1rem;
    color: #fff;
    font-size: clamp(2.1rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.igr-final-cta__inner > p:not(.igr-final-cta__kicker) {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(1rem, 1.35vw, 1.14rem);
    line-height: 1.65;
}

.igr-final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.igr-final-cta__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.9rem 1.2rem;
    border: 1px solid #ff00ed;
    border-radius: 4px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.igr-final-cta__primary {
    background: #ff00ed;
}

.igr-final-cta__actions a:hover,
.igr-final-cta__actions a:focus {
    border-color: #00ffaa;
    background: #00ffaa;
    color: #071010;
}

body.home .footer-bottom {
    padding: 0.6rem 0 !important;
    background: linear-gradient(180deg, #171717 0%, #1a1a1a 100%) !important;
}

body.home .footer-bottom .row {
    display: flex;
    justify-content: center;
    align-items: center;
}

body.home .footer-bottom .footer-copyrights {
    width: 100% !important;
    max-width: none !important;
    flex: 0 0 100%;
    text-align: center !important;
}

body.home .footer-bottom .footer-copyrights p {
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.56) !important;
    font-size: 0.72rem !important;
    line-height: 1.4 !important;
    letter-spacing: 0.04em;
    text-align: center !important;
}

body.home .footer-bottom .footer-copyrights em {
    font-size: inherit !important;
    font-style: normal !important;
}

body.home .footer-bottom .footer-copyrights-right {
    display: none !important;
}

.igr-project-pulse__header {
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.igr-project-pulse__grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 1rem;
}

.igr-project-pulse__item {
    min-height: 138px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.85rem;
    padding: 1.25rem 1rem;
    opacity: 0;
    transform: translateY(18px);
}

.igr-project-pulse--visible .igr-project-pulse__item {
    animation: igr-pulse-item-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--igr-pulse-i, 0) * 70ms);
}

.igr-project-pulse__value {
    color: #00ffaa;
    font-size: clamp(1.65rem, 2.6vw, 2.45rem);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    transition: color 0.25s ease, text-shadow 0.25s ease, transform 0.25s ease;
}

.igr-project-pulse__value.is-counting {
    color: #7dffd8;
    text-shadow: 0 0 22px rgba(0, 255, 170, 0.42);
    transform: translateY(-1px);
}

.igr-project-pulse__value.is-done {
    color: #00ffaa;
    text-shadow: 0 0 10px rgba(0, 255, 170, 0.18);
}

@keyframes igr-pulse-item-in {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .igr-home-band__bg {
        background-attachment: scroll;
        transform: none;
    }

    .igr-project-pulse__item {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .igr-project-pulse__value {
        transition: none;
    }
}

.igr-project-pulse__item span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
}

.igr-home-progression {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.igr-home-progression__intro {
    max-width: 560px;
}

.igr-home-progression__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem;
}

.igr-home-progression__grid article {
    padding: 1.45rem 1.35rem;
}

.igr-hot-challenges {
    max-width: none;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    color: #fff;
}

.igr-hot-challenges__intro {
    max-width: 720px;
    margin: 0 0 1.25rem;
}

.igr-hot-challenges__intro p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(0.95rem, 1.4vw, 1.15rem);
    line-height: 1.55;
}

.igr-hot-challenges__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.igr-hot-card {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background:
        radial-gradient(circle at 0 0, rgba(0, 255, 170, 0.09), transparent 34%),
        radial-gradient(circle at 100% 100%, rgba(255, 0, 237, 0.11), transparent 38%),
        rgba(18, 18, 22, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.igr-hot-card__banner {
    display: block;
    margin: -1rem -1rem 0;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background: rgba(255, 255, 255, 0.06);
}

.igr-hot-card__banner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 240ms ease, opacity 240ms ease;
}

.igr-hot-card__banner:hover img,
.igr-hot-card__banner:focus img {
    transform: scale(1.035);
    opacity: 0.92;
}

.igr-hot-card--xp {
    border-color: rgba(0, 255, 170, 0.34);
}

.igr-hot-card--drift,
.igr-hot-card--drift_segment {
    border-color: rgba(168, 85, 247, 0.4);
}

.igr-hot-card--timeattack {
    border-color: rgba(255, 0, 237, 0.32);
}

.igr-hot-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.igr-hot-card__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0.25rem 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: #00ffaa;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.igr-hot-card h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.35rem, 2.1vw, 2rem);
    line-height: 1.05;
    text-transform: uppercase;
}

.igr-hot-card__track,
.igr-hot-card__ends {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.92rem;
    line-height: 1.45;
}

.igr-hot-card__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin: auto 0 0;
}

.igr-hot-card__stats div {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
}

.igr-hot-card__stats dt {
    margin: 0 0 0.25rem;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.igr-hot-card__stats dd {
    margin: 0;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
}

.igr-hot-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.25rem;
}

.igr-hot-card__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.7rem 0.9rem;
    border-radius: 4px;
    border: 1px solid #ff00ed;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.igr-hot-card__actions a:first-child {
    background: #ff00ed;
}

.igr-hot-card__actions a:hover,
.igr-hot-card__actions a:focus {
    border-color: #00ffaa;
    background: #00ffaa;
    color: #071010;
}

.igr-hot-challenges-empty,
.igr-hot-challenges-error {
    color: rgba(255, 255, 255, 0.72);
    font-family: "Montserrat", sans-serif;
}

@media (max-width: 1180px) {
    .igr-project-pulse__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .igr-hot-challenges__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .igr-home-band__bg {
        background-attachment: scroll;
    }

    .igr-home-world,
    .igr-home-progression {
        grid-template-columns: 1fr;
    }

    .igr-home-world--hero {
        padding-bottom: 0.5rem;
    }
}

@media (max-width: 640px) {
    .igr-home-band__inner {
        padding: 3rem 1rem;
    }

    .igr-home-world--hero {
        padding: 0;
    }

    .igr-project-pulse__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .igr-hot-challenges {
        padding: 0;
    }

    .igr-hot-challenges__grid {
        grid-template-columns: 1fr;
    }
}