/* ===== CSS ПЕРЕМЕННЫЕ (ЗОЛОТАЯ ТЕМА) ===== */
:root {
    --color-bg: #111111;
    --color-border-mid: #424242;
    --color-border: #323232;
    --color-dim: #797979;
    --color-muted: #c5c5c5;
    --color-surface: #1f1f1f;
    --color-text: #ffffff;
    --color-primary: #ffd700;
    --color-primary-rgb: 255, 215, 0;
    --color-primary-dark: #e6b800;
    --color-primary-light: #ffe44d;
    --color-error: #ff4d4d;
    --container-max: min(92vw, 3000px);
    --container-pad: clamp(15px, 3vw, 80px);
    --font-primary: 'Inter', sans-serif;
    --focus-shadow: 0 0 0 2px rgba(var(--color-primary-rgb), 0.3);
    --fs-accordion-c: clamp(14px, 2vw, 23px);
    --fs-accordion: clamp(17px, 2vw, 30px);
    --fs-body: clamp(12px, 2.35vw, 26px);
    --fs-btn: clamp(14px, 1vw, 20px);
    --fs-footer: clamp(17px, 1.3vw, 22px);
    --fs-form: clamp(20px, 1.25vw, 25px);
    --fs-nav: clamp(14px, 1.05vw, 22px);
    --fs-title: clamp(25px, 5vw, 64px);
    --glass-bg: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.18) 50%, rgba(0, 0, 0, 0.16) 100%),
                linear-gradient(180deg, rgba(255, 215, 0, 0.07) 0%, rgba(255, 215, 0, 0.04) 50%, rgba(255, 215, 0, 0.03) 100%);
    --glass-blur: blur(6px) saturate(150%) contrast(110%);
    --glass-border: 1px solid rgba(255, 215, 0, 0.12);
    --glass-shadow: 0 6px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 215, 0, 0.05);
    --hover-bg: rgba(255, 215, 0, 0.08);
    --intro-h: clamp(560px, 55vw, 960px);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --section-gap: clamp(80px, 8vw, 180px);
    --transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
}

/* ===== ЦВЕТ ВЫДЕЛЕНИЯ ТЕКСТА (ЖЁЛТЫЙ) ===== */
::selection {
    background-color: var(--color-primary);
    color: #111111;
    text-shadow: none;
}
::-moz-selection {
    background-color: var(--color-primary);
    color: #111111;
    text-shadow: none;
}
input::selection,
textarea::selection {
    background-color: var(--color-primary);
    color: #111111;
}
input::-moz-selection,
textarea::-moz-selection {
    background-color: var(--color-primary);
    color: #111111;
}

/* ===== БАЗОВЫЕ СТИЛИ ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    font-size: var(--fs-body);
    line-height: 1.5;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    width: 100%;
}

/* ===== АНИМАЦИИ ===== */
.element-animation {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.8s ease;
    will-change: opacity, transform, filter;
}
.element-animation.element-show {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    filter: blur(0);
}
[data-anim="slide-down"] { transform: translateY(-30px); }
[data-anim="slide-up"] { transform: translateY(30px); }
[data-anim="slide-right"] { transform: translateX(-40px); }
[data-anim="slide-left"] { transform: translateX(40px); }
[data-anim="scale-up"] { transform: scale(0.9); }
[data-anim="blur-in"] { filter: blur(8px); transform: translateY(10px); }
[data-anim="fade"] { transform: none; }
[data-anim="megumin-float"] { animation: float 6s ease-in-out infinite; }

/* ===== КЛЮЧЕВЫЕ КАДРЫ ===== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-18px); }
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes float-spin {
    0%   { transform: translateY(0px)   rotate(0deg); }
    25%  { transform: translateY(-9px)  rotate(90deg); }
    50%  { transform: translateY(-18px) rotate(180deg); }
    75%  { transform: translateY(-9px)  rotate(270deg); }
    100% { transform: translateY(0px)   rotate(360deg); }
}
@keyframes glow-pulse {
    0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(1); }
    50%      { opacity: 1;    transform: translate(-50%, -50%) scale(1.08); }
}
@keyframes glow-pulse-simple {
    0%, 100% { opacity: 0.55; }
    50%      { opacity: 1; }
}

/* ===== ХЕДЕР ===== */
header {
    position: relative;
    z-index: 100;
    padding-top: 20px;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.logo {
    height: 48px;
    width: auto;
}
.logo-text {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.03em;
}
.nav-list {
    display: flex;
    gap: 10px;
    list-style: none;
    flex-wrap: wrap;
}
.nav-btn {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    background: transparent;
    border: 1px solid transparent;
    color: var(--color-muted);
    font-size: var(--fs-nav);
    transition: var(--transition);
    white-space: nowrap;
}
.nav-btn:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background: var(--hover-bg);
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    border-radius: var(--radius-sm);
    background: var(--color-primary);
    color: #111;
    font-weight: 600;
    font-size: var(--fs-btn);
    transition: var(--transition);
    border: 2px solid var(--color-primary);
}
.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

/* ===== СЕКЦИИ ===== */
section {
    padding: var(--section-gap) 0;
    position: relative;
}
h1, h2, h3 {
    line-height: 1.2;
    font-weight: 600;
}
h1 { font-size: var(--fs-title); letter-spacing: -0.02em; }
h2 { font-size: clamp(22px, 3.5vw, 48px); margin-bottom: 20px; }
h3 { font-size: clamp(18px, 1.8vw, 28px); margin-bottom: 12px; }
.text-muted {
    color: var(--color-muted);
    font-size: var(--fs-body);
    line-height: 1.6;
    max-width: 720px;
}

/* ===== ГЕРОЙ ===== */
#info { padding-top: 20px; }
.hero-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.hero-content { flex: 1 1 400px; }
.hero-content h1 { margin-bottom: 16px; }
.hero-content h1 span { color: var(--color-primary); }
.hero-content p {
    margin-bottom: 32px;
    font-size: clamp(16px, 1.8vw, 24px);
    color: var(--color-muted);
}
.hero-image {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image img {
    max-height: 400px;
    width: auto;
    filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.25));
}
.hero-image .hero-logo {
    animation: float-spin 12s linear infinite;
    transform-origin: center center;
    will-change: transform;
}

/* ============================================================
   МЯГКИЙ ЗОЛОТОЙ ОРЕОЛ ПОЗАДИ ВСЕХ КАРТИНОК + ПУЛЬСАЦИЯ
   ============================================================ */
.hero-flex > div:has(> img),
.hero-flex > .hero-image,
.shop-image {
    position: relative;
    z-index: 1;
}
.hero-flex > div:has(> img)::before,
.hero-flex > .hero-image::before,
.shop-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85%;
    height: 85%;
    background: radial-gradient(circle,
        rgba(255, 215, 0, 0.22) 0%,
        rgba(255, 215, 0, 0.10) 35%,
        rgba(255, 215, 0, 0.03) 60%,
        transparent 75%);
    filter: blur(50px);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    transform: translate(-50%, -50%);
    animation: glow-pulse 5s ease-in-out infinite;
    will-change: opacity, transform;
}
.hero-flex > div > img,
.hero-image > img,
.shop-image img {
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.18));
    transition: filter 0.5s ease;
}
.hero-flex > div > img:hover,
.hero-image > img:hover,
.shop-image img:hover {
    filter: drop-shadow(0 0 50px rgba(255, 215, 0, 0.32));
}

/* ===== ПРЕИМУЩЕСТВА ===== */
#why_we h2 { text-align: center; }
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
    text-align: center;
}
.card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7), 0 0 40px rgba(255, 215, 0, 0.05);
}
.card-icon {
    width: 90px;
    height: 90px;
    background-color: var(--color-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.35);
    transition: var(--transition);
}
.card:hover .card-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}
.card-icon img {
    height: 52px;
    width: auto;
    max-width: 52px;
    object-fit: contain;
    filter: none;
}
.card-title { color: var(--color-primary); margin-bottom: 12px; }

/* ===== МАГАЗИН ===== */
.shop-flex {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}
.shop-form { flex: 1 1 480px; }
.shop-image {
    flex: 1 1 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 24px;
}
.form-group label {
    font-size: var(--fs-form);
    color: var(--color-muted);
    margin-bottom: 4px;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-size: clamp(14px, 1.1vw, 18px);
    font-family: inherit;
    transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: var(--focus-shadow);
}
.form-group input::placeholder { color: var(--color-dim); }
.payment-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.payment-btn {
    flex: 1 1 140px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    color: var(--color-muted);
    font-size: clamp(12px, 0.9vw, 16px);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.payment-btn.active {
    border-color: var(--color-primary);
    background: rgba(255, 215, 0, 0.1);
    color: var(--color-primary);
}
.payment-btn:hover { border-color: var(--color-primary); }
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: clamp(12px, 0.9vw, 16px);
    color: var(--color-muted);
}
.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--color-primary);
    flex-shrink: 0;
}
.checkbox-label a { color: var(--color-primary); text-decoration: underline; }
.shop-note {
    margin-top: 30px;
    color: var(--color-muted);
    font-size: clamp(13px, 1vw, 18px);
}
.shop-note span { color: var(--color-primary); }

/* ===== FAQ / АККОРДЕОН ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}
.faq-item {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    box-shadow: var(--glass-shadow);
    cursor: pointer;
    transition: var(--transition);
}
.faq-item:hover { border-color: rgba(255, 215, 0, 0.2); }
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--fs-accordion);
    font-weight: 500;
}
.faq-question span { color: var(--color-muted); font-size: var(--fs-accordion-c); }
.faq-answer {
    margin-top: 16px;
    max-width: 100%;
    display: none;
}
.faq-item.open .faq-answer { display: block; }

/* ===== КОПИРУЕМЫЙ IP ===== */
.copy-ip {
    font-family: 'Courier New', 'Consolas', monospace;
    font-style: italic;
    color: var(--color-primary);
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 4px;
    transition: background-color 0.2s ease, color 0.2s ease;
    user-select: none;
}
.copy-ip:hover {
    background-color: rgba(255, 215, 0, 0.15);
    color: var(--color-primary-light);
}
.copy-ip.copied {
    color: #5ec8ff;
}

/* ============================================================
   СТРАНИЦА «НАША КОМАНДА»
   ============================================================ */
.team-grid {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    margin: 60px auto 0;
    width: 100%;
}

.team-card {
    flex: 0 0 320px !important;
    width: 320px !important;
    max-width: 320px !important;
    min-width: 320px !important;

    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: 50px 25px 40px;
    box-shadow: var(--glass-shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card-glow {
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle,
        rgba(255, 215, 0, 0.18) 0%,
        rgba(255, 215, 0, 0.06) 40%,
        transparent 70%);
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
    animation: glow-pulse-simple 6s ease-in-out infinite;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(255, 215, 0, 0.12);
}

/* ===== АВАТАРКА С КОЛЬЦОМ ===== */
.team-avatar-wrap {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 28px;
    z-index: 2;
}
.team-avatar-ring {
    position: absolute;
    top: -8px;
    left: -8px;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        var(--color-primary) 0deg,
        var(--color-primary-light) 90deg,
        var(--color-primary-dark) 180deg,
        var(--color-primary) 270deg,
        var(--color-primary) 360deg
    );
    animation: spin 8s linear infinite;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    z-index: 0;
    pointer-events: none;
}
.team-avatar-clip {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-bg);
    background: var(--color-surface);
    z-index: 2;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}
.team-avatar {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center center;
    display: block;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    transition: transform 0.4s ease;
}
.team-card:hover .team-avatar {
    transform: scale(1.05);
}

/* ===== ИМЯ И РОЛЬ ===== */
.team-name {
    color: var(--color-text);
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
    word-break: break-word;
}
.team-role {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
}
.role-owner {
    background: linear-gradient(135deg, #ffd700 0%, #e6b800 100%);
    color: #111;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.45);
}
.role-coowner {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15);
}
.team-desc {
    color: var(--color-muted);
    font-size: clamp(13px, 1vw, 15px);
    line-height: 1.6;
    max-width: 260px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    word-break: break-word;
}

/* ============================================================
   ⭐ ЛИЧНАЯ DISCORD-КНОПКА ВНУТРИ КАРТОЧКИ (маленькая) ⭐
   ЭТОТ БЛОК БЫЛ ПРОПУЩЕН — ТЕПЕРЬ ДОБАВЛЕН!
   ============================================================ */
.team-social {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    /* ЖЁСТКИЕ размеры — 44×44 */
    width: 44px !important;
    height: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    flex: 0 0 44px !important;

    margin-top: 22px;
    border-radius: 50%;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, border-color 0.3s ease,
                background-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.team-social::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(255, 215, 0, 0.3) 0%,
        rgba(255, 215, 0, 0.08) 50%,
        transparent 75%);
    filter: blur(14px);
    z-index: -1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-social:hover {
    transform: translateY(-3px) scale(1.08);
    border-color: var(--color-primary);
    background: rgba(255, 215, 0, 0.08);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.35);
}
.team-social:hover::before {
    opacity: 1;
}

/* ЖЁСТКО ограничиваем картинку внутри кнопки команды */
.team-social img,
.team-card .team-social img {
    width: 22px !important;
    height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
    transition: transform 0.3s ease;
}
.team-social:hover img {
    transform: scale(1.1);
}

/* ============================================================
   ФУТЕР
   ============================================================ */
footer {
    padding: 60px 0 40px;
    border-top: 1px solid var(--color-border);
    margin-top: 40px;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.footer-text {
    font-size: var(--fs-footer);
    color: var(--color-dim);
    line-height: 1.6;
}
.footer-text span { color: var(--color-primary); font-weight: 600; }

/* ===== DISCORD-КНОПКА В ФУТЕРЕ ===== */
.footer-socials {
    display: flex !important;
    gap: 16px;
    align-items: center;
}

.footer-discord {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    /* ЖЁСТКИЕ размеры — 36×36 */
    width: 36px !important;
    height: 36px !important;
    max-width: 36px !important;
    max-height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    flex: 0 0 36px !important;

    border-radius: 10px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, border-color 0.3s ease,
                background-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    line-height: 0;
}

.footer-discord::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 14px;
    background: radial-gradient(circle,
        rgba(255, 215, 0, 0.25) 0%,
        rgba(255, 215, 0, 0.05) 50%,
        transparent 75%);
    filter: blur(12px);
    z-index: -1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-discord:hover {
    transform: translateY(-2px) scale(1.06);
    border-color: var(--color-primary);
    background: rgba(255, 215, 0, 0.08);
    box-shadow: 0 6px 18px rgba(255, 215, 0, 0.35);
}
.footer-discord:hover::before {
    opacity: 1;
}

/* ЖЁСТКО ограничиваем картинку в футере */
.footer-discord img,
.footer-socials .footer-discord img,
footer .footer-discord img {
    width: 20px !important;
    height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.4));
    transition: transform 0.3s ease;
}
.footer-discord:hover img {
    transform: scale(1.1);
}

/* ===== АДАПТИВ ===== */
@media (max-width: 768px) {
    .header-inner { flex-direction: column; align-items: flex-start; }
    .nav-list { gap: 6px; }
    .nav-btn { padding: 6px 10px; font-size: 13px; }
    .hero-flex { flex-direction: column-reverse; text-align: center; }
    .shop-flex { flex-direction: column; }
    .footer-inner { flex-direction: column; text-align: center; }

    .team-grid { gap: 30px; margin-top: 40px; }
    .team-card {
        flex: 0 0 300px !important;
        width: 300px !important;
        max-width: 300px !important;
        min-width: 300px !important;
        padding: 40px 20px 30px;
    }
}

@media (max-width: 480px) {
    .payment-options { flex-direction: column; }
    .payment-btn { flex: 1 1 auto; }
    .card-icon { width: 75px; height: 75px; }
    .card-icon img { height: 42px; max-width: 42px; }

    .team-card {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        padding: 35px 18px 28px;
    }
    .team-avatar-wrap {
        width: 130px;
        height: 130px;
    }

    .team-social {
        width: 40px !important;
        height: 40px !important;
        max-width: 40px !important;
        max-height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        flex: 0 0 40px !important;
    }
    .team-social img {
        width: 20px !important;
        height: 20px !important;
        max-width: 20px !important;
        max-height: 20px !important;
    }

    .footer-discord {
        width: 36px !important;
        height: 36px !important;
        max-width: 36px !important;
        max-height: 36px !important;
        min-width: 36px !important;
        min-height: 36px !important;
        flex: 0 0 36px !important;
    }
    .footer-discord img {
        width: 20px !important;
        height: 20px !important;
    }
}

/* Отключаем все анимации для тех, кто не хочет движения */
@media (prefers-reduced-motion: reduce) {
    .hero-flex > div:has(> img)::before,
    .hero-flex > .hero-image::before,
    .shop-image::before,
    .team-card-glow {
        animation: none;
        opacity: 0.6;
    }
    .team-avatar-ring { animation: none; }
}