:root {
    --header-bg-color: #1D1D1D;
    --main-bg-color: #151D24;
    --footer-bg-color: #1E181B;
    --main-text-color: #FFFFFF;
    --link-text-color: #E8E8E8;
    --button-text-color: #000000;
    --button-bg-color: #03FFC2;
    --button-second-bg-color: #03FFC2;
}

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    text-size-adjust: none;
}

html, body {
    margin: 0;
    padding: 0;
    scroll-snap-align: start;
}

html {
    box-sizing: border-box;
    scroll-snap-type: y mandatory;
}

body {
    display: flex;
    flex-direction: column;
    font-family: Days One, sans-serif;
    line-height: 1.6;
    color: var(--main-text-color);
}

button {
    font-family: Days One, sans-serif;
    cursor: pointer;
    border: none !important;
}

a {
    color: var(--link-text-color);
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none;
    color: var(--link-text-color);
}

h1, h2, h3, h4 {
    color: var(--main-text-color);
}

h1 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.04;
  margin-bottom: 18px;
  text-align: left;
    text-transform: none;
    letter-spacing: -0.03em;
}
@media screen and (max-width: 992px) {
  h1 {
    font-size: 30px;
    line-height: 42px;
  }
}

h2 {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
    text-transform: none;
    letter-spacing: -0.02em;
    padding-bottom: 14px;
    border-bottom: 2px solid color-mix(in srgb, var(--button-bg-color) 70%, transparent);
}
@media screen and (max-width: 992px) {
  h2 {
    font-size: 30px;
    line-height: 44px;
  }
}

h3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
    text-transform: none;
    letter-spacing: -0.01em;
}
@media screen and (max-width: 992px) {
  h3 {
    font-size: 24px;
    line-height: 32px;
  }
}

p {
  font-size: 16px;
  letter-spacing: normal;
  font-weight: 400;
  margin-bottom: 14px;
  line-height: 27px;
}
@media screen and (max-width: 992px) {
    p {
        font-size: 14px;
        line-height: 29px;
    }
}

strong {
    font-weight: 600;
}
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    white-space: nowrap;
    display: block;
    overflow-x: auto;
    max-width: 100%;
    border-radius: 18px;
    margin-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: color-mix(in srgb, var(--button-bg-color) 60%, transparent) color-mix(in srgb, var(--main-text-color) 8%, transparent);
}

table p {
    margin: 0;
}

tbody {
    width: calc(100% - 2px);
    display: table;
}

th {
    background: color-mix(in srgb, var(--button-bg-color) 26%, transparent);
    text-transform: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-align: left;
}

th, td {
    border: 0 solid transparent;
    padding: 13px 16px;
    box-sizing: border-box;
    font-size: 15px;
}

th:first-child {
    border-top-left-radius: 18px;
}

th:last-child {
    border-top-right-radius: 18px;
}

tr:last-child td:first-child {
    border-bottom-left-radius: 18px;
}

tr:last-child td:last-child {
    border-bottom-right-radius: 18px;
}

tr:first-child td:first-child {
    border-top-left-radius: 10px;
}

tr:first-child td:last-child {
    border-top-right-radius: 10px;
}

table::-webkit-scrollbar {
    height: 8px;
}

table::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

table::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

footer, header, nav, section, main {
    display: block;
    position: relative;
}

main {
    flex: 1 0 auto;
    background-color: var(--main-bg-color);
}

section {
    padding: 22px 0;
    scroll-margin-top: 0;
}

@media screen and (max-width: 768px) {
    section {
        padding: 20px 0;
    }
}

.JoubebikeContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (max-width: 1200px) {
    .JoubebikeContainer {
        max-width: 100%;
        padding: 0 15px;
    }
}

img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}


.JoubebikeRow {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.JoubebikeCol:first-child {
    width: 820px;

}
.JoubebikeCol:last-child {
    flex: 0 0 330px;
}
@media (max-width: 1030px) {
    .JoubebikeRow {
        flex-wrap: wrap;
        justify-content: center;
    }
    .JoubebikeCol:first-child, .JoubebikeCol:last-child {
        width: 100%;
        flex: auto;
    }
}

.JoubebikeJcEnd {
    justify-content: end !important;
}

.JoubebikeJcCenter {
    justify-content: center;
}

.JoubebikeBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    line-height: inherit;
    height: auto;
    padding: 16px 30px;
    border-radius: 14px;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    text-transform: none;
    letter-spacing: -0.005em;
}
.JoubebikeBtn:hover {
    transform: scale(1.02);
}
.JoubebikeBtn__wrapper {
    display: flex;
    justify-content: center;
    gap: 12px;
}

@media screen and (max-width: 768px) {
    .JoubebikeBtn__wrapper {
        gap: 20px;
    }
}
.JoubebikeBtnPrimary {
    color: var(--button-text-color);
    background-color: var(--button-bg-color);
    box-shadow: none;
}

.JoubebikeBtnPrimary:hover {
    color: var(--button-text-color);
    background-color: color-mix(in srgb, var(--button-bg-color) 86%, #fff);
}

.JoubebikeBtnSecondary {
    color: var(--button-text-color);
    background-color: color-mix(in srgb, var(--button-second-bg-color) 18%, transparent);
    box-shadow: inset 0 0 0 2px var(--button-second-bg-color);
}

.JoubebikeBtnSecondary:hover {
    color: var(--button-text-color);
    background-color: var(--button-second-bg-color);
    box-shadow: inset 0 0 0 2px var(--button-second-bg-color);
}

.JoubebikeBtnPulse {
    animation: v3-shift 2.6s ease-in-out infinite;
    position: relative;
}

.JoubebikeBtnUppercase {
    text-transform: uppercase;
}
.JoubebikeHeader {
    background-color: var(--header-bg-color);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 0 solid transparent;
    animation: v3-headroom linear both;
    animation-timeline: scroll(root);
    animation-range: 0 220px;
}

.JoubebikeHeader ul, .JoubebikeHeader ol, .JoubebikeHeader li,
.JoubebikeFooter ul, .JoubebikeFooter ol, .JoubebikeFooter li {
    margin: 0;
    padding: 0;
    border: 0;
    list-style-type: none;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    text-size-adjust: none;
}
.JoubebikeHeader__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.JoubebikeHeader__innerPrimary {
    display: flex;
    align-items: center;
    /*width: 100%;*/
    justify-content: space-between;
    flex: auto;
}

.JoubebikeHeader__innerSecond {
    display: flex;
    align-items: center;
    gap: 10px;
}

.JoubebikeHeader__row {
    flex-direction: row;
    height: 62px;
}

.JoubebikeHeader__innerSecond .JoubebikeHeader__row {
    flex-direction: row;
    gap: 10px;
    height: auto;
}

.JoubebikeHeader__col {
    flex-direction: column;
}

.JoubebikeHeader__innerSecond.JoubebikeHeader__col {
    padding: 10px 0;
    gap: 10px;
    align-items: center;
}

.JoubebikeHeader__logo {
    display: flex;
    max-height: 36px;
    height: 100%;
}

.JoubebikeHeader__logo a {
    text-decoration: none;
    display: flex;
}
.JoubebikeHeader__logo img {
    object-fit: contain;
    border-radius: initial;
}

.JoubebikeHeader__nav {
    display: flex;
}
.JoubebikeHeader__nav ul {
    display: flex;
    gap: 4px;
    height: 100%;
    align-items: center;
    list-style-type: none;
    padding: 0;
}

.JoubebikeHeader__nav ul li {
    display: flex;
    align-items: center;
    height: 100%;
}

.JoubebikeHeader__nav ul li a {
    color: var(--link-text-color);
    text-decoration: none;
    padding: 9px 14px;
    display: block;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.005em;
    border-radius: 12px;
}

.JoubebikeHeader__nav ul li a:hover {
    color: var(--main-text-color);
    background-color: color-mix(in srgb, var(--main-text-color) 12%, transparent);
}

.JoubebikeSection img  {
    max-width: 1051px;
    display: block;
    margin: auto;
}

.JoubebikeSectionMain .JoubebikeContainer > :not(:last-child) {
    margin-bottom: 10px;
}

.JoubebikeBtn__wrapperMain {
    max-width: none;
    width: 100%;
    margin: 0;
}

.JoubebikeBtn__wrapperMain .JoubebikeBtnPrimary {
    padding: 20px 36px;
    border-radius: 18px;
    flex: 1 1 auto;
    font-size: 18px;
}

.JoubebikeBurgerMenu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
}

.JoubebikeBurgerMenu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--main-text-color);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

.JoubebikeBurgerMenu.JoubebikeActive span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.JoubebikeBurgerMenu.JoubebikeActive span:nth-child(2) {
    opacity: 0;
}

.JoubebikeBurgerMenu.JoubebikeActive span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.JoubebikeSectionContent h1:first-of-type,
.JoubebikeSectionContent h2:first-of-type,
.JoubebikeSectionContent h3:first-of-type,
.JoubebikeSectionContent h4:first-of-type {
    margin-top: 0;
    margin-bottom: 30px;
}

.JoubebikeSectionContent h1:not(:first-of-type),
.JoubebikeSectionContent h2:not(:first-of-type),
.JoubebikeSectionContent h3:not(:first-of-type),
.JoubebikeSectionContent h4:not(:first-of-type) {
    margin: 30px 0;
}

.JoubebikeSectionContent .JoubebikeUpdatePost {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 0 4px;
    grid-row: 6;
}

.JoubebikeSectionContent .JoubebikeUpdatePost p{
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 10px 18px;
    border-radius: 999px;
    background-color: color-mix(in srgb, var(--main-text-color) 10%, transparent);
}

footer {
    flex-shrink: 0;
    background-color: var(--footer-bg-color);;
    color: var(--main-text-color);
}

.JoubebikeFooter__wrapper {
    display: flex;
    flex-direction: column;
    justify-self: center;
    padding: 30px 0 26px;
    gap: 22px;
}

.JoubebikeFooter__nav, .JoubebikeFooter__icons, .JoubebikeFooter__inner {
    display: flex;
    justify-content: center;
}

.JoubebikeFooter__iconsLink img {
    border-radius: initial;
}

.JoubebikeFooter__iconsSvg [fill="white"] {
    fill: var(--main-text-color);
    transition: fill 0.2s ease;
}

.JoubebikeFooter__iconsSvg [stroke="white"] {
    stroke: var(--main-text-color);
    transition: stroke 0.2s ease;
}

.JoubebikeFooter__navList {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    justify-content: flex-start;
    gap: 22px;
    align-items: center;
    flex-direction: row;
    width: 100%;
}

.JoubebikeFooter__navLink {
    color: var(--link-text-color);
    text-decoration: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}
.JoubebikeFooter__navLink:hover {
    color: var(--button-bg-color);
}

.JoubebikeFooter__icons {
    gap: 22px;
    flex-wrap: wrap;
    order: 2;
    justify-content: flex-start;
    padding-top: 22px;
    border-top: 1px solid color-mix(in srgb, var(--main-text-color) 12%, transparent);
    opacity: 1;
}

.JoubebikeFooter__inner p {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4em;
}

.JoubebikeBreadcrumbs {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 0 18px;
    font-size: 13px;
    gap: 0;
    letter-spacing: -0.005em;
    color: color-mix(in srgb, var(--main-text-color) 62%, transparent);
}

.JoubebikeBreadcrumbs li {
    display: flex;
    align-items: center;
}

.JoubebikeBreadcrumbs li a {
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.JoubebikeBreadcrumbs li::after {
    content: "•";
    margin: 0 10px;
    color: color-mix(in srgb, var(--main-text-color) 38%, transparent);
    display: inline-flex;
    align-items: center;
}

.JoubebikeBreadcrumbs li:last-child::after {
    content: "";
    margin: 0;
}

.JoubebikeContent__row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 22px;
}

.JoubebikeContent__col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1 1;
}

.JoubebikeContent__col.JoubebikeContent__colImg {
    max-width: 550px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--button-bg-color);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 15px 8px var(--button-bg-color);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--button-bg-color);
    }
}


.JoubebikeErrorPage {
    align-content: center;
}
.JoubebikeErrorPage__wrapper {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 48px 24px;
    border: 0 solid transparent;
    border-radius: 26px;
    background-color: color-mix(in srgb, var(--main-text-color) 8%, transparent);
}

.JoubebikeErrorPage .JoubebikeErrorPage__wrapper h1, .JoubebikeErrorPage .JoubebikeErrorPage__wrapper p {
    margin-bottom: 0;
    font-size: 16px;
    color: color-mix(in srgb, var(--main-text-color) 75%, transparent);
}

@media screen and (max-width: 992px) {
    .JoubebikeContent__wrapper {
        flex-direction: column;
    }

    .JoubebikeContent__col.JoubebikeContent__colImg {
        max-width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .JoubebikeBurgerMenu {
        display: flex;
        order: 1;
    }
    .JoubebikeHeader__inner {
        justify-content: space-between;
        gap: 20px;
    }
    .JoubebikeHeader__logo {
        max-height: 50px;
    }
    .JoubebikeHeader__logo img {
        max-width: 100px;
    }

   #JoubebikeNavMenu {
       position: absolute;
       top: 68px;
       left: 0;
       width: 100%;
       height: 100vh;
       background-color: var(--header-bg-color);
       flex-direction: column;
       align-items: center;
       justify-content: flex-start !important;
       display: none;
   }

    .JoubebikeHeader__nav ul {
        flex-direction: column;
        text-align: center;
        width: 100%;
        height: auto;
        padding: 20px 0;
    }

    .JoubebikeHeader__nav ul li {
        padding: 10px 0;
    }

    .JoubebikeHeader .JoubebikeBtn {
        padding: 9px 18px;
        font-size: 13px;
    border-radius: 12px;
}

    #JoubebikeNavMenu.JoubebikeActive {
        display: flex;
    }

    .JoubebikeHeader__row {
       height: 68px;
    }

    .JoubebikeHeader__innerSecond.JoubebikeHeader__col {
        flex-direction: row;
    }

    .JoubebikeFooter__navList {
        gap: 20px;
    }

    .JoubebikeBreadcrumbs {
        font-size: 0.75em;
    }
}

/* Random Images Block */
.JoubebikeShowcase__wrapper {
    display: grid;
    flex-wrap: wrap;
    gap: 14px;
    margin: 0 0 18px;
    justify-content: space-between;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: auto;
}

.JoubebikeShowcase__block {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 0;
    border: 0 solid transparent;
    border-radius: 18px;
    overflow: hidden;
    background-color: color-mix(in srgb, var(--main-text-color) 10%, transparent);
    animation: v3-pop linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
}

.JoubebikeShowcase__image {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    border-radius: 0;
}

.JoubebikeShowcase__image img {
    max-width: 100%;
    display: initial;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.4s ease;
}


.JoubebikeShowcase__imageOverlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.72);
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-12%);
}

.JoubebikeShowcase__image:hover .JoubebikeShowcase__imageOverlay {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.JoubebikeShowcase__image .JoubebikeBtn__wrapper {
    z-index: 2;
}

.JoubebikeShowcase__desc {
    display: flex;
    flex-direction: column;
    padding: 12px 14px 16px;
    margin-top: 0;
    gap: 2px;
    border-top: 0 solid transparent;
}
.JoubebikeShowcase__desc p, .JoubebikeShowcase__desc span {
    margin: 0;
}
.JoubebikeShowcase__desc span {
    font-size: 14px;
}

@media screen and (max-width: 1210px) {
    .JoubebikeShowcase__block {
        width: calc(25% - 20px);
    }
    .JoubebikeShowcase__image {
        width: auto;
    }
}

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

    .JoubebikeShowcase__image {
        height: 120px;
    }

    .JoubebikeShowcase__desc span {
        font-size: 12px;
    }
}

@media (max-width: 600px) {
    .JoubebikeShowcase__wrapper {
        justify-content: center;
    }
    .JoubebikeShowcase__block {
        width: calc(50% - 20px);
    }
    .JoubebikeShowcase__image {
        width: auto;
        height: 120px;
    }
}

/* TOC Styles */
.JoubebikeToc {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px 0 40px;
    margin: 0;
}

.JoubebikeToc li::marker {
    color: var(--button-bg-color);
    font-weight: 800;
    font-size: 14px;
}

.JoubebikeTocWrapper {
    margin: 22px 0;
    border-radius: 22px;
    border: 0 solid transparent;
    padding: 6px 22px;
    background-color: color-mix(in srgb, var(--main-text-color) 9%, transparent);
}

.JoubebikeTocTitle {
    display: flex;
    align-items: center;
    padding: 18px 0;
    gap: 10px;
    justify-content: space-between;
    text-transform: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.JoubebikeToc.JoubebikeIsOpen {
    margin: inherit;
    margin-top: 0;
}

.JoubebikeTocArrow {
    width: 8px;
    height: 8px;
    margin-bottom: 4px;
    border: solid var(--main-text-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    border-color: var(--button-bg-color);
}

.JoubebikeTocArrow.JoubebikeRotated {
    transform: rotate(-135deg);
    margin-bottom: -4px;
}
/* Variation 3 */
.JoubebikeSectionContent { scroll-snap-align: start; scroll-snap-stop: always; }
.JoubebikeSectionContent article { scrollbar-gutter: stable; }
.JoubebikeSectionContent article::-webkit-scrollbar { width: 4px; }
.JoubebikeSectionContent article::-webkit-scrollbar-track { background-color: transparent; }
.JoubebikeSectionContent article::-webkit-scrollbar-thumb { background-color: var(--button-bg-color); border-radius: 4px; box-shadow: 0 -12px 0 var(--button-bg-color), 0 12px 0 var(--button-bg-color); }
.JoubebikeFooter { scroll-snap-align: start; scroll-snap-stop: always; }
.JoubebikeSectionMain { position: sticky; top: 0; z-index: 1; isolation: isolate; transform: translateZ(0); backface-visibility: hidden; display: flex; align-items: center; min-height: calc(100svh - 70px); padding: 20px 0 22px; overflow: hidden; }
.JoubebikeSectionMain::before { content: ""; position: absolute; top: -12%; right: -12%; bottom: -12%; left: -12%; will-change: transform, opacity; animation: v3-glowfade ease both; animation-timeline: scroll(root); animation-range: 0 100svh; pointer-events: none; background-image: radial-gradient(60% 50% at 20% 20%, color-mix(in srgb, var(--button-bg-color) 26%, transparent) 0%, transparent 70%), radial-gradient(50% 45% at 85% 75%, color-mix(in srgb, var(--button-second-bg-color) 22%, transparent) 0%, transparent 70%); animation: v3-drift linear both; animation-timeline: scroll(root); animation-range: 0 1400px; }
.JoubebikeSectionMain .JoubebikeContainer { position: relative; z-index: 1; width: 100%; will-change: transform, opacity, filter; animation: v3-recede ease both; animation-timeline: scroll(root); animation-range: 0 100svh; }
.JoubebikeSectionMain p { font-size: 15px; line-height: 25px; }
.JoubebikeSectionMain .JoubebikeContainer > img { width: auto; max-width: 100%; height: auto; max-height: 22svh; display: block; margin: 0 auto; border-radius: 24px; }
.JoubebikeContent__colImg img { width: auto; max-width: 100%; height: auto; max-height: 22svh; display: block; margin: 0 auto; border-radius: 24px; }
.JoubebikeSectionMain .JoubebikeContainer > .JoubebikeContent__wrapper { margin-top: 8px; }
.JoubebikeContent__wrapper .JoubebikeContent__colImg { max-width: 100%; width: 100%; }
.JoubebikeSectionMain .JoubebikeContainer:has(> h1:first-child):not(:has(> p)):not(:has(> .JoubebikeContent__wrapper)) { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; max-width: 780px; }
.JoubebikeSectionMain .JoubebikeContainer:has(> h1:first-child):not(:has(> p)):not(:has(> .JoubebikeContent__wrapper)) > img { width: auto; }
.JoubebikeSectionMain .JoubebikeContainer:has(> h1:first-child):not(:has(> p)):not(:has(> .JoubebikeContent__wrapper)) > .JoubebikeBtn__wrapperMain { align-self: flex-end; }
.JoubebikeSectionMain .JoubebikeContainer:has(> h1:first-child):has(> p):not(:has(> .JoubebikeContent__wrapper)) { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; max-width: 780px; padding-top: 8px; }
.JoubebikeSectionMain .JoubebikeContainer:has(> h1:first-child):has(> p):not(:has(> .JoubebikeContent__wrapper)) > p { padding-left: 20px; border-left: 3px solid color-mix(in srgb, var(--button-bg-color) 70%, transparent); }
.JoubebikeSectionMain .JoubebikeContainer:has(> h1:first-child):has(> p):not(:has(> .JoubebikeContent__wrapper)) > img { width: 100%; margin: 0; max-height: none; }
.JoubebikeSectionMain .JoubebikeContainer:has(> h1:first-child):has(> p):not(:has(> .JoubebikeContent__wrapper)) > .JoubebikeBtn__wrapperMain { align-self: flex-end; }
.JoubebikeSectionMain .JoubebikeContainer:has(> img:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; max-width: 780px; padding-top: 8px; }
.JoubebikeSectionMain .JoubebikeContainer:has(> img:first-child) > img { width: 100%; margin: 0; max-height: none; }
.JoubebikeSectionMain .JoubebikeContainer:has(> img:first-child) > p { padding-left: 20px; border-left: 3px solid color-mix(in srgb, var(--button-bg-color) 70%, transparent); }
.JoubebikeSectionMain .JoubebikeContainer:has(> img:first-child) > .JoubebikeBtn__wrapperMain { align-self: flex-end; }
.JoubebikeBtnPulse::after { content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0; border-radius: inherit; box-shadow: 0 0 0 0 color-mix(in srgb, var(--button-bg-color) 55%, transparent); animation: v3-ring 2.6s ease-out infinite; pointer-events: none; }
.JoubebikeHeader::after { content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 100%; transform-origin: left center; background-color: var(--button-bg-color); animation: v3-progress linear both; animation-timeline: scroll(root); }
.JoubebikeHeader__inner.JoubebikeHeader__row .JoubebikeHeader__logo { order: 1; margin: 0; }
.JoubebikeHeader__inner.JoubebikeHeader__row #JoubebikeNavMenu { order: 2; }
.JoubebikeHeader__inner.JoubebikeHeader__row #JoubebikeHeader_btn { order: 3; }
.JoubebikeHeader__col .JoubebikeRow { width: auto; justify-content: center; gap: 14px; padding: 6px 10px; border-radius: 16px; background-color: color-mix(in srgb, var(--main-text-color) 8%, transparent); }
.JoubebikeHeader__inner .JoubebikeBurgerMenu { flex-shrink: 0; order: 4; }
.JoubebikeSectionContent { position: relative; z-index: 2; margin-top: 0; min-height: calc(100svh - 70px); padding: 20px 0 20px; background-color: var(--main-bg-color); border-radius: 40px 40px 0 0; box-shadow: 0 -36px 70px rgba(0, 0, 0, 0.55); }
.JoubebikeSectionContent .JoubebikeContainer { display: grid; grid-template-columns: minmax(0, 1fr); max-width: 900px; align-content: start; height: 100%; }
.JoubebikeSectionContent .JoubebikeContainer > article { max-height: calc(100svh - 240px); overflow-y: auto; scrollbar-width: thin; scrollbar-color: color-mix(in srgb, var(--button-bg-color) 60%, transparent) color-mix(in srgb, var(--main-text-color) 8%, transparent); }
.JoubebikeSectionContent article { grid-row: 5; }
.JoubebikeSectionContent .JoubebikeTocWrapper { grid-row: 4; }
.JoubebikeSectionContent article > h2, .JoubebikeSectionContent article > table { animation: v3-in linear both; animation-timeline: view(); animation-range: entry 0% cover 30%; }
.JoubebikeSectionContent article { counter-reset: v3sec; }
.JoubebikeSectionContent article > h2 { position: relative; margin-top: 52px; padding-bottom: 0; padding-left: 0; border-bottom: 0 solid transparent; }
.JoubebikeSectionContent article > h2::before { counter-increment: v3sec; content: counter(v3sec, decimal-leading-zero); display: block; margin-bottom: 10px; font-size: 13px; font-weight: 700; letter-spacing: 0.2em; color: var(--button-bg-color); }
.JoubebikeSectionContent article > h2:first-child { margin-top: 0; }
.JoubebikeSectionContent article > p { max-width: none; font-size: 17px; line-height: 30px; margin-bottom: 18px; }
.JoubebikeSectionContent article > p:first-of-type::first-letter { float: left; margin: 6px 12px 0 0; font-size: 58px; line-height: 0.78; font-weight: 800; color: var(--button-bg-color); }
.JoubebikeSectionContent article > h3 { margin-top: 30px; padding-left: 16px; border-left: 3px solid color-mix(in srgb, var(--button-bg-color) 70%, transparent); }
.JoubebikeSectionContent article > table { display: block; margin: 26px 0 30px; }
.JoubebikeSectionContent h1 + p { font-size: 18px; line-height: 30px; margin-bottom: 22px; color: color-mix(in srgb, var(--main-text-color) 80%, transparent); }
.JoubebikeSectionContent ul { list-style: none; padding-left: 0; margin-bottom: 18px; }
.JoubebikeSectionContent ul li { position: relative; padding-left: 26px; margin-bottom: 9px; }
.JoubebikeSectionContent ul li::before { content: ""; position: absolute; left: 0; top: 9px; width: 10px; height: 10px; border-radius: 4px; background-color: var(--button-bg-color); }
.JoubebikeSectionContent ol { padding-left: 24px; margin-bottom: 18px; }
.JoubebikeSectionContent ol li { margin-bottom: 9px; }
.JoubebikeSectionContent ol li::marker { color: var(--button-bg-color); font-weight: 800; }
.JoubebikeSectionContent .JoubebikeBreadcrumbs li::before { top: 0px; bottom: 0px; margin: auto 0; }
.JoubebikeBreadcrumbs li a:hover { color: var(--button-bg-color); }
.JoubebikeShowcasePreContent { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; min-height: calc(100svh - 108px); box-sizing: border-box; padding: 28px 20px 32px; margin: 6px 0 18px; border-radius: 26px; background-color: color-mix(in srgb, var(--main-text-color) 7%, transparent); scroll-snap-align: start; scroll-snap-stop: always; scroll-margin-top: 70px; }
.JoubebikeShowcasePreContent h2 { display: flex; align-items: baseline; gap: 12px; padding-bottom: 16px; margin-bottom: 20px; border-bottom-color: color-mix(in srgb, var(--main-text-color) 16%, transparent); }
.JoubebikeShowcasePreContent h2::after { content: ""; flex: 1 1 auto; height: 2px; background-color: color-mix(in srgb, var(--button-bg-color) 55%, transparent); }
.JoubebikeSectionContent + .JoubebikeShowcasePreContent, .JoubebikeShowcasePreContent + .JoubebikeSectionContent { border-radius: 0; box-shadow: none; }
.JoubebikeShowcasePreContent .JoubebikeShowcase__wrapper { padding: 0 4px 4px 0; max-height: 52svh; align-content: start; grid-auto-rows: max-content; overflow-x: visible; overflow-y: auto; overscroll-behavior: auto; scrollbar-width: thin; scrollbar-color: var(--button-bg-color) transparent; counter-reset: v3game; }
.JoubebikeShowcasePreContent .JoubebikeShowcase__wrapper::-webkit-scrollbar { width: 4px; }
.JoubebikeShowcasePreContent .JoubebikeShowcase__wrapper::-webkit-scrollbar-track { background-color: transparent; }
.JoubebikeShowcasePreContent .JoubebikeShowcase__wrapper::-webkit-scrollbar-thumb { background-color: var(--button-bg-color); border-radius: 4px; box-shadow: 0 -12px 0 var(--button-bg-color), 0 12px 0 var(--button-bg-color); }
.JoubebikeShowcase__block:nth-child(2n) { animation-range: entry 0% cover 38%; }
.JoubebikeShowcase__block:nth-child(3n) { animation-range: entry 0% cover 46%; }
.JoubebikeShowcase__block:hover { border-color: transparent; background-color: color-mix(in srgb, var(--main-text-color) 16%, transparent); }
.JoubebikeShowcase__block:hover .JoubebikeShowcase__image img { transform: scale(1.05); }
.JoubebikeShowcase__desc p { text-transform: none; font-size: 14px; font-weight: 700; letter-spacing: -0.01em; line-height: 19px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.JoubebikeShowcase__desc > span { text-transform: none; font-size: 12px; font-weight: 500; letter-spacing: 0; color: color-mix(in srgb, var(--main-text-color) 58%, transparent); }
ol.JoubebikeToc { padding: 0 24px 0 24px; margin: 0; gap: 12px; list-style: decimal; }
ol.JoubebikeToc.JoubebikeIsOpen { padding-top: 18px; padding-bottom: 22px; padding-left: 24px; border-top: 1px solid color-mix(in srgb, var(--main-text-color) 16%, transparent); }
.JoubebikeToc li a { text-decoration: none; font-size: 15px; font-weight: 500; line-height: 1.5; }
.JoubebikeToc li a:hover { color: var(--button-bg-color); }
tbody td { border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: color-mix(in srgb, var(--main-text-color) 14%, transparent); }
tbody tr:hover td { background-color: color-mix(in srgb, var(--main-text-color) 7%, transparent); }
tr:last-child td { border-bottom-color: transparent; }
.JoubebikeIframeBlock { padding: 10px; box-sizing: border-box; border: 0 solid transparent; border-radius: 26px; background-color: color-mix(in srgb, var(--main-text-color) 9%, transparent); }
.JoubebikeIframeOverlay { border-radius: 18px; gap: 14px; }
.JoubebikeModalBlock { border-radius: 22px; }
iframe { border-radius: 18px; }
.JoubebikeOverlayBtn { min-width: 200px; }
.JoubebikeErrorPage__wrapper h1 { text-align: left; font-size: 90px; font-weight: 800; line-height: 0.92; letter-spacing: -0.05em; }
.JoubebikeFooter { position: relative; z-index: 2; border-top: 1px solid color-mix(in srgb, var(--main-text-color) 14%, transparent); }
.JoubebikeFooter__nav { order: 1; justify-content: space-between; width: 100%; }
.JoubebikeFooter__iconsLink:hover .JoubebikeFooter__iconsSvg [fill="white"] { fill: var(--button-bg-color); }
.JoubebikeFooter__iconsLink:hover .JoubebikeFooter__iconsSvg [stroke="white"] { stroke: var(--button-bg-color); }
.JoubebikeFooter__wrapper .JoubebikeFooter__inner { order: 3; justify-content: flex-start; }
.JoubebikeFooter__navList li { display: flex; align-items: center; width: auto; }
.JoubebikeFooter__navLink::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px; background-color: var(--button-bg-color); transform: scaleX(0); transform-origin: left center; transition: transform 0.2s ease; }
.JoubebikeFooter__navLink:hover::after { transform: scaleX(1); }
.JoubebikeFooter__iconsLink { display: inline-flex; opacity: 0.85; transition: opacity 0.2s ease, transform 0.2s ease; }
.JoubebikeFooter__iconsLink:hover { opacity: 1; transform: translateY(-2px); }
.JoubebikeFooter__wrapper .JoubebikeFooter__inner p { text-align: left; font-size: 12px; font-weight: 500; color: color-mix(in srgb, var(--main-text-color) 58%, transparent); }
/* Variation 3 — responsive */
@media screen and (max-width: 600px) {
.JoubebikeHeader #JoubebikeHeader_btn { gap: 10px; }
.JoubebikeHeader #JoubebikeHeader_btn .JoubebikeBtn { padding: 8px 12px; font-size: 12px; }
html { scroll-snap-type: none; }
body { overflow-x: hidden; }
.JoubebikeSectionMain { position: relative; will-change: auto; animation: none; }
.JoubebikeSectionMain::before { animation: none; opacity: 1; }
.JoubebikeSectionMain .JoubebikeContainer { animation: none; opacity: 1; transform: none; filter: none; }
.JoubebikeSectionContent .JoubebikeContainer > article { max-height: none; overflow-y: visible; }
.JoubebikeShowcasePreContent .JoubebikeShowcase__wrapper { max-height: none; overflow-y: visible; }
.JoubebikeShowcasePreContent { min-height: 0; padding: 22px 16px 26px; border-radius: 20px; }
.JoubebikeSectionContent { border-radius: 20px 20px 0 0; box-shadow: 0 -18px 34px rgba(0, 0, 0, 0.35); min-height: 0; }
.JoubebikeSectionMain { position: relative; min-height: 78svh; padding: 30px 0; }
}
@media screen and (max-width: 380px) {
.JoubebikeHeader #JoubebikeHeader_btn { gap: 4px; }
.JoubebikeHeader #JoubebikeHeader_btn .JoubebikeBtn { padding: 9px 14px; font-size: 12px; }
}
@media (prefers-reduced-motion: reduce) {
html { scroll-snap-type: none; }
.JoubebikeSectionMain .JoubebikeContainer, .JoubebikeSectionMain::before, .JoubebikeHeader, .JoubebikeHeader::after, .JoubebikeShowcase__block, .JoubebikeShowcasePreContent, .JoubebikeSectionContent, .JoubebikeBtnPulse, .JoubebikeBtnPulse::after { animation: none; opacity: 1; translate: none; scale: none; transform: none; filter: none; }
.JoubebikeSectionContent article > h2, .JoubebikeSectionContent article > h3, .JoubebikeSectionContent article > p, .JoubebikeSectionContent article > ul, .JoubebikeSectionContent article > ol, .JoubebikeSectionContent article > table { animation: none; opacity: 1; translate: none; }
}
@media screen and (min-width: 600px) {
.JoubebikeShowcase__wrapper { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.JoubebikeBtn__wrapperMain { width: auto; }
.JoubebikeBtn__wrapperMain .JoubebikeBtnPrimary { flex: 0 0 auto; padding: 20px 48px; }
}
@media screen and (min-width: 768px) {
.JoubebikeFooter__wrapper { flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: space-between; padding: 24px 0; gap: 16px; }
.JoubebikeFooter__nav { order: 1; width: auto; }
.JoubebikeFooter__icons { order: 2; padding-top: 0; border-top: none; opacity: 1; }
.JoubebikeFooter__wrapper .JoubebikeFooter__inner { order: 3; width: 100%; padding-top: 18px; border-top: 1px solid color-mix(in srgb, var(--main-text-color) 12%, transparent); }
h1 { font-size: 54px; }
h2 { font-size: 30px; }
.JoubebikeContainer { padding: 0 24px; }
section { padding: 30px 0; scroll-margin-top: 70px; }
.JoubebikeSectionContent { padding: 46px 0 40px; }
.JoubebikeHeader__row { height: 70px; }
.JoubebikeHeader__logo { max-height: 44px; }
.JoubebikeShowcase__wrapper { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.JoubebikeContent__row { gap: 34px; }
.JoubebikeErrorPage__wrapper h1 { font-size: 132px; }
.JoubebikeErrorPage__wrapper { padding: 70px 40px; }
}
@media screen and (min-width: 1100px) {
.JoubebikeShowcasePreContent .JoubebikeShowcase__wrapper { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.JoubebikeShowcasePreContent { padding: 36px 34px 40px; }
h1 { font-size: 68px; }
.JoubebikeSectionContent .JoubebikeContainer { max-width: 1180px; grid-template-columns: minmax(0, 1fr) 280px; column-gap: 40px; }
.JoubebikeSectionContent .JoubebikeContainer > * { grid-column: 1 / -1; }
.JoubebikeSectionContent .JoubebikeContainer > .JoubebikeTocWrapper { grid-column: 2; grid-row: 5; align-self: start; margin: 0; box-sizing: border-box; display: flex; flex-direction: column; overflow: hidden; max-height: calc(100svh - 300px); }
.JoubebikeSectionContent .JoubebikeContainer > .JoubebikeTocWrapper ol.JoubebikeToc.JoubebikeIsOpen { min-height: 0; overflow-y: auto; margin: 0 -22px; padding-left: 46px; padding-right: 46px; scrollbar-width: thin; scrollbar-color: color-mix(in srgb, var(--button-bg-color) 60%, transparent) color-mix(in srgb, var(--main-text-color) 8%, transparent); }
.JoubebikeSectionContent .JoubebikeContainer > .JoubebikeTocWrapper ol.JoubebikeToc.JoubebikeIsOpen::-webkit-scrollbar { width: 6px; }
.JoubebikeSectionContent .JoubebikeContainer > .JoubebikeTocWrapper ol.JoubebikeToc.JoubebikeIsOpen::-webkit-scrollbar-track { background-color: transparent; }
.JoubebikeSectionContent .JoubebikeContainer > .JoubebikeTocWrapper ol.JoubebikeToc.JoubebikeIsOpen::-webkit-scrollbar-thumb { border-radius: 6px; background-color: color-mix(in srgb, var(--button-bg-color) 60%, transparent); }
.JoubebikeSectionContent .JoubebikeContainer > article { grid-column: 1; grid-row: 5; max-height: calc(100svh - 300px); padding-right: 20px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: color-mix(in srgb, var(--button-bg-color) 60%, transparent) color-mix(in srgb, var(--main-text-color) 8%, transparent); }
.JoubebikeSectionContent .JoubebikeContainer > .JoubebikeUpdatePost { grid-column: 1; grid-row: 6; }
.JoubebikeShowcasePreContent .JoubebikeShowcase__wrapper { scrollbar-width: thin; scrollbar-color: var(--button-bg-color) transparent; }
.JoubebikeSectionMain .JoubebikeContainer:has(> .JoubebikeContent__wrapper):has(> .JoubebikeBtn__wrapperMain) { display: block; }
.JoubebikeSectionMain .JoubebikeContainer:has(> .JoubebikeContent__wrapper):has(> .JoubebikeBtn__wrapperMain) > h1 { text-align: left; margin-bottom: 18px; }
.JoubebikeSectionMain .JoubebikeContainer:has(> .JoubebikeContent__wrapper):has(> .JoubebikeBtn__wrapperMain) .JoubebikeContent__row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 44px; align-items: center; }
.JoubebikeSectionMain .JoubebikeContainer:has(> .JoubebikeContent__wrapper):has(> .JoubebikeBtn__wrapperMain) .JoubebikeContent__colImg img { width: auto; max-width: 100%; height: auto; max-height: 100%; }
.JoubebikeSectionMain .JoubebikeContainer:has(> .JoubebikeContent__wrapper):has(> .JoubebikeBtn__wrapperMain) .JoubebikeContent__colText p { margin: 0; padding-left: 20px; border-left: 3px solid color-mix(in srgb, var(--button-bg-color) 70%, transparent); }
.JoubebikeSectionMain .JoubebikeContainer:has(> .JoubebikeContent__wrapper):has(> .JoubebikeBtn__wrapperMain) > .JoubebikeBtn__wrapperMain { margin-top: 22px; }
.JoubebikeSectionMain .JoubebikeContainer:has(> .JoubebikeContent__wrapper):not(:has(> .JoubebikeBtn__wrapperMain)) .JoubebikeContent__row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 44px; align-items: stretch; }
.JoubebikeSectionMain .JoubebikeContainer:has(> .JoubebikeContent__wrapper):not(:has(> .JoubebikeBtn__wrapperMain)) .JoubebikeContent__colImg { display: flex; align-items: center; justify-content: center; height: 100%; }
.JoubebikeSectionMain .JoubebikeContainer:has(> .JoubebikeContent__wrapper):not(:has(> .JoubebikeBtn__wrapperMain)) .JoubebikeContent__colImg img { width: auto; max-width: 100%; height: auto; max-height: 100%; }
.JoubebikeSectionMain .JoubebikeContainer:has(> .JoubebikeContent__wrapper):not(:has(> .JoubebikeBtn__wrapperMain)) .JoubebikeContent__colText { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.JoubebikeSectionMain .JoubebikeContainer:has(> .JoubebikeContent__wrapper):not(:has(> .JoubebikeBtn__wrapperMain)) .JoubebikeContent__colText p { padding-left: 20px; border-left: 3px solid color-mix(in srgb, var(--button-bg-color) 70%, transparent); }
.JoubebikeSectionMain .JoubebikeContainer:has(> .JoubebikeContent__wrapper):not(:has(> .JoubebikeBtn__wrapperMain)) .JoubebikeContent__colText .JoubebikeBtn__wrapperMain { width: auto; margin: 0; }
.JoubebikeSectionMain .JoubebikeContainer:has(> .JoubebikeContent__wrapper):not(:has(> .JoubebikeBtn__wrapperMain)) .JoubebikeContent__colImg { order: 2; }
}
@media screen and (max-width: 1210px) {
    .JoubebikeShowcase__block { width: 100%; }
    .JoubebikeShowcase__image { width: 100%; height: auto; }
}
/* Variation 3 — keyframes */
@keyframes v3-in {from { opacity: 0; translate: 0 24px; }
to { opacity: 1; translate: 0 0; }
}
@keyframes v3-pop {from { opacity: 0; translate: 0 30px; scale: 0.96; }
to { opacity: 1; translate: 0 0; scale: 1; }
}
@keyframes v3-recede {0% { transform: scale(1) translateY(0); opacity: 1; filter: brightness(1) saturate(1) blur(0px); }
60% { transform: scale(0.8) translateY(-7%); opacity: 0.4; filter: brightness(0.55) saturate(0.65) blur(1px); }
100% { transform: scale(0.68) translateY(-10%); opacity: 0.05; filter: brightness(0.35) saturate(0.5) blur(2px); }
}
@keyframes v3-glowfade {from { opacity: 1; }
to { opacity: 0.3; }
}
@keyframes v3-drift {from { transform: translate3d(0, 0, 0); }
to { transform: translate3d(0, -10%, 0); }
}
@keyframes v3-headroom {from { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); }
to { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45); }
}
@keyframes v3-progress {from { transform: scaleX(0); }
to { transform: scaleX(1); }
}
@keyframes v3-fadeout {from { opacity: 1; scale: 1; }
to { opacity: 0; scale: 0.94; }
}
@keyframes v3-cardin {from { opacity: 0; }
to { opacity: 1; }
}
@keyframes v3-shift {0% { transform: translateY(0); }
50% { transform: translateY(-4px); }
100% { transform: translateY(0); }
}
@keyframes v3-ring {0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--button-bg-color) 55%, transparent); }
100% { box-shadow: 0 0 0 14px color-mix(in srgb, var(--button-bg-color) 0%, transparent); }
}
/* Extra Colors */
.JoubebikeFooter a, .JoubebikeFooter__menu a { color: #FFFFFF; }
