/* ============================================
   MUTHUTHAN.COM — Homepage Premium CSS
   Dark Fantasy Medieval Theme
   ============================================ */

/* ===== DESIGN TOKENS ===== */
:root {
    --gold: #c9a84c;
    --gold-light: #f0d080;
    --gold-dark: #8a6a1e;
    --crimson: #c0392b;
    --crimson-glow: #e74c3c;
    --purple: #7b2ff7;
    --purple-glow: #9d5cff;
    --bg-dark: #050510;
    --bg-card: rgba(12, 10, 30, 0.85);
    --bg-glass: rgba(255, 255, 255, 0.05);
    --text-primary: #e8d5b0;
    --text-muted: #8a7a65;
    --text-light: #f5ead0;
    --border-gold: rgba(201, 168, 76, 0.3);
    --nav-h: 70px;
    --container: 1200px;
    --radius: 12px;
    --transition: 0.3s ease;
    --font-heading: 'Lora', serif;
    --font-body: 'Be Vietnam Pro', sans-serif;
    --font-accent: 'Cinzel', serif;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* ===== CONTAINER ===== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #1a0f00;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.6);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.btn--nav-auth {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #1a0f00;
    padding: 9px 20px;
    font-size: 0.85rem;
    box-shadow: 0 2px 12px rgba(201, 168, 76, 0.3);
}

.btn--nav-auth:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.5);
}

.btn--auth-hero {
    background: linear-gradient(135deg, #1a0f00, #2d1a05);
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 14px 32px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}

.btn--auth-hero:hover {
    background: var(--gold);
    color: #1a0f00;
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.6);
    transform: translateY(-2px);
}

.btn--store {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    padding: 10px 18px;
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
}

.btn--store:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold);
    color: var(--gold);
}

.btn--apk {
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid var(--border-gold);
    color: var(--gold);
}

.btn--apk:hover {
    background: var(--gold);
    color: #1a0f00;
}

.btn--large {
    padding: 16px 40px;
    font-size: 1.05rem;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader__inner {
    text-align: center;
}

.preloader__logo {
    width: 80px;
    margin: 0 auto 20px;
    animation: pulse 1.5s ease infinite;
}

.preloader__bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 12px;
}

.preloader__fill {
    height: 100%;
    width: 0;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    animation: loadBar 1.5s ease forwards;
}

.preloader__text {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

@keyframes loadBar {
    to {
        width: 100%;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: rgba(5, 5, 16, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-gold);
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(5, 5, 16, 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav__logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.nav__logo-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 1px;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 auto;
}

.nav__link {
    display: block;
    padding: 8px 14px;
    font-size: 0.88rem;
    color: var(--text-muted);
    border-radius: 6px;
    transition: all var(--transition);
    letter-spacing: 0.3px;
}

.nav__link:hover,
.nav__link.active {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
}

.nav__actions {
    flex-shrink: 0;
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav__burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__burger.open span:nth-child(2) {
    opacity: 0;
}

.nav__burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav__mobile {
    display: none;
    flex-direction: column;
    background: rgba(5, 5, 16, 0.98);
    border-top: 1px solid var(--border-gold);
    padding: 16px 24px 24px;
}

.nav__mobile a {
    padding: 12px 0;
    color: var(--text-primary);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color var(--transition);
}

.nav__mobile a:hover {
    color: var(--gold);
}

.nav__mobile .mobile-auth-link {
    color: var(--gold);
    font-weight: 600;
    border: none;
}

.nav__mobile.open {
    display: flex;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 5, 16, 0.5) 0%, rgba(5, 5, 16, 0.3) 50%, rgba(5, 5, 16, 0.95) 100%);
}

/* Particles */
.hero__particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0;
    animation: floatUp var(--dur, 6s) var(--delay, 0s) ease-in infinite;
}

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(100%) scale(0);
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.1;
    }

    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(1);
    }
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 800px;
    animation: heroFadeIn 1s ease 0.5s both;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.hero__badge {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--gold);
    border: 1px solid var(--border-gold);
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    background: rgba(201, 168, 76, 0.08);
    backdrop-filter: blur(10px);
}

.hero__title {
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 16px;
}

.hero__title-mu {
    display: block;
    font-size: clamp(5rem, 12vw, 10rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 0 30px rgba(201, 168, 76, 0.4));
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero__title-name {
    display: block;
    font-size: clamp(1.5rem, 4vw, 3.5rem);
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-top: -8px;
}

.hero__tagline {
    color: var(--text-muted);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 28px;
}

.hero__server-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.server-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.server-stat__label {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.server-stat__value {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 700;
}

.server-stat__value.online {
    color: #2ecc71;
}

.server-stat__sep {
    color: var(--border-gold);
    font-size: 1.2rem;
}

.hero__buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hero__download-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero__scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
    animation: scrollHintBounce 2s ease infinite;
    cursor: pointer;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
}

@keyframes scrollHintBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ===== SECTIONS ===== */
.section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.section__bg-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
}

.section--news {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #080620 100%);
}

.section--characters {
    background: linear-gradient(180deg, #080620 0%, #050510 100%);
}

.section--gallery {
    background: linear-gradient(180deg, #050510 0%, #0a0518 100%);
}

.section--community {
    background: linear-gradient(180deg, #0a0518 0%, var(--bg-dark) 100%);
}

.section__header {
    text-align: center;
    margin-bottom: 56px;
}

.section__eyebrow {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-light);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section__line {
    width: 60px;
    height: 3px;
    margin: 0 auto 16px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section__subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ===== NEWS ===== */
.newsSwiper {
    margin-bottom: 40px;
    border-radius: var(--radius);
    overflow: hidden;
}

.news-banner-empty {
    height: 280px;
    background: linear-gradient(135deg, #0d0b25, #1a0d30);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-banner-empty__inner {
    text-align: center;
}

.news-banner-empty__inner span {
    font-size: 3rem;
    display: block;
    margin-bottom: 12px;
}

.news-banner-empty__inner p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.news-block {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.news-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-gold);
    background: rgba(0, 0, 0, 0.3);
}

.news-tab {
    flex: 1;
    padding: 14px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.88rem;
    transition: all var(--transition);
    position: relative;
    font-weight: 500;
}

.news-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.news-tab.active {
    color: var(--gold);
}

.news-tab.active::after {
    transform: scaleX(1);
}

.news-tab:hover {
    color: var(--text-primary);
}

.news-list {
    padding: 8px 0;
    min-height: 80px;
}

.news-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.news-list li:last-child {
    border-bottom: none;
}

.news-empty {
    padding: 32px 24px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.news-viewall {
    display: block;
    text-align: center;
    padding: 14px;
    color: var(--gold);
    font-size: 0.88rem;
    border-top: 1px solid var(--border-gold);
    transition: background var(--transition);
}

.news-viewall:hover {
    background: rgba(201, 168, 76, 0.08);
}

/* ===== CHARACTERS & GALLERY WRAPPER ===== */
.characters-gallery-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.characters-gallery-wrapper>.section {
    flex: 1;
    width: 50%;
    min-width: 300px;
}

@media (max-width: 1024px) {
    .characters-gallery-wrapper>.section {
        width: 100%;
        flex: none;
    }
}

/* ===== CHARACTERS ===== */
.charSwiper {
    padding: 0 0 60px;
}

.char-card {
    position: relative;
    height: 290px;
    overflow: hidden;
    border-radius: 0;
}

.char-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    transition: transform 0.6s ease;
}

.charSwiper .swiper-slide:hover .char-card__bg {
    transform: scale(1.05);
}

.char-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 5, 16, 0.1) 0%, rgba(5, 5, 16, 0.5) 40%, rgba(5, 5, 16, 0.97) 100%);
}

.char-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.char-card__class-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.char-card__name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 2px;
}

.char-card__desc {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.4;
    max-width: 100%;
}

.char-stats {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 200px;
}

.char-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.char-stat label {
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    min-width: 30px;
}

.char-stat__bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.char-stat__fill {
    height: 100%;
    width: var(--v);
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    border-radius: 2px;
    transition: width 1s ease;
}

.char-card__btn {
    display: inline-block;
    padding: 6px 16px;
    background: none;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all var(--transition);
    align-self: flex-start;
}

.char-card__btn:hover {
    background: var(--gold);
    color: #1a0f00;
}

/* Thumb Swiper */
.charThumbSwiper {
    margin-top: -20px;
    padding: 20px 0;
}

.char-thumb {
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    opacity: 0.5;
}

.char-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.charThumbSwiper .swiper-slide-thumb-active .char-thumb {
    border-color: var(--gold);
    opacity: 1;
}

.char-thumb:hover {
    opacity: 0.8;
}

/* Swiper customization */
.swiper-button-prev--char,
.swiper-button-next--char {
    color: var(--gold) !important;
}

.swiper-button-prev--char::after,
.swiper-button-next--char::after {
    font-size: 24px !important;
}

.swiper-pagination--char .swiper-pagination-bullet {
    background: var(--gold);
}

/* ===== GALLERY ===== */
.gallerySwiper {
    padding: 0 0 50px;
}

.gallery-item {
    height: 400px;
    overflow: hidden;
    border-radius: var(--radius);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallerySwiper .swiper-slide:hover .gallery-item img {
    transform: scale(1.05);
}

.swiper-button-prev--gallery,
.swiper-button-next--gallery {
    color: var(--gold) !important;
}

.swiper-pagination--gallery .swiper-pagination-bullet {
    background: var(--gold);
}

/* ===== COMMUNITY ===== */
.community-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.community-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    transition: all var(--transition);
    backdrop-filter: blur(10px);
}

.community-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.community-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.community-card__icon svg {
    width: 28px;
    height: 28px;
}

.community-card--fb .community-card__icon {
    background: rgba(24, 119, 242, 0.2);
    color: #1877f2;
}

.community-card--yt .community-card__icon {
    background: rgba(255, 0, 0, 0.2);
    color: #ff0000;
}

.community-card--tk .community-card__icon {
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
}

.community-card--group .community-card__icon {
    background: rgba(24, 119, 242, 0.15);
    color: #1877f2;
}

.community-card__text h3 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.community-card__text p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.community-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #0d0b25, #1a0d30);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
}

.community-cta h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.community-cta p {
    color: var(--text-muted);
    margin-bottom: 28px;
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    padding: 80px 0 0;
    background: #030310;
}

.footer__top-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer__logo {
    width: 60px;
    margin-bottom: 16px;
}

.footer__name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.footer__brand p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer__auth-btn {
    font-size: 0.85rem;
    padding: 10px 20px;
}

.footer__links-col h4,
.footer__social-col h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer__links-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links-col ul a {
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: color var(--transition);
}

.footer__links-col ul a:hover {
    color: var(--gold);
}

.footer__social-links {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
}

.footer__social-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    border: 1px solid var(--border-gold);
}

.footer__social-btn svg {
    width: 18px;
    height: 18px;
}

.footer__social-btn--fb {
    color: #1877f2;
}

.footer__social-btn--yt {
    color: #ff0000;
}

.footer__social-btn--tk {
    color: var(--text-light);
}

.footer__social-btn:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
}

.footer__download {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__dl-btn {
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    color: var(--text-muted);
    font-size: 0.82rem;
    transition: all var(--transition);
}

.footer__dl-btn:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
}

.footer__bottom {
    border-top: 1px solid var(--border-gold);
    padding: 24px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer__bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer__disclaimer {
    font-size: 0.72rem !important;
    opacity: 0.5;
}

/* ===== FLOAT SIDEBAR ===== */
.float-sidebar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.float-sidebar.visible {
    opacity: 1;
    visibility: visible;
}

.float-btn {
    width: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 10px 4px;
    background: rgba(5, 5, 16, 0.9);
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--text-muted);
    font-size: 0.6rem;
    letter-spacing: 0.5px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.float-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: scale(1.08);
}

.float-btn--auth {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
}

.float-btn--top:hover {
    background: rgba(201, 168, 76, 0.15);
}

/* ===== SCROLL ANIMATION ===== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer__brand {
        grid-column: 1/-1;
    }

    .community-grid {
        grid-template-columns: 1fr;
    }

    .float-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-h: 60px;
    }

    .nav__list,
    .nav__actions {
        display: none;
    }

    .nav__burger {
        display: flex;
    }

    .hero {
        height: 100svh;
    }

    .hero__title-mu {
        font-size: clamp(4rem, 18vw, 7rem);
    }

    .hero__download-row {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .char-card {
        height: 500px;
    }

    .char-card__content {
        padding: 24px;
    }

    .gallery-item {
        height: 250px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 70px 0;
    }

    .charThumbSwiper {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero__badge {
        font-size: 0.65rem;
        padding: 5px 14px;
        letter-spacing: 1.5px;
    }

    .hero__server-info {
        gap: 10px;
    }

    .community-cta {
        padding: 40px 20px;
    }
}