/* ============================================
   CHUPA — Premium Donate Site
   Dark theme · Green accent · Modern UI
   ============================================ */

:root {
    --bg-0: #050507;
    --bg-1: #0b0c10;
    --bg-2: #11131a;
    --bg-3: #181b25;
    --line: rgba(255, 255, 255, 0.06);
    --line-strong: rgba(255, 255, 255, 0.12);
    --text: #ffffff;
    --text-dim: #a0a4b0;
    --text-mute: #6b7080;
    --accent: #3ddc97;
    --accent-2: #5cf2ad;
    --accent-dark: #1faa6b;
    --accent-glow: rgba(61, 220, 151, 0.4);
    --danger: #ff5c7a;
    --discord: #5865f2;
    --discord-2: #4752c4;
    --radius: 18px;
    --radius-lg: 24px;
    --shadow-glow: 0 20px 60px -10px var(--accent-glow);
    --shadow-card: 0 10px 40px -10px rgba(0, 0, 0, 0.6);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-0);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100vh;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s var(--ease);
}

input, select, textarea {
    font-family: inherit;
    color: inherit;
}

/* ============================================
   AMBIENT BACKGROUND
   ============================================ */
.bg-ambient {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: var(--bg-0);
    overflow: hidden;
}

.bg-pattern {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    pointer-events: none;
}

.bg-glow-1 {
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    animation: float 18s ease-in-out infinite;
}

.bg-glow-2 {
    bottom: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--accent-dark) 0%, transparent 70%);
    animation: float 22s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, 40px) scale(1.1); }
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 18px 24px 0;
    background: linear-gradient(180deg, rgba(5,5,7,0.95) 0%, rgba(5,5,7,0.7) 70%, rgba(5,5,7,0) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 28px;
    background: rgba(17, 19, 26, 0.85);
    border: 1px solid rgba(61, 220, 151, 0.15);
    border-radius: 999px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: border-color 0.3s var(--ease);
}

.nav:hover {
    border-color: var(--line-strong);
}

.nav-link {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 2.5px;
    color: var(--text-dim);
    padding: 8px 16px;
    border-radius: 999px;
    transition: all 0.3s var(--ease);
    position: relative;
}

.nav-link:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

.nav-link.active {
    color: var(--text);
    background: rgba(61, 220, 151, 0.12);
    box-shadow: inset 0 0 0 1px rgba(61, 220, 151, 0.3);
}

.nav-link-disabled {
    cursor: not-allowed;
    opacity: 0.45;
    user-select: none;
    color: var(--text-mute);
    position: relative;
}

.nav-link-disabled::after {
    content: 'СКОРО';
    position: absolute;
    top: -4px;
    right: -4px;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--accent-2);
    background: rgba(11, 12, 16, 0.9);
    border: 1px solid rgba(61, 220, 151, 0.4);
    padding: 1px 4px;
    border-radius: 4px;
    line-height: 1;
}

.nav-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: transform 0.4s var(--ease);
}

.nav-brand:hover {
    transform: translateX(-50%) scale(1.05);
}

.brand-svg {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 24px var(--accent-glow));
}

/* ============================================
   HERO
   ============================================ */
.hero {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px 100px;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 80vh;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(61, 220, 151, 0.08);
    border: 1px solid rgba(61, 220, 151, 0.25);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--accent-2);
    margin-bottom: 28px;
    text-transform: uppercase;
    animation: fadeInUp 0.6s var(--ease);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
    animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: clamp(38px, 6vw, 78px);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    animation: fadeInUp 0.7s var(--ease) 0.1s backwards;
}

.accent {
    color: var(--accent);
    background: linear-gradient(135deg, var(--accent-2), var(--accent-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accent-glow {
    color: var(--accent);
    text-shadow: 0 0 40px var(--accent-glow);
}

.hero-sub {
    font-size: 18px;
    color: var(--text-dim);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.6;
    animation: fadeInUp 0.7s var(--ease) 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.7s var(--ease) 0.3s backwards;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s var(--ease) 0.4s backwards;
}

.stat-num {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: 26px;
    color: var(--text);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

.stat-sep {
    width: 1px;
    height: 36px;
    background: var(--line-strong);
}

/* Hero art */
.hero-art {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s var(--ease) 0.3s backwards;
}

.hero-svg,
.hero-img {
    width: 100%;
    max-width: 560px;
    height: auto;
    border-radius: 24px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 60px var(--accent-glow));
    animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    border: 1px solid transparent;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-2), var(--accent-dark));
    color: #0a0a0a;
    box-shadow: 0 10px 30px -10px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -10px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease);
}

.btn-primary:hover::after {
    transform: translateX(100%);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    border-color: var(--line-strong);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    color: var(--accent-2);
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(61, 220, 151, 0.08);
    color: var(--text);
    border-color: rgba(61, 220, 151, 0.25);
}

.btn-ghost:hover {
    background: rgba(61, 220, 151, 0.15);
    border-color: var(--accent);
    color: var(--accent-2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px var(--accent-glow);
}

.btn-discord {
    background: var(--discord);
    color: #fff;
    box-shadow: 0 10px 30px -10px rgba(88, 101, 242, 0.6);
}

.btn-discord:hover {
    background: var(--discord-2);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -10px rgba(88, 101, 242, 0.7);
}

.btn-xl {
    padding: 18px 32px;
    font-size: 15px;
    width: 100%;
}

.btn-xl .pay-amount {
    background: rgba(0, 0, 0, 0.15);
    padding: 4px 10px;
    border-radius: 8px;
    margin-left: 4px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px;
}

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

.kicker {
    display: inline-block;
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: clamp(30px, 4.5vw, 52px);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 17px;
    color: var(--text-dim);
    max-width: 580px;
    margin: 0 auto;
}

/* ============================================
   PACKAGES
   ============================================ */
.packages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pkg {
    position: relative;
    background: linear-gradient(180deg, rgba(17, 19, 26, 0.9), rgba(11, 12, 16, 0.9));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s var(--ease);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.pkg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, var(--accent-glow), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    pointer-events: none;
}

.pkg:hover {
    transform: translateY(-6px);
    border-color: rgba(61, 220, 151, 0.4);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(61, 220, 151, 0.2);
}

.pkg:hover::before {
    opacity: 1;
}

.pkg-popular {
    border-color: rgba(61, 220, 151, 0.4);
    background: linear-gradient(180deg, rgba(20, 50, 38, 0.7), rgba(11, 12, 16, 0.9));
    transform: scale(1.03);
}

.pkg-popular:hover {
    transform: translateY(-6px) scale(1.03);
}

.pkg-flag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: #0a0a0a;
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1.5px;
    padding: 5px 12px;
    border-radius: 999px;
    box-shadow: 0 4px 12px var(--accent-glow);
}

.pkg-elite {
    background: linear-gradient(180deg, rgba(45, 25, 60, 0.7), rgba(11, 12, 16, 0.9));
    border-color: rgba(180, 100, 220, 0.3);
}

.pkg-elite:hover {
    border-color: rgba(180, 100, 220, 0.6);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(180, 100, 220, 0.3);
}

.pkg-head {
    margin-bottom: 24px;
    position: relative;
}

.pkg-name {
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: 24px;
    letter-spacing: 1px;
    color: var(--text);
    margin-bottom: 6px;
}

.pkg-tag {
    font-size: 12px;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pkg-price {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 24px;
    position: relative;
}

.pkg-currency {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: var(--accent-2);
    margin-top: 6px;
}

.pkg-amount {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: 44px;
    line-height: 1;
    background: linear-gradient(135deg, var(--text), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pkg-list {
    list-style: none;
    margin-bottom: 28px;
    flex: 1;
}

.pkg-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-dim);
    border-bottom: 1px solid var(--line);
}

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

.check {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent);
    position: relative;
    margin-top: 1px;
    box-shadow: 0 0 12px var(--accent-glow);
}

.check::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid #0a0a0a;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* ============================================
   CHECKOUT
   ============================================ */
.checkout-section {
    padding-top: 40px;
}

.checkout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: start;
}

.checkout-left {
    background: linear-gradient(180deg, rgba(17, 19, 26, 0.6), rgba(11, 12, 16, 0.6));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(10px);
}

.checkout-left .section-title {
    text-align: left;
    font-size: clamp(26px, 3.5vw, 40px);
}

.checkout-left .section-sub {
    text-align: left;
    margin: 0 0 32px;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

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

.field label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dim);
}

.field input,
.field select,
.field textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 15px;
    color: var(--text);
    transition: all 0.3s var(--ease);
    outline: none;
    font-family: inherit;
}

.field input::placeholder,
.field textarea::placeholder {
    color: var(--text-mute);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--accent);
    background: rgba(61, 220, 151, 0.04);
    box-shadow: 0 0 0 3px rgba(61, 220, 151, 0.1);
}

.field select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a0a4b0' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
    padding-right: 44px;
}

/* Стили option для select — тёмная тема */
.field select option,
select option {
    background: #0b0c10;
    color: #ffffff;
    padding: 10px;
}

.field textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
    font-family: inherit;
}

.field textarea:focus {
    background: rgba(0, 0, 0, 0.4);
}

/* Payment methods */
.methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.method {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.method input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.method-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: var(--text-dim);
    transition: all 0.3s var(--ease);
}

.method-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.method-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.method-sub {
    font-size: 11px;
    color: var(--text-mute);
}

.method:hover {
    border-color: rgba(61, 220, 151, 0.3);
    background: rgba(61, 220, 151, 0.04);
}

.method.active {
    border-color: var(--accent);
    background: rgba(61, 220, 151, 0.08);
    box-shadow: 0 0 0 1px var(--accent), 0 8px 24px -8px var(--accent-glow);
}

.method.active .method-icon {
    background: var(--accent);
    color: #0a0a0a;
}

.agree {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-dim);
    cursor: pointer;
    user-select: none;
}

.agree input {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    accent-color: var(--accent);
    cursor: pointer;
    flex-shrink: 0;
}

.agree a {
    color: var(--accent-2);
    text-decoration: underline;
    text-decoration-color: rgba(61, 220, 151, 0.3);
}

/* Summary */
.checkout-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 100px;
}

.summary {
    background: linear-gradient(180deg, rgba(20, 50, 38, 0.5), rgba(11, 12, 16, 0.7));
    border: 1px solid rgba(61, 220, 151, 0.2);
    border-radius: var(--radius-lg);
    padding: 28px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.5);
}

.summary-head {
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
}

.summary-label {
    color: var(--text-dim);
}

.summary-value {
    color: var(--text);
    font-weight: 600;
}

.summary-value.big {
    font-family: 'Unbounded', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-2);
}

.summary-divider {
    height: 1px;
    background: var(--line-strong);
    margin: 12px 0;
}

.summary-total {
    padding: 8px 0 16px;
}

.bonuses {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.bonus {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-dim);
}

.bonus-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(61, 220, 151, 0.1);
    border-radius: 8px;
    font-size: 16px;
}

.trust {
    background: rgba(11, 12, 16, 0.6);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trust-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-mute);
}

/* ============================================
   FEATURES
   ============================================ */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature {
    background: linear-gradient(180deg, rgba(17, 19, 26, 0.6), rgba(11, 12, 16, 0.6));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: all 0.3s var(--ease);
}

.feature:hover {
    border-color: var(--line-strong);
    transform: translateY(-4px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-2), var(--accent-dark));
    border-radius: 14px;
    color: #0a0a0a;
    margin-bottom: 18px;
    box-shadow: 0 10px 24px -8px var(--accent-glow);
}

.feature h3 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 8px;
    color: var(--text);
}

.feature p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.5;
}

/* ============================================
   DISCORD CTA
   ============================================ */
.discord-cta {
    max-width: 1280px;
    margin: 0 auto 80px;
    padding: 0 24px;
}

.discord-card {
    position: relative;
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
    border-radius: var(--radius-lg);
    padding: 48px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(88, 101, 242, 0.5);
}

.discord-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.discord-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    z-index: 1;
}

.discord-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    color: #fff;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.discord-icon svg {
    width: 40px;
    height: 40px;
}

.discord-text {
    flex: 1;
    min-width: 240px;
}

.discord-text h3 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 6px;
    color: #fff;
}

.discord-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
}

.discord-card .btn-discord {
    background: #fff;
    color: #5865f2;
    flex-shrink: 0;
}

.discord-card .btn-discord:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #4752c4;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--bg-1);
    border-top: 1px solid var(--line);
    padding: 56px 24px 24px;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.footer-brand .brand-svg {
    height: 42px;
    margin-bottom: 16px;
}

.footer-about {
    font-size: 14px;
    color: var(--text-dim);
    max-width: 280px;
    line-height: 1.5;
}

.footer-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--text-dim);
    padding: 6px 0;
    transition: color 0.2s var(--ease);
}

.footer-col a:hover {
    color: var(--accent-2);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--text-mute);
}

/* ============================================
   HEADER auth slot (user / login button)
   Глобально — используется на ВСЕХ страницах
   ============================================ */

.nav-user {
    position: relative;
    display: flex;
    align-items: center;
    padding: 3px;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid var(--accent);
    border-radius: 999px;
    color: var(--text);
    transition: all 0.2s var(--ease);
    box-shadow: 0 0 16px var(--accent-glow);
    text-decoration: none;
}

.nav-user:hover {
    background: rgba(61, 220, 151, 0.15);
    border-color: var(--accent-2);
    transform: scale(1.08);
    box-shadow: 0 0 24px var(--accent-glow);
}

.nav-user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-2), var(--accent-dark));
    color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Guest: кружок с иконкой юзера, как в личном кабинете */
.nav-user-guest {
    background: rgba(61, 220, 151, 0.06);
}

.nav-user-avatar-guest {
    background: rgba(11, 12, 16, 0.6);
    color: var(--accent-2);
    box-shadow: none;
}

.nav-user-guest:hover .nav-user-avatar-guest {
    background: rgba(11, 12, 16, 0.85);
    color: var(--accent);
}

/* Online indicator (green dot) */
.nav-user-online {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: #3ddc97;
    border: 2px solid #0a0a0a;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(61, 220, 151, 0.8);
    animation: navPulse 2s ease-in-out infinite;
}

@keyframes navPulse {
    0%, 100% { box-shadow: 0 0 8px rgba(61, 220, 151, 0.8); }
    50% { box-shadow: 0 0 16px rgba(61, 220, 151, 1); }
}

/* Admin badge */
.nav-user-badge {
    position: absolute;
    top: -6px;
    left: -6px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ffb800, #ff6a00);
    border: 2px solid #0a0a0a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    line-height: 1;
    box-shadow: 0 0 8px rgba(255, 184, 0, 0.6);
}

.nav-user-name {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-login {
    padding: 8px 18px;
    background: var(--accent);
    color: #0a0a0a;
    border-radius: 999px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    transition: all 0.2s var(--ease);
    text-decoration: none;
}

.nav-login:hover {
    background: var(--accent-2);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px -6px var(--accent-glow);
}

/* ============================================
   TOAST
   ============================================ */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(135deg, var(--accent-2), var(--accent-dark));
    color: #0a0a0a;
    padding: 16px 22px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 20px 40px -10px var(--accent-glow);
    transform: translateY(120%);
    transition: transform 0.4s var(--ease);
    z-index: 1000;
    max-width: 360px;
}

.toast.show {
    transform: translateY(0);
}

.toast.error {
    background: linear-gradient(135deg, #ff5c7a, #c4324f);
    color: #fff;
    box-shadow: 0 20px 40px -10px rgba(255, 92, 122, 0.5);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .packages { grid-template-columns: repeat(2, 1fr); }
    .features { grid-template-columns: repeat(2, 1fr); }
    .hero { grid-template-columns: 1fr; text-align: center; }
    .hero-content { order: 2; }
    .hero-art { order: 1; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }
    .hero-stats { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav { padding: 10px 16px; }
    .nav-link { font-size: 11px; letter-spacing: 1.5px; padding: 6px 10px; }
    .brand-svg { height: 38px; }
    .hero { padding: 40px 20px 60px; }
    .hero-title { font-size: 40px; letter-spacing: -1px; }
    .hero-sub { font-size: 15px; }
    .section { padding: 50px 20px; }
    .packages { grid-template-columns: 1fr; }
    .features { grid-template-columns: 1fr; }
    .checkout { grid-template-columns: 1fr; }
    .checkout-left { padding: 24px; }
    .methods { grid-template-columns: 1fr; }
    .discord-card { padding: 32px 24px; }
    .discord-content { flex-direction: column; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .checkout-right { position: static; }
    .pkg-popular { transform: none; }
    .pkg-popular:hover { transform: translateY(-6px); }
}

@media (max-width: 480px) {
    .hero-stats { gap: 16px; }
    .stat-num { font-size: 20px; }
    .stat-label { font-size: 11px; }
}

/* ============================================
   REVEAL ANIMATION
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
    will-change: opacity, transform;
}

.reveal-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Fallback: if JS disabled or no IntersectionObserver, show content after 2s */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

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

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

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