
#index-page .video-background {
	height: 130%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

#index-page .video-background video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#index-page .parallax__title {
	z-index: 2;
	margin-bottom: 0;
	margin-right: 0;
	font-family: "Hanson", sans-serif;
	font-size: 10vw;
	font-weight: 800;
}

#index-page .parallax__fade {
	--color-dark-rgb: var(--my-white-bg-rgba);
	background: linear-gradient(to top,
		rgba(var(--color-dark-rgb), 1) 0%,
		rgba(var(--color-dark-rgb), 0.738) 19%,
		rgba(var(--color-dark-rgb), 0.541) 34%,
		rgba(var(--color-dark-rgb), 0.382) 47%,
		rgba(var(--color-dark-rgb), 0.278) 56.5%,
		rgba(var(--color-dark-rgb), 0.194) 65%,
		rgba(var(--color-dark-rgb), 0.126) 73%,
		rgba(var(--color-dark-rgb), 0.075) 80.2%,
		rgba(var(--color-dark-rgb), 0.042) 86.1%,
		rgba(var(--color-dark-rgb), 0.021) 91%,
		rgba(var(--color-dark-rgb), 0.008) 93.2%,
		rgba(var(--color-dark-rgb), 0.002) 95.2%,
		transparent 100%);
	z-index: 30;
	object-fit: cover;
	width: 100%;
	max-width: none;
	height: 20%;
	position: absolute;
	bottom: 0;
	left: 0;
}

[data-bs-theme="dark"] #index-page .parallax__fade {
	--color-dark-rgb: var(--my-dark-bg-rgba);
}


#index-page #header-page {
	position: relative;
}

#index-page .index-hero-copy {
	z-index: 20;
}

#index-page .index-hero-kicker {
	letter-spacing: 0.34em;
	opacity: 0.85;
}

#index-page .index-hero-title {
	font-size: clamp(4.4rem, 9vw, 5.8rem);
	line-height: 0.9;
	white-space: nowrap;
}

#index-page .index-hero-description {
	max-width: 22rem;
	line-height: 1.35;
	opacity: 0.9;
}

@media (min-width: 992px) {
	#index-page .index-hero-copy {
		left: 7.5vw !important;
		transform: translateY(-50%) !important;
	}

	#index-page .index-hero-copy .index-hero-title,
	#index-page .index-hero-description {
		margin-inline: 0;
	}

	#index-page .index-hero-description {
		max-width: 28rem;
	}
}

#index-page .parallax-item:nth-child(3) {
	height: auto;
	z-index: 2;
}


@media (max-width: 991.98px) {
	/* Réinitialise la hauteur pour toutes les sections de contenu sur mobile */
	#index-page .parallax-item:nth-child(n+2) {
		min-height: auto;
	}

	/* Section Iframe (2) : On réduit le padding pour éviter l'effet "trop grand" */
	#index-page .parallax-item:nth-child(2) {
		padding-top: 1rem !important;
		padding-bottom: 1rem !important;
	}

	/* Sections Jeux (3), Articles (4), DreamRelax (5) : On aère pour éviter l'effet "serré" */
	#index-page .parallax-item:nth-child(n+3) {
		padding-top: 8rem !important;
        padding-bottom: 6rem !important;
	}
}

/* =============================================
   4. TWITCH ESPACE (Video + Chat)
   ============================================= */
.video-block {
	background-color: #007bff00;
	color: white;
    width: 100%;
}

.chat-block {
	background-color: #ffc10700;
	color: black;
    width: 100%;
    min-height: 24rem;
}

.twitch-button {
	display: none;
}

@media (max-width: 1199.98px) {
  .chat-block {
    display: none !important;
  }

  .chat-block {
    min-height: 30rem;
  }
}

@media (max-width: 767.98px) {
  .chat-block {
    min-height: 22rem;
  }

  #index-page .index-hero-copy {
    top: 50%;
  }
}

/* Grille adaptative */
.calendar-grid {
    display: grid;
    /* 2 colonnes par défaut (Mobile) */
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
}

/* Passage à 7 colonnes sur PC (Largeur > 992px) */
@media (min-width: 992px) {
    .calendar-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 12px;
    }
}

.day-card {
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    min-height: 90px;
    transition: all 0.2s ease;
}

/* Highlight du jour actuel */
.day-card.today {
    border: 2px solid #7700ff;
    background: #ffffff;
    box-shadow: 0 0 20px rgba(195, 0, 255, 0.25);
    transform: scale(1.03);
    z-index: 2;
}

[data-bs-theme="dark"] .day-card.today {
    background: linear-gradient(160deg, #1f1f23 0%, #2d2d35 100%);
}

.day-card.today .day-name {
    color: #7700ff;
    text-shadow: none;
}

[data-bs-theme="dark"] .day-card.today .day-name {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(132, 0, 255, 0.8);
}

.day-name {
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.streams-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stream-item {
    /* background défini dynamiquement */
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 6px;
    border-radius: 4px;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3); /* Pour la lisibilité sur toutes les couleurs */
}

.time-label {
    display: block;
    font-size: 0.65rem;
    opacity: 0.9;
    margin-bottom: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.no-stream {
    font-size: 0.65rem;
    color: #53535f;
    font-style: italic;
    margin-top: auto;
}

/* =============================================
   5. ARTICLES INDEX
   ============================================= */

#index-page .index-articles-shell {
    max-width: min(1180px, 100%);
    margin-inline: auto;
}

#index-page .index-article .row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}

@media (max-width: 767.98px) {
    #index-page .index-articles-shell {
        max-width: 100%;
    }
}


#index-page .xds-big-text {
    position: relative;
	font-size: 8vw;
    min-height: 1.5em; /* Un peu plus haut pour voir l'effet */
    overflow: hidden;

    /* Le masque magique : transparent aux bords, noir (opaque) au centre */
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 20%,
        black 80%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 20%,
        black 80%,
        transparent 100%
    );
}

@media screen and (max-width: 768px) {
    #index-page .xds-big-text {
        font-size: calc(1.625rem + 3.5vw);
    }
}

#text-container {
    position: relative;
    width: 100%;
    height: 1.2em; /* Doit correspondre à la hauteur du texte */
}

.animated-msg {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    text-align: center;
    /* On ne met pas de transform: translate ici, GSAP s'en chargera */
}

/* --- Jeux du moment (Minimalist) --- */
.scroll-highlight {
    --xds-highlight-scale: 0;
    position: relative;
    display: inline-block;
    isolation: isolate;
    line-height: 1.2;
}

.scroll-highlight::after {
    content: "";
    position: absolute;
    left: -0.2em;
    right: -0.2em;
    top: -0.1em;
    bottom: -0.1em;
    border-radius: var(--border-radius-10);;
    transform: scaleX(var(--xds-highlight-scale));
    transform-origin: left center;
    z-index: -1;
    opacity: 0.95;
}

.scroll-highlight-blue::after {
    background: linear-gradient(90deg, rgba(39, 125, 255, 0.92), rgba(84, 196, 255, 0.88));
    box-shadow: 0 10px 28px rgba(39, 125, 255, 0.28);
}

.scroll-highlight-emote::after {
    background: linear-gradient(90deg, rgba(104, 39, 255, 0.92), rgba(172, 84, 255, 0.88));
    box-shadow: 0 10px 28px rgba(122, 39, 255, 0.28);
}

.scroll-highlight-dreamrelax::after {
    background: linear-gradient(90deg, rgba(41, 214, 118, 0.92), rgba(189, 255, 84, 0.88));
    box-shadow: 0 10px 28px rgba(41, 214, 118, 0.28);
}

.card-moment {
    position: relative;
    overflow: hidden;
    cursor: default;
    border-radius: var(--border-radius-20);
}


.card-moment:hover {
    z-index: 2;
}

.card-moment-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 133.33%; /* Ratio 3:4 (Format Twitch) */
}

.card-moment img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.card-moment .game-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 1rem 1rem;
    background: linear-gradient(transparent,rgba(0,0,0,.8));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    text-align: center;
}

.card-moment:hover .game-info {
    opacity: 1;
    transform: translateY(0);
}


/* --- DreamRelax Index --- */
.dr-section-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100dvh;
    overflow: visible;
}

.dr-images-layer {
    left: 50%;
    width: min(120vw, calc(100% + 10rem));
    max-width: none;
    transform: translateX(-50%);
    pointer-events: none;
}

/* Logos (Stickers) */
.dr-logo-link {
    position: relative;
    z-index: 10;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding-inline: clamp(4px, 1vw, 12px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.dr-logo-img {
    width: min(100%, 460px);
    max-height: 180px;
    height: auto;
    object-fit: contain;
    object-position: center;
}
.dr-logo-link:hover {
    transform: scale(1.02) !important;
}

/* Images éparpillées (Scatter) */
.dr-scatter-item {
    position: absolute;
    top: calc(var(--scatter-top, 50) * 1% + var(--dr-scroll-shift, 0px));
    left: calc(var(--scatter-left, 50) * 1%);
    z-index: 1;
    transform: translate(-50%, -50%);
    transform-origin: center;
    will-change: transform;
}

.dr-scatter-item.is-visible {
    animation: dr-scatter-float var(--dr-float-duration, 14s) ease-in-out infinite;
    animation-delay: calc(var(--dr-float-delay, 0s) * -1);
}

.dr-scatter-img {
    display: block;
    width: var(--scatter-size, 180px);
    height: auto;
    box-shadow: var(--xds-shadow);
    border-radius: var(--border-radius-10);
    object-fit: cover;
    transition: opacity 0.6s ease, filter 0.6s ease;
    opacity: 0;
    filter: grayscale(0.4);
    transform: rotate(calc(var(--scatter-rot, 0) * 1deg)) scale(0.68);
    transform-origin: center;
    will-change: transform, opacity;
}

.dr-scatter-item.is-visible .dr-scatter-img {
    animation: dr-scatter-pop var(--dr-pop-duration, 480ms) cubic-bezier(0.2, 0.9, 0.25, 1.35) forwards;
    animation-delay: var(--dr-pop-delay, 0ms);
}

@keyframes dr-scatter-pop {
    0% {
        opacity: 0;
        transform: rotate(calc(var(--scatter-rot, 0) * 1deg)) scale(0.68);
    }
    72% {
        opacity: 0.78;
        transform: rotate(calc((var(--scatter-rot, 0) * 1deg) + 1.4deg)) scale(1.08);
    }
    100% {
        opacity: 0.7;
        transform: rotate(calc(var(--scatter-rot, 0) * 1deg)) scale(1);
    }
}

@keyframes dr-scatter-float {
    0%, 100% {
        transform: translate(-50%, -50%);
    }
    50% {
        transform: translate(calc(-50% + var(--dr-drift-x, 10px)), calc(-50% + var(--dr-drift-y, -8px)));
    }
}

/* Info bulle */
.dr-info {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    transition: all 0.5s ease;
    white-space: nowrap;
    pointer-events: none;
    z-index: 30;
}
.dr-logo-link:hover .dr-info {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 991.98px) {
    .dr-section-container { min-height: auto; padding: 50px 0; }
    .dr-images-layer { width: min(115vw, calc(100% + 2rem)); }
    .dr-col:nth-child(n) .dr-logo-link { transform: none; margin-bottom: 2rem; }
    .dr-logo-img { width: min(92vw, 480px); max-width: 280px; }
    .dr-scatter-img { width: min(var(--scatter-size, 180px), 96px); opacity: 0.38; }
    .dr-images-layer .dr-scatter-item[data-mobile-visible="false"] { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .dr-scatter-item,
    .dr-scatter-img {
        animation: none;
    }

    .dr-scatter-img {
        opacity: 0.7;
        transform: rotate(calc(var(--scatter-rot, 0) * 1deg)) scale(1);
    }
}

/* Liens vers les profils dans la modale SDR */
.participant-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dotted rgba(255,255,255,0.5);
    transition: all 0.2s ease;
}
.participant-link:hover {
    color: var(--bs-primary) !important;
    border-bottom-color: var(--bs-primary);
}

#index-page .index-twitch-block {
    position: relative;
}

#index-page .index-marquee-bridge {
    position: absolute;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    bottom: -13rem;
    z-index: -1;
    pointer-events: none;
}

#index-page .index-planning-block {
    position: relative;
    z-index: 2;
    margin-top: 0.75rem;
}

#index-page .box_alert_text {
    position: relative;
    z-index: 1;
}

/* --- Emotes & Badges --- */
#index-page .index-emotes-badges__intro {
    max-width: 920px;
}

#index-page .index-emotes-badges {
    position: relative;
    min-height: clamp(600px, 72vh, 760px);
    display: grid;
    align-items: center;
    isolation: isolate;
}

#index-page .index-emotes-badges__foreground {
    z-index: 2;
}

#index-page .index-emotes-badges__scatter {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

#index-page .index-emotes-badges__scatter-item {
    position: absolute;
    top: clamp(var(--scatter-safe), calc(var(--scatter-top) * 1%), calc(100% - var(--scatter-safe)));
    left: clamp(var(--scatter-safe), calc(var(--scatter-left) * 1%), calc(100% - var(--scatter-safe)));
}

#index-page .index-emotes-badges__scatter-visual {
    display: block;
    width: var(--scatter-size);
    height: var(--scatter-size);
    object-fit: contain;
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--scatter-rotate)) scale(.68);
    transform-origin: center;
    will-change: transform, opacity;
}

#index-page .index-emotes-badges__scatter-item.is-revealed .index-emotes-badges__scatter-visual {
    animation: index-subscriber-pop .55s cubic-bezier(.2, .9, .25, 1.35) forwards;
}

@keyframes index-subscriber-pop {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(var(--scatter-rotate)) scale(.68);
    }

    72% {
        opacity: .78;
        transform: translate(-50%, -50%) rotate(var(--scatter-rotate)) scale(1.08);
    }

    100% {
        opacity: .72;
        transform: translate(-50%, -50%) rotate(var(--scatter-rotate)) scale(1);
    }
}

#index-page .index-emotes-badges__scatter-item.is-revealed {
    animation: index-subscriber-scatter var(--scatter-duration) ease-in-out var(--scatter-delay) infinite;
}

@keyframes index-subscriber-scatter {
    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(var(--scatter-x), var(--scatter-y));
    }
}

#index-page .index-subscriber-pass {
    position: relative;
    background: transparent;
    box-shadow: none;
    isolation: isolate;
}

#index-page .index-subscriber-pass__brand {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-family: "Hanson", sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    text-transform: uppercase;
}

#index-page .index-subscriber-pass__brand svg {
    width: 1em;
    height: 1em;
    color: var(--xdsbtn-hover-Twitch);
}

#index-page .index-subscriber-pass__identity {
    max-width: 720px;
}

#index-page .index-subscriber-pass__eyebrow {
    display: inline-flex;
    padding: .4rem .75rem;
    border: 1px solid rgba(145, 70, 255, .32);
    border-radius: 999px;
    background: rgba(145, 70, 255, .12);
    color: var(--xdsbtn-hover-Twitch);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

#index-page .index-subscriber-pass__benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .55rem;
    padding: .8rem 1rem;
    border-radius: 14px;
    background: rgba(145, 70, 255, .07);
    text-align: center;
}

#index-page .index-subscriber-pass__benefit small {
    line-height: 1.4;
}

#index-page .index-subscriber-pass__check {
    display: grid;
    width: 1.7rem;
    height: 1.7rem;
    flex: 0 0 1.7rem;
    place-items: center;
    border-radius: 50%;
    background: var(--xdsbtn-hover-Twitch);
    color: white;
    font-weight: 800;
}



/* --- DreamRelax dynamique sur l'index --- */
#index-page .index-dreamrelax-section {
    padding-inline: 0 !important;
}

#index-page .index-dreamrelax {
    padding-inline: 0;
}

#index-page .index-dreamrelax__hero {
    position: relative;
    width: 100vw;
    min-height: clamp(680px, 86vh, 900px);
    overflow: visible;
    margin-bottom: clamp(9rem, 16vw, 13rem);
    background: transparent;
    isolation: isolate;
}

#index-page .index-dreamrelax__hero::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    z-index: 5;
    height: clamp(70px, 9vw, 120px);
    pointer-events: none;
    background: linear-gradient(180deg, transparent 0%, rgba(var(--my-white-bg-rgba), .18) 48%, var(--my-white-bg) 100%);
}

[data-bs-theme="dark"] #index-page .index-dreamrelax__hero::after {
    background: linear-gradient(180deg, transparent 0%, rgba(var(--my-dark-bg-rgba), .18) 48%, var(--my-dark-bg) 100%);
}

#index-page .index-dreamrelax__layers,
#index-page .index-dreamrelax__layers::after {
    position: absolute;
    left: 0;
    width: 100%;
}

#index-page .index-dreamrelax__layers {
    top: 0;
    height: 100%;
    overflow: hidden;
}

#index-page .index-dreamrelax__layers::after {
    inset: 0;
    height: 100%;
}

#index-page .index-dreamrelax__layers::after {
    content: '';
    z-index: 3;
    background: linear-gradient(180deg, transparent 68%, rgba(0, 0, 0, .48));
}

#index-page .index-dreamrelax__layer {
    position: absolute;
    top: -5.5%;
    left: 0;
    width: 100%;
    max-width: none;
    height: 117.5%;
    object-fit: cover;
    will-change: transform;
}

#index-page .index-dreamrelax__layer--back {
    z-index: 1;
}

#index-page .index-dreamrelax__logo-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: clamp(8rem, 18vh, 13rem);
    pointer-events: none;
    will-change: transform;
}

#index-page .index-dreamrelax__layer--front {
    z-index: 3;
}

#index-page .index-dreamrelax__content {
    position: relative;
    z-index: 6;
    min-height: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: clamp(3rem, 7vw, 6rem) clamp(1.25rem, 5vw, 4.5rem) 0;
}

#index-page .index-dreamrelax__heading {
    max-width: 900px;
    margin-inline: auto;
    text-shadow: 0 2px 5px rgba(0, 0, 0, .55);
}

#index-page .index-dreamrelax__brand {
    display: block;
    width: min(90vw, 1180px);
    max-height: 310px;
    object-fit: contain;
}

#index-page .index-dreamrelax__featured {
    top: calc(100% - 140px);
    right: 1rem;
    left: 1rem;
    width: min(calc(100% - 2rem), 1040px);
    height: 280px;
    min-height: 280px;
    margin-inline: auto;
}

#index-page .index-dreamrelax__featured .article-card__title {
    font-size: clamp(1.45rem, 2.2vw, 2rem);
}

#index-page .index-dreamrelax__featured-media {
    height: 100%;
    min-height: 280px;
    flex-basis: auto;
}

#index-page .index-dreamrelax__featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

#index-page .index-dreamrelax__featured-logo {
    position: absolute;
    bottom: 1rem;
    z-index: 2;
    width: min(112%, 420px);
    height: 150px;
    object-fit: contain;
}

#index-page .index-dreamrelax__previous {
    padding-inline: clamp(1rem, 4vw, 4rem);
    text-align: center;
}

#index-page .index-dreamrelax__rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: clamp(290px, 28vw, 370px);
    justify-content: center;
    gap: 1.25rem;
    overflow-x: auto;
    padding: .8rem .8rem 1.25rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

#index-page .index-dreamrelax__story-card {
    min-height: 350px;
    color: inherit;
    text-decoration: none;
}

#index-page .index-dreamrelax__story-reveal {
    min-width: 0;
    height: 100%;
    scroll-snap-align: center;
}

#index-page .index-dreamrelax__story-card .article-card__media {
    flex-basis: 180px;
    height: 180px;
}

#index-page .index-dreamrelax__story-card .article-card__meta-row {
    justify-content: center;
}

#index-page .index-dreamrelax__story-card .card-body > .d-flex span {
    padding: .28rem .55rem;
    border-radius: 999px;
    background: rgba(126, 184, 230, .13);
    font-size: .72rem;
    font-weight: 600;
}

#index-page .index-dreamrelax__story-logo {
    position: absolute;
    top: 110px;
    left: 50%;
    z-index: 2;
    width: min(90%, 285px);
    height: 92px;
    object-fit: contain;
    transform: translateX(-50%);
}

@media (min-width: 992px) {
    #index-page .index-dreamrelax__rail {
        grid-auto-columns: clamp(300px, 28vw, 380px);
    }
}

@media (max-width: 991.98px) {
    #index-page .index-dreamrelax__featured {
        max-width: 680px;
    }

    #index-page .index-dreamrelax__featured .card-body {
        text-align: center;
    }

    #index-page .index-dreamrelax__featured .article-card__meta-row,
    #index-page .index-dreamrelax__featured .card-body .d-flex {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    #index-page .index-dreamrelax__featured {
        top: calc(100% - 250px);
        height: 500px;
        min-height: 500px;
    }

    #index-page .index-dreamrelax__featured-media {
        height: 210px;
        min-height: 210px;
    }

    #index-page .index-dreamrelax__featured-logo {
        right: 50%;
        bottom: .5rem;
        width: min(92%, 360px);
        transform: translateX(50%);
    }
}

@media (max-width: 575.98px) {
    #index-page .index-emotes-badges {
        min-height: 680px;
    }

    #index-page .index-emotes-badges__scatter-visual {
        width: calc(var(--scatter-size) * .78);
        height: calc(var(--scatter-size) * .78);
    }

    #index-page .index-emotes-badges__scatter-item:nth-child(2),
    #index-page .index-emotes-badges__scatter-item:nth-child(6),
    #index-page .index-emotes-badges__scatter-item:nth-child(9) {
        display: none;
    }

    #index-page .index-subscriber-pass .btn-twitch {
        width: 100%;
    }

    #index-page .index-dreamrelax__hero {
        min-height: 760px;
        margin-bottom: 18rem;
    }

    #index-page .index-dreamrelax__content {
        padding: 1.5rem;
    }

    #index-page .index-dreamrelax__logo-layer {
        padding-top: 10rem;
    }

    #index-page .index-dreamrelax__rail {
        grid-auto-columns: 82%;
        justify-content: start;
    }
}

@media (prefers-reduced-motion: reduce) {
    #index-page .index-emotes-badges__scatter-item,
    #index-page .index-emotes-badges__scatter-visual {
        animation: none;
    }

    #index-page .index-emotes-badges__scatter-visual {
        opacity: .72;
        transform: translate(-50%, -50%) rotate(var(--scatter-rotate)) scale(1);
    }

    #index-page .index-dreamrelax__layer {
        transform: none;
        will-change: auto;
    }
}
