/**
 * RoboCat Casino - Main Stylesheet
 * ================================
 */

/* =============================================
   Global Styles & Reset
   ============================================= */
* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --global-gap: 16px;
}

a {
    color: #e5a749;
}

hr {
    display: none;
}

body, html {
    margin: 0;
    padding: 0;
    min-width: 375px;
    width: 100vw;
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #f3f3f3;
    color: #543e75;
}

main {
    flex: 1 1;
    min-width: 375px;
    width: 100vw;
    overflow: hidden;
}

/* =============================================
   Display Utilities
   ============================================= */
.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

/* Hidden utility (for GTM iframe) */
.gtm-hidden {
    display: none;
    visibility: hidden;
}

/* =============================================
   Grid System
   ============================================= */
.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*=col-] {
    padding-right: 0;
    padding-left: 0;
}

/* Column base styles */
.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto,
.col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto,
.col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto,
.col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto,
.col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.col-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}

.col-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}

.col-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.col-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.col-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.col-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.col-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}

.col-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

/* Order utilities */
.order-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}

.order-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
}

.order-0 { -webkit-box-ordinal-group: 1; -ms-flex-order: 0; order: 0; }
.order-1 { -webkit-box-ordinal-group: 2; -ms-flex-order: 1; order: 1; }
.order-2 { -webkit-box-ordinal-group: 3; -ms-flex-order: 2; order: 2; }
.order-3 { -webkit-box-ordinal-group: 4; -ms-flex-order: 3; order: 3; }
.order-4 { -webkit-box-ordinal-group: 5; -ms-flex-order: 4; order: 4; }
.order-5 { -webkit-box-ordinal-group: 6; -ms-flex-order: 5; order: 5; }
.order-6 { -webkit-box-ordinal-group: 7; -ms-flex-order: 6; order: 6; }
.order-7 { -webkit-box-ordinal-group: 8; -ms-flex-order: 7; order: 7; }
.order-8 { -webkit-box-ordinal-group: 9; -ms-flex-order: 8; order: 8; }
.order-9 { -webkit-box-ordinal-group: 10; -ms-flex-order: 9; order: 9; }
.order-10 { -webkit-box-ordinal-group: 11; -ms-flex-order: 10; order: 10; }
.order-11 { -webkit-box-ordinal-group: 12; -ms-flex-order: 11; order: 11; }
.order-12 { -webkit-box-ordinal-group: 13; -ms-flex-order: 12; order: 12; }

/* Offset utilities */
.offset-1 { margin-left: 8.333333%; }
.offset-2 { margin-left: 16.666667%; }
.offset-3 { margin-left: 25%; }
.offset-4 { margin-left: 33.333333%; }
.offset-5 { margin-left: 41.666667%; }
.offset-6 { margin-left: 50%; }
.offset-7 { margin-left: 58.333333%; }
.offset-8 { margin-left: 66.666667%; }
.offset-9 { margin-left: 75%; }
.offset-10 { margin-left: 83.333333%; }
.offset-11 { margin-left: 91.666667%; }

/* =============================================
   Typography
   ============================================= */
h1, h2, h3, h4, h5, h6 {
    line-height: 1;
}

h2, h3, h4, h5, h6 {
    color: #5300ca;
    padding-top: 24px;
    margin-bottom: 16px;
}

ol, p, ul {
    margin-bottom: 16px;
    line-height: 1.4;
}

ol, ul {
    padding-left: 20px;
    padding-right: 0;
}

/* RTL Support */
[dir="rtl"] ol,
[dir="rtl"] ul {
    padding-left: 0;
    padding-right: 20px;
}

[dir="rtl"] .header-button {
    margin-left: 0;
    margin-right: auto;
}

[dir="rtl"] .floating-button {
    margin-left: auto;
    margin-right: auto;
}

[dir="rtl"] .offset-1,
[dir="rtl"] .offset-2,
[dir="rtl"] .offset-3,
[dir="rtl"] .offset-4,
[dir="rtl"] .offset-5,
[dir="rtl"] .offset-6,
[dir="rtl"] .offset-7,
[dir="rtl"] .offset-8,
[dir="rtl"] .offset-9,
[dir="rtl"] .offset-10,
[dir="rtl"] .offset-11 {
    margin-left: 0;
}

[dir="rtl"] .offset-1 { margin-right: 8.333333%; }
[dir="rtl"] .offset-2 { margin-right: 16.666667%; }
[dir="rtl"] .offset-3 { margin-right: 25%; }
[dir="rtl"] .offset-4 { margin-right: 33.333333%; }
[dir="rtl"] .offset-5 { margin-right: 41.666667%; }
[dir="rtl"] .offset-6 { margin-right: 50%; }

[dir="rtl"] .mobile-menu-button {
    margin-left: 0;
    margin-right: auto;
}

[dir="rtl"] table {
    text-align: right;
}

h1 {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 0 5px #000;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
    font-weight: 500;
}

/* =============================================
   Container
   ============================================= */
.container {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
}

/* =============================================
   Header
   ============================================= */
.header {
    width: 100%;
    overflow: hidden;
    position: fixed;
    top: 0;
    color: #000;
    z-index: 100;
    background-color: #5300ca;
}

.header-content {
    display: flex;
    gap: 32px;
}

.header-logo {
    padding: 8px 0;
    display: flex;
}

.header-logo-image {
    object-fit: contain;
    object-position: center;
    width: 130px;
    aspect-ratio: 3.25;
}

.header-nav {
    flex: 1 1;
    display: flex;
    align-items: center;
}

.header-nav-link {
    white-space: nowrap;
    cursor: pointer;
    padding: 0 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
}

.header-nav-link:hover {
    color: #ffffff80;
}

.header-button {
    margin-left: auto;
    margin-right: 14px;
}

/* =============================================
   Mobile Menu
   ============================================= */
.mobile-menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    width: 50px;
    background-color: transparent;
    border: none;
    aspect-ratio: 1/1;
    margin-left: auto;
    color: #fff;
    cursor: pointer;
}

.mobile-nav {
    position: fixed;
    top: 50px;
    left: 0;
    gap: 16px;
    right: 0;
    padding: 24px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #5300ca;
    transition-property: transform, opacity;
    transition-duration: .3s;
}

.mobile-nav.hidden {
    pointer-events: none;
    opacity: 0;
    transform: translateY(-100%);
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
    overflow: hidden;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: var(--global-gap) 0;
    background-color: #000;
    color: #fff;
    padding-bottom: 0;
    border-radius: 8px;
    margin-top: 100px;
}

.hero-backdrop {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-backdrop img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 2;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--global-gap);
    padding-top: 200px;
    box-shadow: inset 0 0 200px 40px #121928;
}

.hero h1 {
    margin: 0;
    margin-bottom: 30px;
}

.hero h3 {
    margin-bottom: 24px;
    color: #fff;
    text-shadow: 0 0 5px #000;
}

/* =============================================
   Main Content - Images & Video
   ============================================= */
.main-content img,
.main-content video {
    width: 100%;
    display: inline-block;
    border-radius: 4px;
    margin: 24px 0;
    background-color: #5300ca;
    box-shadow: 0 0 30px #c9c9c9;
}

/* =============================================
   Buttons
   ============================================= */
.button {
    position: relative;
    z-index: 1;
    width: max-content;
    min-height: 38px;
    border: 1px solid #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    font-weight: 600;
    background-color: #ecfe00;
    min-width: 100px;
    overflow: hidden;
    text-transform: uppercase;
    transition-property: transform, box-shadow, background-color, color;
    transition-duration: .2s;
    box-shadow: 0 3px 12px 2px #2d0c0610;
    color: #000;
    border-radius: 38px;
    cursor: pointer;
}

.button:hover {
    background-color: #5300ca;
    color: #fff;
}

.button-secondary {
    background-color: #543e75;
    color: #fff;
    border: none;
}

.button-secondary:hover {
    background-color: #fff;
    color: #101827;
}

.button-big {
    padding: 0 24px;
    min-height: 42px;
    min-width: 140px;
}

/* =============================================
   Floating Button
   ============================================= */
.floating-button {
    position: sticky;
    bottom: 24px;
    z-index: 100;
    margin-right: auto;
    margin-bottom: 24px;
}

/* =============================================
   FAQ Section
   ============================================= */
.faq-section {
    --gap: 16px;
    display: flex;
    flex-wrap: wrap;
    padding: 40px 0;
}

.faq-title {
    font-size: 40px;
    line-height: 1;
    margin: 0;
}

.faq-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}

.faq-list {
    align-items: flex-start;
}

/* =============================================
   Accordion Component
   ============================================= */
.accordion {
    border-radius: 12px;
    background-color: #00000010;
    display: flex;
    flex-direction: column;
    transition-property: background-color, box-shadow;
    transition-duration: .2s;
    user-select: none;
    margin-bottom: 8px;
}

.accordion svg {
    font-size: 20px;
    flex: 0 0 20px;
    transform: rotateZ(-90deg);
    transition: transform .2s;
}

.accordion_active svg {
    transform: rotateZ(90deg);
}

.accordion_active {
    box-shadow: inset 0 0 16px rgba(0, 0, 0, .05);
}

.accordion:active {
    background-color: #00000005;
}

.accordion h3 {
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
    padding: 16px 24px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.accordion p {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    transition: max-height .3s, padding .3s;
}

.accordion_active p {
    padding-bottom: 16px;
    max-height: 1000px;
}

.accordion:last-of-type {
    margin-bottom: 24px;
}

.accordion-content {
    padding: 16px 24px;
    margin: 0;
}

.accordion-divider {
    height: 2px;
    background-color: #dbdbdb;
}

/* =============================================
   Partners Section
   ============================================= */
.partners-wrapper {
    position: relative;
    background-color: #00000010;
    border-radius: 4px;
    margin-bottom: 16px;
    overflow: hidden;
}

.partners {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 16px 0;
}

.partner {
    scroll-snap-align: center;
    flex: 0 0 200px;
    aspect-ratio: 2/1;
    padding: 16px;
    max-width: 180px;
}

.partner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Partners Navigation Buttons */
.overscroll-button {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 38px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #00000010;
    color: #5300ca;
    font-size: 20px;
    cursor: pointer;
    z-index: 1;
    backdrop-filter: blur(20px);
    transition-property: opacity;
    transition-duration: .2s;
}

.overscroll-button-hidden {
    opacity: 0;
    pointer-events: none;
}

.overscroll-button-start {
    left: 0;
}

.overscroll-button-end {
    right: 0;
}

/* Icon rotation for end button */
.overscroll-button-end svg {
    transform: rotateZ(180deg);
}

/* =============================================
   Section Layout
   ============================================= */
.section {
    display: flex;
    align-items: flex-start;
    padding: var(--global-gap) 0;
}

.section h3 {
    font-size: 20px;
    line-height: 1.1;
    padding-top: 16px;
}

.section img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .3);
    margin-bottom: 24px;
}

.section-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* =============================================
   Footer
   ============================================= */
.footer {
    padding: var(--global-gap) 0;
    overflow: hidden;
    width: 100%;
    background-color: #5300ca;
    color: #fff;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 25%;
}

.footer-main {
    flex: 1 1;
    display: flex;
    flex-direction: column;
}

.footer-copyright {
    opacity: .7;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

.footer-bottom {
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-link {
    width: 100%;
    aspect-ratio: 2/1;
    height: 50px;
    padding: 6px 12px;
    margin-bottom: 16px;
}

.footer-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* =============================================
   Tables
   ============================================= */
table {
    width: 100%;
    table-layout: fixed;
    overflow-wrap: break-word;
    border-spacing: 0;
    border-collapse: collapse;
    border: 2px solid #5300ca;
    border-radius: 8px;
    margin: 16px 0;
}

td, th {
    padding: 10px 12px;
    border: 1px solid #5300ca;
}

tr:first-child td,
tr:first-child th {
    background-color: #5300ca;
    color: #fff;
    font-weight: 600;
}

tr:nth-child(2n) {
    background-color: #f5f0fa;
}

tr:nth-child(2n+1):not(:first-child) {
    background-color: #fff;
}

/* =============================================
   Table Component
   ============================================= */
.table {
    width: 100%;
    overflow-x: auto;
    padding: var(--global-gap) 0;
}

.table-cell {
    min-height: 40px;
    display: flex;
    padding: 12px;
    max-width: 100%;
    overflow: hidden;
}

.table-head {
    font-weight: 500;
    background-color: #e9e9e9;
    border-radius: 8px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.table-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    color: #faf3c0;
}

.table-row:nth-child(odd) {
    background-color: #f8f8f8;
    border-radius: 8px;
}

/* =============================================
   XL Breakpoint (1200px+)
   ============================================= */
@media (min-width: 1200px) {
    /* CSS Variables */
    :root {
        --global-gap: 32px;
    }
    
    /* Display utilities */
    .d-xl-none {
        display: none !important;
    }
    
    .d-xl-block {
        display: block !important;
    }
    
    .d-xl-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    
    /* Grid columns */
    .col-xl {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    
    .col-xl-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }
    
    .col-xl-1 { -webkit-box-flex: 0; -ms-flex: 0 0 8.333333%; flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-xl-2 { -webkit-box-flex: 0; -ms-flex: 0 0 16.666667%; flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-xl-3 { -webkit-box-flex: 0; -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25%; }
    .col-xl-4 { -webkit-box-flex: 0; -ms-flex: 0 0 33.333333%; flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-xl-5 { -webkit-box-flex: 0; -ms-flex: 0 0 41.666667%; flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-xl-6 { -webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; }
    .col-xl-7 { -webkit-box-flex: 0; -ms-flex: 0 0 58.333333%; flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-xl-8 { -webkit-box-flex: 0; -ms-flex: 0 0 66.666667%; flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-xl-9 { -webkit-box-flex: 0; -ms-flex: 0 0 75%; flex: 0 0 75%; max-width: 75%; }
    .col-xl-10 { -webkit-box-flex: 0; -ms-flex: 0 0 83.333333%; flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-xl-11 { -webkit-box-flex: 0; -ms-flex: 0 0 91.666667%; flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-xl-12 { -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; }

    /* Order utilities */
    .order-xl-first { -webkit-box-ordinal-group: 0; -ms-flex-order: -1; order: -1; }
    .order-xl-last { -webkit-box-ordinal-group: 14; -ms-flex-order: 13; order: 13; }
    .order-xl-0 { -webkit-box-ordinal-group: 1; -ms-flex-order: 0; order: 0; }
    .order-xl-1 { -webkit-box-ordinal-group: 2; -ms-flex-order: 1; order: 1; }
    .order-xl-2 { -webkit-box-ordinal-group: 3; -ms-flex-order: 2; order: 2; }
    .order-xl-3 { -webkit-box-ordinal-group: 4; -ms-flex-order: 3; order: 3; }
    .order-xl-4 { -webkit-box-ordinal-group: 5; -ms-flex-order: 4; order: 4; }
    .order-xl-5 { -webkit-box-ordinal-group: 6; -ms-flex-order: 5; order: 5; }
    .order-xl-6 { -webkit-box-ordinal-group: 7; -ms-flex-order: 6; order: 6; }
    .order-xl-7 { -webkit-box-ordinal-group: 8; -ms-flex-order: 7; order: 7; }
    .order-xl-8 { -webkit-box-ordinal-group: 9; -ms-flex-order: 8; order: 8; }
    .order-xl-9 { -webkit-box-ordinal-group: 10; -ms-flex-order: 9; order: 9; }
    .order-xl-10 { -webkit-box-ordinal-group: 11; -ms-flex-order: 10; order: 10; }
    .order-xl-11 { -webkit-box-ordinal-group: 12; -ms-flex-order: 11; order: 11; }
    .order-xl-12 { -webkit-box-ordinal-group: 13; -ms-flex-order: 12; order: 12; }

    /* Offset utilities */
    .offset-xl-0 { margin-left: 0; }
    .offset-xl-1 { margin-left: 8.333333%; }
    .offset-xl-2 { margin-left: 16.666667%; }
    .offset-xl-3 { margin-left: 25%; }
    .offset-xl-4 { margin-left: 33.333333%; }
    .offset-xl-5 { margin-left: 41.666667%; }
    .offset-xl-6 { margin-left: 50%; }
    .offset-xl-7 { margin-left: 58.333333%; }
    .offset-xl-8 { margin-left: 66.666667%; }
    .offset-xl-9 { margin-left: 75%; }
    .offset-xl-10 { margin-left: 83.333333%; }
    .offset-xl-11 { margin-left: 91.666667%; }
    
    /* Typography */
    h1 {
        font-size: 40px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    h3 {
        font-size: 24px;
    }
    
    /* Main content images */
    .main-content img,
    .main-content video {
        margin: 24px 25%;
        max-width: 50%;
    }
    
    /* Footer */
    .footer-copyright {
        text-align: left;
    }
    
    [dir="rtl"] .footer-copyright {
        text-align: right;
    }
    
    /* Main */
    main {
        padding: 0 0 var(--global-gap);
    }
}

