/* ============================================
   BITZ.IO HOMEPAGE REPLICA — COMPLETE STYLES
   ============================================ */

/* ---- DESIGN TOKENS ---- */
:root {
    /* Colors */
    --base-background: #0d131c;
    --base-surface: #111923;
    --base-elements: #1a2230;
    --base-elements-hover: #19212c;
    --base-divider: #1a2230;

    /* Primary / Accent */
    --primary-gradient: linear-gradient(273.8deg, #840825 15.88%, #fb5b7d 98.99%);
    --primary-solid: #ff3939;
    --primary-hover: #ff3939;

    /* Text */
    --base-text-primary: #ffffff;
    --base-text-secondary: #9ba1b6;
    --base-text-on-color-bg: #ffffff;

    /* Status */
    --base-status-active: #3dca85;
    --base-status-warning: #ecbe47;
    --base-status-error: #e14e4e;

    /* Links */
    --primary-link: #2283f6;
    --primary-link-hover: #2283f6;

    /* Typography */
    --primary-font-family: "Noto Sans", sans-serif;
    --secondary-font-family: "Nunito Sans", sans-serif;

    /* Spacing */
    --spacing-x: 4px;
    --spacing-2x: 8px;
    --spacing-3x: 12px;
    --spacing-4x: 16px;
    --spacing-5x: 20px;
    --spacing-6x: 24px;
    --spacing-8x: 32px;
    --spacing-10x: 40px;
    --spacing-12x: 48px;

    /* Layout */
    --container-padding-desktop: 24px 60px;
    --container-padding-tablet: 16px 32px;
    --container-padding-mobile: 16px 16px;
    --header-height: 64px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 50%;
}

/* ---- GLOBAL RESET ---- */
*, *::before, *::after {
    box-sizing: border-box;
    outline: none;
}

body {
    margin: 0;
    background-color: var(--base-background);
    color: var(--base-text-primary);
    font-family: var(--secondary-font-family);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-size: inherit;
    font-weight: 700;
}

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: var(--base-text-primary);
    transition: all 0.3s ease;
}

button {
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    color: var(--base-text-primary);
    cursor: pointer;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
}

p {
    margin: 0 0 12px;
}

img {
    max-width: 100%;
    display: block;
}

/* ---- TYPOGRAPHY SCALE ---- */
.title1 {
    font-family: var(--primary-font-family);
    font-size: 2.25rem;
    line-height: 3rem;
}

.title6 {
    font-family: var(--primary-font-family);
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.subtitle3 {
    font-family: var(--secondary-font-family);
    font-size: 1rem;
    line-height: 1.375rem;
}

.body1 {
    font-family: var(--secondary-font-family);
    font-size: 1.125rem;
    line-height: 1.875rem;
}

.body3 {
    font-family: var(--secondary-font-family);
    font-size: 0.875rem;
    line-height: 1.5rem;
}

.body4 {
    font-family: var(--secondary-font-family);
    font-size: 0.75rem;
    line-height: 1.375rem;
}

.buttonTypo, .btn {
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--secondary-font-family);
    font-size: 0.875rem;
    line-height: 1.5rem;
}

.tagTypo {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    line-height: 0.75rem;
    font-family: var(--secondary-font-family);
}

/* ---- UTILITY CLASSES ---- */
.container-padding {
    padding: var(--container-padding-desktop);
}

.radiusCard {
    border-radius: var(--radius-lg);
}

.radiusButton {
    border-radius: var(--radius-md);
}

.radiusBitz {
    border-radius: var(--radius-xl);
}

@media (max-width: 1279px) {
    .container-padding {
        padding: var(--container-padding-tablet);
    }
    .title1 { font-size: 2rem; line-height: 2.625rem; }
    .title6 { font-size: 1.125rem; line-height: 1.5rem; }
    .body1 { font-size: 1.125rem; line-height: 1.625rem; }
}

@media (max-width: 767px) {
    .container-padding {
        padding: var(--container-padding-mobile);
    }
    .title1 { font-size: 1.75rem; line-height: 2.25rem; }
    .title6 { font-size: 1rem; line-height: 1.375rem; }
    .body1 { font-size: 1rem; line-height: 1.5rem; }
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 998;
    height: var(--header-height);
}

.header__container {
    position: relative;
    height: 100%;
}

.header__background {
    position: absolute;
    inset: 0;
    background-color: rgba(13, 19, 28, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background-color 0.3s ease;
}

.header__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: var(--spacing-6x);
}

/* Logo */
.header__logo {
    flex-shrink: 0;
}

.logo__link {
    display: block;
}

.logo__image {
    height: 36px;
    width: auto;
}

.logo__image--mobile {
    display: none;
}

/* Casino/Sport Toggle */
.header__switch {
    display: flex;
    background: var(--base-elements);
    border-radius: var(--radius-md);
    padding: 3px;
    gap: 2px;
}

.switch-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-family: var(--secondary-font-family);
    color: var(--base-text-secondary);
    transition: all 0.3s ease;
}

.switch-btn--active {
    background: var(--primary-solid);
    color: var(--base-text-on-color-bg);
}

.switch-btn:hover:not(.switch-btn--active) {
    color: var(--base-text-primary);
}

.switch-btn__icon {
    font-size: 14px;
}

/* Auth Buttons */
.header__auth {
    display: flex;
    align-items: center;
    gap: var(--spacing-3x);
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    line-height: 1.5rem;
    font-family: var(--secondary-font-family);
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}

.btn--primary {
    background: var(--primary-gradient);
    color: var(--base-text-on-color-bg);
    border: none;
}

.btn--primary:hover {
    filter: brightness(1.15);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 57, 57, 0.3);
}

.btn--secondary {
    background: transparent;
    color: var(--base-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--secondary:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.btn--sm {
    padding: 6px 14px;
    font-size: 0.75rem;
}

.btn__icon {
    width: 16px;
    height: 16px;
}

/* ============================================
   MOBILE BOTTOM NAVIGATION
   ============================================ */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--base-surface);
    border-top: 1px solid var(--base-divider);
    padding: 8px 16px;
    padding-bottom: max(8px, env(safe-area-inset-bottom));
}

.bottom-nav__menu {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.bottom-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--base-text-secondary);
    transition: color 0.2s;
}

.bottom-nav__item:hover {
    color: var(--base-text-primary);
}

.bottom-nav__label {
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--secondary-font-family);
}

.bottom-nav__icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Revolver Switcher (center wheel) */
.bottom-nav__item--center {
    margin-top: -28px;
    position: relative;
}

.revolver-switcher {
    position: relative;
    width: 64px;
    height: 64px;
}

.revolver-switcher__outer {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.revolver-switcher__inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--base-surface);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.revolver-switcher__svg {
    position: absolute;
    inset: 3px;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    animation: revolver-rotate 12s linear infinite;
}

.revolver-switcher__center {
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background: var(--primary-solid);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    z-index: 2;
    transition: background-color 0.5s;
}

@keyframes revolver-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    padding-top: var(--spacing-4x);
    padding-bottom: var(--spacing-4x);
}

.heroSwiper {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.hero-slide {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 6;
    min-height: 220px;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.hero-slide__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.hero-slide:hover .hero-slide__img {
    transform: scale(1.03);
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 19, 28, 0.6) 0%, rgba(13, 19, 28, 0.1) 50%, rgba(13, 19, 28, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
    border-radius: var(--radius-xl);
}

.hero-slide__content {
    position: relative;
    z-index: 2;
    max-width: 55%;
    padding: var(--spacing-12x);
}

.hero-slide__title {
    font-family: var(--primary-font-family);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-3x);
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-slide__subtitle {
    font-family: var(--secondary-font-family);
    font-size: 1.125rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: var(--spacing-6x);
    color: #fff;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

.hero-slide__cta {
    display: inline-block;
    padding: 12px 32px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-family: var(--secondary-font-family);
    color: #fff;
    transition: all 0.3s ease;
}

.hero-slide:hover .hero-slide__cta {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Swiper Navigation Overrides */
.hero-btn-prev,
.hero-btn-next {
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(8px);
    border-radius: var(--radius-md) !important;
    color: #fff !important;
    transition: all 0.3s ease;
}

.hero-btn-prev:hover,
.hero-btn-next:hover {
    background: rgba(0, 0, 0, 0.7) !important;
}

.hero-btn-prev::after,
.hero-btn-next::after {
    font-size: 14px !important;
    font-weight: 700;
}

.hero-pagination {
    bottom: 16px !important;
}

.hero-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 1279px) {
    .hero-slide__title {
        font-size: 1.75rem;
    }
    .hero-slide__subtitle {
        font-size: 1rem;
    }
    .hero-slide__content {
        padding: var(--spacing-8x);
    }
}

@media (max-width: 767px) {
    .hero-slide {
        aspect-ratio: 16 / 9;
        min-height: 180px;
    }
    .hero-slide__title {
        font-size: 1.25rem;
    }
    .hero-slide__subtitle {
        font-size: 0.875rem;
        margin-bottom: var(--spacing-4x);
    }
    .hero-slide__content {
        max-width: 70%;
        padding: var(--spacing-6x);
    }
    .hero-slide__cta {
        padding: 8px 20px;
        font-size: 0.75rem;
    }
    .hero-btn-prev,
    .hero-btn-next {
        display: none !important;
    }
}

/* ============================================
   GAMES CATEGORIES
   ============================================ */
.games-categories {
    padding-top: 0;
    padding-bottom: var(--spacing-6x);
}

.categories__scroll {
    display: flex;
    gap: var(--spacing-2x);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
}

.categories__scroll::-webkit-scrollbar {
    display: none;
}

.category-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--base-elements);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    font-family: var(--secondary-font-family);
    color: var(--base-text-secondary);
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.category-chip:hover {
    background: var(--base-elements-hover);
    color: var(--base-text-primary);
    border-color: rgba(255, 255, 255, 0.1);
}

.category-chip--active {
    background: var(--primary-solid);
    color: #fff;
    border-color: transparent;
}

.category-chip__icon {
    font-size: 14px;
}

/* ============================================
   GAME SECTIONS
   ============================================ */
.game-section {
    padding-top: 0;
    padding-bottom: var(--spacing-8x);
}

.game-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-4x);
}

.game-section__title {
    font-family: var(--primary-font-family);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.75rem;
}

.game-section__nav {
    display: flex;
    gap: 0;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--base-elements);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--base-text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-arrow--prev {
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.nav-arrow--next {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.nav-arrow:hover {
    background: var(--base-elements-hover);
    border-color: rgba(255, 255, 255, 0.2);
}

.nav-arrow::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
}

.nav-arrow--prev::after {
    transform: rotate(135deg);
}

.nav-arrow--next::after {
    transform: rotate(-45deg);
}

.nav-arrow.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Game card swiper */
.game-swiper {
    overflow: visible !important;
}

.game-swiper .swiper-slide {
    height: auto;
}

/* ---- GAME CARD ---- */
.game-card {
    display: block;
    background: var(--base-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.game-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.game-card__thumbnail {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: var(--base-elements);
}

.game-card__thumb-bg {
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

.game-card__thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.game-card:hover .game-card__thumb-bg,
.game-card:hover .game-card__thumb-img {
    transform: scale(1.05);
}

.game-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--secondary-font-family);
}

.game-card__badge--new {
    background: var(--primary-solid);
    color: #fff;
}

.game-card__badge--hot {
    background: var(--base-status-warning);
    color: #000;
}

.game-card__badge--live {
    background: var(--base-status-error);
    color: #fff;
}

.game-card__info {
    padding: var(--spacing-3x);
}

.game-card__name {
    font-size: 0.8125rem;
    font-weight: 600;
    font-family: var(--secondary-font-family);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.game-card__provider {
    font-size: 0.6875rem;
    color: var(--base-text-secondary);
    font-family: var(--secondary-font-family);
}

/* Game thumbnail gradient backgrounds */
.tb-gradient-1 { background: linear-gradient(135deg, #1a0a2e, #840825, #fb5b7d); }
.tb-gradient-2 { background: linear-gradient(135deg, #0a1628, #1a3a5c, #2283f6); }
.tb-gradient-3 { background: linear-gradient(135deg, #1a0a0a, #4a1525, #ff6b6b); }
.tb-gradient-4 { background: linear-gradient(135deg, #0a1a0a, #1a4a2a, #3dca85); }
.tb-gradient-5 { background: linear-gradient(135deg, #1a1a0a, #4a4a15, #ecbe47); }
.tb-gradient-6 { background: linear-gradient(135deg, #1a0a2e, #2d1b4e, #b664dc); }
.tb-gradient-7 { background: linear-gradient(135deg, #0a1a2e, #154a4a, #4e9be1); }
.tb-gradient-8 { background: linear-gradient(135deg, #2e0a0a, #4a1a1a, #e14e4e); }

@media (max-width: 767px) {
    .game-section__title {
        font-size: 1rem;
    }
}

/* ============================================
   WINNERS SECTION
   ============================================ */
.winners-section {
    padding-top: 0;
    padding-bottom: var(--spacing-6x);
}

.winners__marquee {
    overflow: hidden;
    background: var(--base-surface);
    border-radius: var(--radius-md);
    padding: var(--spacing-3x) 0;
    position: relative;
}

.winners__marquee::before,
.winners__marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 1;
    pointer-events: none;
}

.winners__marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--base-surface), transparent);
}

.winners__marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--base-surface), transparent);
}

.winners__track {
    display: flex;
    gap: var(--spacing-6x);
    animation: marquee-scroll 30s linear infinite;
    padding: 0 var(--spacing-6x);
}

.winners__track:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.winner-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-3x);
    white-space: nowrap;
    flex-shrink: 0;
}

.winner-item__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.winner-item__info {
    display: flex;
    flex-direction: column;
}

.winner-item__name {
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--secondary-font-family);
}

.winner-item__amount {
    font-size: 0.6875rem;
    color: var(--base-status-active);
    font-weight: 600;
    font-family: var(--secondary-font-family);
}

/* ============================================
   PROVIDERS SECTION
   ============================================ */
.providers-section {
    padding-top: 0;
    padding-bottom: var(--spacing-10x);
}

.providers__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-4x);
}

.providers__title {
    font-family: var(--primary-font-family);
    font-size: 1.25rem;
    font-weight: 700;
}

.providers__grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: var(--spacing-2x);
}

.provider-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-5x);
    background: var(--base-elements);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--secondary-font-family);
    color: var(--base-text-secondary);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.provider-card:hover {
    background: var(--base-elements-hover);
    color: var(--base-text-primary);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 1279px) {
    .providers__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .providers__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .provider-card {
        padding: var(--spacing-3x);
        font-size: 0.625rem;
    }
}

/* ============================================
   CONTENT BLOCKS
   ============================================ */
.content-block {
    padding-top: 0;
    padding-bottom: var(--spacing-8x);
}

.content-block--alt {
    padding-bottom: var(--spacing-10x);
}

.content-block__card {
    background: var(--base-surface);
    border-radius: var(--radius-xl);
    padding: var(--spacing-10x);
}

.content-block__title {
    font-family: var(--primary-font-family);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-6x);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-block__card p {
    font-family: var(--secondary-font-family);
    font-size: 1rem;
    line-height: 1.75rem;
    color: var(--base-text-secondary);
    margin-bottom: var(--spacing-4x);
}

.content-block__card p:last-child {
    margin-bottom: 0;
}

.content-block__card p strong {
    color: var(--base-text-primary);
}

@media (max-width: 767px) {
    .content-block__card {
        padding: var(--spacing-6x);
    }
    .content-block__title {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-4x);
    }
    .content-block__card p {
        font-size: 0.875rem;
        line-height: 1.5rem;
    }
}

/* ============================================
   ABOUT US CAROUSEL
   ============================================ */
.about-section {
    padding-top: 0;
    padding-bottom: var(--spacing-10x);
}

.about__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-4x);
}

.about__title {
    font-family: var(--primary-font-family);
    font-size: 1.25rem;
    font-weight: 700;
}

.about__nav {
    display: flex;
    gap: 0;
}

.aboutSwiper {
    overflow: visible !important;
}

.about-card {
    background: var(--base-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.about-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.about-card__image {
    width: 100%;
    aspect-ratio: 16 / 10;
}

.about-card__image--1 { background: linear-gradient(135deg, #840825, #fb5b7d); }
.about-card__image--2 { background: linear-gradient(135deg, #0a1628, #2283f6); }
.about-card__image--3 { background: linear-gradient(135deg, #1a0a2e, #b664dc); }
.about-card__image--4 { background: linear-gradient(135deg, #0a1a0a, #3dca85); }
.about-card__image--5 { background: linear-gradient(135deg, #1a1a0a, #ecbe47); }

.about-card__title {
    font-family: var(--primary-font-family);
    font-size: 1rem;
    font-weight: 700;
    padding: var(--spacing-4x) var(--spacing-4x) var(--spacing-x);
}

.about-card__desc {
    font-size: 0.8125rem;
    color: var(--base-text-secondary);
    line-height: 1.5;
    padding: 0 var(--spacing-4x) var(--spacing-4x);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--base-surface);
    border-top: 1px solid var(--base-divider);
    padding-top: var(--spacing-10x);
    padding-bottom: var(--spacing-6x);
}

.footer__container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer__brand {
    margin-bottom: var(--spacing-8x);
}

.footer__logo {
    display: inline-block;
    margin-bottom: var(--spacing-4x);
}

.footer__logo img {
    height: 28px;
    width: auto;
}

.footer__desc {
    font-size: 0.875rem;
    color: var(--base-text-secondary);
    max-width: 500px;
    line-height: 1.5;
    margin-bottom: var(--spacing-6x);
}

.footer__social {
    margin-bottom: var(--spacing-6x);
}

.footer__social-label {
    display: block;
    font-size: 0.875rem;
    font-family: var(--secondary-font-family);
    margin-bottom: var(--spacing-3x);
    color: var(--base-text-secondary);
}

.footer__social-list {
    display: flex;
    gap: var(--spacing-3x);
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--base-elements);
    border-radius: var(--radius-md);
    color: var(--base-text-secondary);
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    background: var(--primary-solid);
    color: #fff;
    transform: translateY(-2px);
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-8x);
    margin-bottom: var(--spacing-8x);
}

.footer__link-title {
    font-family: var(--secondary-font-family);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: var(--spacing-4x);
    text-transform: uppercase;
}

.footer__link-list li {
    margin-bottom: var(--spacing-2x);
}

.footer__link-list a {
    font-size: 0.8125rem;
    color: var(--base-text-secondary);
    font-family: var(--secondary-font-family);
    transition: color 0.2s;
}

.footer__link-list a:hover {
    color: var(--base-text-primary);
    text-decoration: underline;
}

.footer__bottom {
    border-top: 1px solid var(--base-divider);
    padding-top: var(--spacing-6x);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2x);
}

.footer__license p {
    font-size: 0.75rem;
    color: var(--base-text-secondary);
    margin: 0;
}

.footer__copyright {
    font-size: 0.75rem;
    color: var(--base-text-secondary);
    font-family: var(--secondary-font-family);
}

@media (max-width: 767px) {
    .footer__links {
        grid-template-columns: 1fr;
        gap: var(--spacing-6x);
    }
    .footer__brand {
        margin-bottom: var(--spacing-6x);
    }
}

/* ============================================
   RESPONSIVE: HEADER
   ============================================ */

/* Mobile: header adjustments */
@media (max-width: 767px) {
    .header__switch {
        display: none;
    }

    .btn--login span {
        display: none;
    }

    .btn--login {
        padding: 8px 12px;
    }

    .btn--signup {
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    .logo__image--desktop {
        display: none;
    }

    .logo__image--mobile {
        display: block;
        height: 28px;
    }

    .bottom-nav {
        display: block;
    }

    body {
        padding-bottom: 80px;
    }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   LOADING SKELETON (simplified)
   ============================================ */
.skeleton {
    background: linear-gradient(90deg, var(--base-elements) 25%, var(--base-elements-hover) 50%, var(--base-elements) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
    border-radius: var(--radius-md);
}

@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ============================================
   SWIPER CUSTOMIZATION
   ============================================ */
.swiper {
    --swiper-navigation-size: 20px;
    --swiper-navigation-color: #fff;
}

.swiper-button-next,
.swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    background: var(--base-elements);
    border-radius: var(--radius-md);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--base-elements-hover);
}

/* ============================================
   MOBILE: Collapse some sections on small screens
   ============================================ */
@media (max-width: 480px) {
    .hero-slide__content {
        padding: var(--spacing-4x);
        max-width: 80%;
    }
}
