

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

html {
    scroll-behavior: smooth;
}

body {
	margin-top: 0px;
	padding: 0;
	background-color: #000;
	position: relative;
}

/* Video hero wrapper - contains video + gradient */
.video-hero {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	z-index: -1;
}

/* Hero background image */
.hero-bg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	object-fit: cover;
	pointer-events: none;
}

/* Gradient fixed to bottom of video area */
.video-hero__gradient {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 40%;
	min-height: 200px;
	background: linear-gradient(to bottom, transparent 0%, #000 100%);
	pointer-events: none;
}

/* Hero scroll-down indicator - fixed at bottom of viewport, never below platform CTA */
.hero-scroll-indicator {
	position: fixed;
	left: 50%;
	bottom: 24px;
	transform: translateX(-50%);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	color: #c1272d;
	border: 1.5px solid #c1272d;
	border-radius: 50%;
	transition: opacity 0.2s ease, color 0.2s ease, bottom 0.15s ease, top 0.15s ease;
	animation: hero-scroll-bounce 2s ease-in-out infinite;
}
.hero-scroll-indicator::before {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	animation: hero-scroll-glow 2s ease-in-out infinite;
	pointer-events: none;
	z-index: -1;
}
.hero-scroll-indicator:hover {
	color: #fff;
	border-color: #fff;
	opacity: 0.9;
}
.hero-scroll-indicator--constrained {
	bottom: auto !important;
}
.hero-scroll-indicator svg {
	display: block;
}
@keyframes hero-scroll-bounce {
	0%, 100% { transform: translateX(-50%) translateY(0); }
	50% { transform: translateX(-50%) translateY(5px); }
}
@keyframes hero-scroll-glow {
	0%, 100% { box-shadow: 0 0 10px rgba(193, 39, 45, 0.8), 0 0 20px rgba(193, 39, 45, 0.4); }
	50% { box-shadow: 0 0 12px rgba(255, 255, 255, 0.9), 0 0 24px rgba(255, 255, 255, 0.5); }
}

/* Ensure container content appears above video */
.container {
	position: relative;
	z-index: 1;
}

.main-image {

	margin-top: -50px;


}

/* About the Game (above trailer) */
.game-about {
	max-width: 800px;
	margin: 0 auto 30px;
	padding: 30px 20px;
	text-align: center;
}

.game-about__title {
	color: #fff;
	font-size: 1.8em;
	font-family: 'Macabre', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 20px;
}

.game-about__text {
	color: #ddd;
	font-size: 1.05em;
	line-height: 1.6;
	font-family: 'MDVMKEX_optical', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	margin-bottom: 16px;
}

.game-about__text--cta {
	color: #fff;
	font-size: 1.8em;
	font-weight: 600;
	margin-bottom: 0;
	font-family: 'Macabre', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	letter-spacing: 2px;
	line-height: 1.5;
}

.vid-tease {
	margin: 0px auto;
	padding: 25px;
	background: #000;
	background-image: url("../video/vid_background.png");
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
}

/* YouTube facade - load iframe on click to avoid blocking LCP */
.yt-facade { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.yt-facade__trigger { display: block; width: 100%; height: 100%; padding: 0; border: 0; background: #000; cursor: pointer; }
.yt-facade__thumb { display: block; width: 100%; height: 100%; object-fit: cover; }
.yt-facade__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 68px; height: 48px; background: rgba(255,255,255,.9); border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,.4); }
.yt-facade__play::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-35%, -50%); border-style: solid; border-width: 10px 0 10px 18px; border-color: transparent transparent transparent #c1272d; margin-left: 4px; }
.yt-facade__trigger:hover .yt-facade__play { background: #fff; }

.footer {
	margin-bottom: 20px;
	text-align: center;
	font-weight: 700;
}

.footer a {
	color: #000000;
}

.footer a:hover {
	text-decoration: underline;
}

/* Platform & CTA Section */
.platform-cta-section {
    text-align: center;
    padding: 40px 20px;
    background: 
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.4) 100%);
    margin: 20px 0;
    position: relative;
    box-shadow: 
        0 0 15px rgba(193, 39, 45, 0.4),
        0 0 30px rgba(193, 39, 45, 0.3),
        0 0 50px rgba(193, 39, 45, 0.2),
        0 0 80px rgba(193, 39, 45, 0.1),
        inset 0 0 50px rgba(0, 0, 0, 0.3);
}

/* Macabre Font for Platform Section */
@font-face {
    font-family: 'Macabre';
    src: url('../media/The Macabre.woff2') format('woff2'),
         url('../media/The Macabre.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* MDVMKEX Optical for Packs body copy */
@font-face {
    font-family: 'MDVMKEX_optical';
    src: url('../media/MDVMKEX_OPTICAL.woff2') format('woff2'),
         url('../media/MDVMKEX_OPTICAL.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.platform-title {
    color: #fff;
    font-size: 2.4em;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Macabre', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.platform-icons {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.platform-icon {
    color: #fff;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.platform-icon:hover {
    color: #c1272d;
    transform: translateY(-3px);
}

.platform-icon svg {
    display: block;
}

.platform-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.platform-buttons--single .platform-btn {
    margin-left: auto;
    margin-right: auto;
}

.platform-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    letter-spacing: 1px;
}

.platform-btn-primary {
    background-color: #c1272d;
    color: #fff;
    border: 2px solid #c1272d;
}

.platform-btn-primary:hover {
    background-color: #fff;
    color: #c1272d;
    text-decoration: none;
}

.platform-btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.platform-btn-secondary:hover {
    background-color: #fff;
    color: #000;
    text-decoration: none;
}

@media (max-width: 768px) {
    .game-about {
        padding: 24px 16px;
        margin-bottom: 24px;
    }

    .game-about__title {
        font-size: 1.5em;
    }

    .game-about__text {
        font-size: 1em;
    }

    .game-about__text--cta {
        font-size: 1.5em;
    }

    .platform-cta-section {
        padding: 30px 15px;
    }

    .platform-icons {
        gap: 20px;
    }
    
    .platform-icon svg {
        width: 64px;
        height: 64px;
    }
    
    .platform-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .platform-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .platform-buttons--single .platform-btn {
        width: auto;
        max-width: none;
    }
}

/* Physical Game Editions (Packs) Section */
.packs-section {
    padding: 40px 0 50px;
    margin: 20px 0;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.75) 70%, rgba(0, 0, 0, 0.5) 100%);
    box-shadow: 0 0 20px rgba(193, 39, 45, 0.2);
}

.packs-section__title {
    color: #fff;
    font-size: 2.35em;
    margin-bottom: 35px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Macabre', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.packs-section__grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.pack-card {
    position: relative;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.4) 100%);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    box-shadow:
        0 0 15px rgba(193, 39, 45, 0.4),
        0 0 30px rgba(193, 39, 45, 0.3),
        0 0 50px rgba(193, 39, 45, 0.2),
        0 0 80px rgba(193, 39, 45, 0.1),
        inset 0 0 50px rgba(0, 0, 0, 0.3);
}

.pack-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 20px rgba(193, 39, 45, 0.5),
        0 0 40px rgba(193, 39, 45, 0.35),
        0 0 60px rgba(193, 39, 45, 0.25),
        0 8px 25px rgba(193, 39, 45, 0.3),
        inset 0 0 50px rgba(0, 0, 0, 0.3);
}

.pack-card--featured {
    box-shadow:
        0 0 18px rgba(193, 39, 45, 0.5),
        0 0 35px rgba(193, 39, 45, 0.35),
        0 0 55px rgba(193, 39, 45, 0.25),
        0 0 85px rgba(193, 39, 45, 0.15),
        inset 0 0 50px rgba(0, 0, 0, 0.3);
}

.pack-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    background: #c1272d;
    color: #fff;
    font-size: 0.75em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 4px;
}

.pack-card__image-wrap {
    background: #111;
    padding: 15px;
    text-align: center;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pack-card__image {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
}

.pack-card__content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pack-card__title {
    color: #fff;
    font-size: calc(1.45em + 2px);
    margin: 0 0 10px 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Macabre', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.pack-card__tagline,
.pack-card__price,
.pack-card__includes {
    color: #ddd;
    font-size: 0.9em;
    margin: 0 0 8px 0;
    font-family: 'MDVMKEX_optical', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.pack-card__list {
    color: #ccc;
    font-size: 0.85em;
    margin: 0 0 20px 0;
    padding-left: 20px;
    line-height: 1.5;
    flex: 1;
    font-family: 'MDVMKEX_optical', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.pack-card__btn {
    margin-top: auto;
    text-align: center;
    width: 100%;
}

@media (max-width: 992px) {
    .packs-section__grid {
        grid-template-columns: 1fr;
    }
    
    .pack-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Screenshots and Videos (Bento Grid) Section */
.bento-section {
    padding: 40px 0 50px;
    margin: 20px 0;
}

.bento-section__title {
    color: #fff;
    font-size: 2em;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Macabre', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.bento-grid {
    display: flex;
    gap: 8px;
    min-height: 512px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-grid__main {
    flex: 1 1 50%;
    min-width: 0;
    display: flex;
}

.bento-grid__side {
    flex: 1 1 50%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bento-grid__cell {
    position: relative;
    overflow: hidden;
    background: #111;
    border-radius: 6px;
}

.bento-grid__cell--large {
    flex: 1;
    min-height: 512px;
}

.bento-grid__cell--large img,
.bento-grid__cell--top img,
.bento-grid__cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.bento-grid__cell--top {
    flex: 1 1 50%;
    min-height: 252px;
}

.bento-grid__cells-row {
    flex: 1 1 50%;
    display: flex;
    gap: 8px;
    min-height: 252px;
}

.bento-grid__cells-row .bento-grid__cell {
    flex: 1 1 50%;
    min-width: 0;
    min-height: 252px;
}

@media (max-width: 768px) {
    .bento-grid {
        flex-direction: column;
        min-height: 0;
    }
    
    .bento-grid__main,
    .bento-grid__side {
        flex: 1 1 100%;
    }
    
    .bento-grid__cell--large {
        min-height: 280px;
    }
    
    .bento-grid__cell--top {
        min-height: 200px;
    }
    
    .bento-grid__cells-row {
        flex-direction: row;
        min-height: 200px;
    }
    
    .bento-grid__cells-row .bento-grid__cell {
        min-height: 200px;
    }
}

/* Bento grid: 8 screenshots (staggered layout) */
.bento-grid__row {
    display: flex;
    gap: 8px;
    flex: 1 1 0;
    min-height: 100px;
}

.bento-grid__row--2 .bento-grid__cell {
    flex: 1 1 50%;
    min-width: 0;
}

.bento-grid__row--3 .bento-grid__cell {
    flex: 1 1 33.333%;
    min-width: 0;
}

.bento-grid--screenshots .bento-grid__side {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bento-grid--screenshots .bento-grid__row {
    flex: 1;
    min-height: 140px;
}

@media (max-width: 768px) {
    .bento-grid--screenshots {
        flex-direction: column;
    }
    
    .bento-grid--screenshots .bento-grid__cell--large {
        min-height: 220px;
    }
    
    .bento-grid--screenshots .bento-grid__row {
        min-height: 120px;
    }
}

/* Gallery cells: clickable */
.gallery-cell {
    cursor: pointer;
}

.gallery-cell img {
    transition: transform 0.25s ease;
}

.gallery-cell:hover img {
    transform: scale(1.03);
}

/* Screenshots gallery modal */
.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.gallery-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.gallery-modal__content {
    position: relative;
    z-index: 1;
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal__img {
    max-width: 95vw;
    max-height: 95vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 0 60px rgba(200, 50, 50, 0.3);
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-modal.is-open .gallery-modal__img {
    opacity: 1;
    transform: scale(1);
}

.gallery-modal__img.is-changing {
    opacity: 0;
    transform: scale(0.95);
}

.gallery-modal__close {
    position: absolute;
    top: -44px;
    right: 0;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    border-radius: 4px;
    z-index: 2;
    transition: background 0.2s ease;
}

.gallery-modal__close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.gallery-modal__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 80px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    border-radius: 4px;
    z-index: 2;
    transition: background 0.2s ease;
}

.gallery-modal__nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.gallery-modal__nav--prev {
    left: -60px;
}

.gallery-modal__nav--next {
    right: -60px;
}

@media (max-width: 768px) {
    .gallery-modal__nav {
        width: 44px;
        height: 60px;
        font-size: 28px;
    }
    
    .gallery-modal__nav--prev {
        left: 8px;
    }
    
    .gallery-modal__nav--next {
        right: 8px;
    }
    
    .gallery-modal__close {
        top: 8px;
        right: 8px;
    }
}

/* System Requirements Section */
.requirements-section {
    padding: 40px 0 50px;
    margin: 20px 0;
}

.requirements-section__title {
    color: #fff;
    font-size: 2em;
    margin-bottom: 25px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Macabre', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.requirements-table-wrap {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

.requirements-table {
    width: 100%;
    border-collapse: collapse;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.4) 100%);
    border-radius: 8px;
    overflow: hidden;
    box-shadow:
        0 0 15px rgba(193, 39, 45, 0.4),
        0 0 30px rgba(193, 39, 45, 0.3),
        0 0 50px rgba(193, 39, 45, 0.2),
        0 0 80px rgba(193, 39, 45, 0.1),
        inset 0 0 50px rgba(0, 0, 0, 0.3);
}

.requirements-table thead {
    background: rgba(193, 39, 45, 0.25);
}

.requirements-table th {
    color: #fff;
    font-size: 1em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(193, 39, 45, 0.5);
}

.requirements-table__param {
    width: 28%;
}

.requirements-table__min,
.requirements-table__rec {
    width: 36%;
}

.requirements-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.requirements-table tbody tr:last-child {
    border-bottom: none;
}

.requirements-table td {
    color: #ddd;
    font-size: 0.95em;
    padding: 12px 18px;
    vertical-align: top;
}

.requirements-table__param {
    color: #fff;
    font-weight: 500;
}

.requirements-table__rec-cell {
    color: #ccc;
}

@media (max-width: 768px) {
    .requirements-table th,
    .requirements-table td {
        padding: 10px 12px;
        font-size: 0.85em;
    }
}

/* FAQ Section */
.faq-section {
    padding: 40px 0 50px;
    margin: 20px 0;
}

.faq-section__title {
    color: #fff;
    font-size: 2em;
    margin-bottom: 25px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Macabre', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(193, 39, 45, 0.4);
    border-radius: 6px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item[open] {
    border-color: rgba(193, 39, 45, 0.6);
}

.faq-item__question {
    color: #fff;
    font-size: 1.05em;
    font-weight: 600;
    padding: 16px 48px 16px 18px;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.faq-item__question::-webkit-details-marker {
    display: none;
}

.faq-item__question::after {
    content: '';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #c1272d;
    transition: transform 0.25s ease;
}

.faq-item[open] .faq-item__question::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-item__question:hover {
    color: #c1272d;
}

.faq-item__answer {
    color: #ccc;
    font-size: 0.95em;
    line-height: 1.6;
    padding: 0 18px 18px 18px;
}

.faq-item__answer p {
    margin: 0 0 10px 0;
}

.faq-item__answer p:last-child {
    margin-bottom: 0;
}

.faq-item__answer a {
    color: #c1272d;
    text-decoration: underline;
}

.faq-item__answer a:hover {
    color: #fff;
}

/* Site Footer */
.site-footer {
    padding: 40px 20px 30px;
    margin-top: 20px;
    border-top: 1px solid rgba(193, 39, 45, 0.3);
}

.site-footer__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.site-footer__logo {
    margin-bottom: 20px;
}

.site-footer__logo a {
    display: inline-block;
}

.site-footer__logo img {
    max-width: 140px;
    height: auto;
    display: block;
}

.site-footer__description {
    color: #999;
    font-size: 0.9em;
    margin-bottom: 20px;
}

.site-footer__description p {
    margin: 0;
}

.site-footer__social {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.site-footer__social a {
    color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.site-footer__social a:hover {
    color: #c1272d;
}

.site-footer__social svg {
    display: block;
    width: 56px;
    height: 56px;
}

.site-footer__social img {
    display: block;
    object-fit: contain;
    width: 56px;
    height: 56px;
}

.site-footer__links {
    margin-bottom: 16px;
    font-size: 0.95em;
}

.site-footer__links a {
    color: #ccc;
    text-decoration: none;
}

.site-footer__links a:hover {
    color: #c1272d;
}

.site-footer__sep {
    color: #666;
    margin: 0 10px;
}

.site-footer__xsolla {
    font-size: 0.85em;
    color: #888;
    margin-bottom: 20px;
}

.site-footer__xsolla a {
    color: #888;
    text-decoration: none;
}

.site-footer__xsolla a:hover {
    color: #c1272d;
}

.site-footer__xsolla strong {
    color: #aaa;
}

.site-footer__ratings {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.site-footer__rating {
    display: inline-block;
}

.site-footer__rating--esrb {
    font-size: 1.5em;
    font-weight: bold;
    color: #999;
    padding: 8px 16px;
    border: 2px solid #666;
    border-radius: 4px;
}

.site-footer__rating--custom {
    width: 144px;
    height: 144px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}






