:root {
    --aqua: #c6ffff;
    --aqua-dark: #8aeaea;
    --aqua-deep: #5dd4d4;
    --aqua-light: #e8ffff;
    --aqua-glow: rgba(198, 255, 255, 0.4);

    --pink: #ffb6c1;
    --pink-dark: #ff8fa3;
    --pink-light: #ffe0e6;
    --pink-deep: #ff6b88;
    --pink-glow: rgba(255, 182, 193, 0.35);

    --gradient-main: linear-gradient(135deg, var(--pink) 0%, var(--aqua) 100%);
    --gradient-reverse: linear-gradient(135deg, var(--aqua) 0%, var(--pink) 100%);
    --gradient-soft: linear-gradient(180deg, #e8ffff 0%, #fff0f3 50%, #e8ffff 100%);
    --gradient-text: linear-gradient(135deg, var(--pink-deep) 0%, var(--aqua-deep) 100%);

    --bg-body: var(--aqua);
    --bg-card: rgba(255, 255, 255, 0.75);
    --bg-card-solid: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.55);
    --bg-input: rgba(255, 255, 255, 0.85);

    --text-main: #2a3038;
    --text-sub: #556068;
    --text-muted: #8a9aa8;

    --border: rgba(0, 0, 0, 0.06);
    --border-pink: rgba(255, 182, 193, 0.3);
    --border-aqua: rgba(198, 255, 255, 0.5);

    --success: #55c97a;
    --warning: #f0b35d;
    --danger: #ef6b7b;

    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --radius-full: 999px;

    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.04);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 16px 48px rgba(255, 182, 193, 0.12);
    --shadow-aqua: 0 8px 32px rgba(198, 255, 255, 0.25);

    --transition: 0.3s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    background: var(--gradient-soft);
    background-attachment: fixed;
}

a { color: inherit; }

#particles-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none !important;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

/* AXOLOTLS */
.axolotl {
    position: fixed;
    z-index: 1;
    pointer-events: none;
    width: 180px;
}

.axolotl img {
    width: 200%;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(255,182,193,0.3));
}

.axolotl-left {
    left: 220px;
    top: 50%;
    transform: translateY(-50%);
    animation: axolotlFloat 6s ease-in-out infinite;
}

.axolotl-right {
    right: 350px;
    top: 60%;
    transform: translateY(-50%);
    animation: axolotlFloat 6s ease-in-out infinite 1.5s;
}

.axolotl-bubbles {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    opacity: 0.6;
    animation: bubblesRise 4s ease-in-out infinite;
}

.axolotl-bubbles img {
    width: 200%;
    filter: drop-shadow(0 0 8px rgba(198,255,255,0.9));
}

@keyframes axolotlFloat {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    25% { transform: translateY(-53%) rotate(2deg); }
    50% { transform: translateY(-47%) rotate(-1deg); }
    75% { transform: translateY(-52%) rotate(1deg); }
}

@keyframes bubblesRise {
    0% { transform: translateX(-50%) translateY(0); opacity: 0.9; }
    50% { transform: translateX(-50%) translateY(-35px); opacity: 0.9; }
    100% { transform: translateX(-50%) translateY(0); opacity: 0.9; }
}

/* NAVBAR */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: transparent;
    transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}

.navbar.scrolled {
    background: rgba(230, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(198, 255, 255, 0.2);
    border-bottom: 1px solid rgba(198, 255, 255, 0.3);
}

.nav-container { max-width: 1200px; margin: 0 auto; height: 68px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; }

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { display: none; }
.logo-img { width: 36px; height: 36px; border-radius: 10px; object-fit: contain; filter: drop-shadow(0 2px 8px var(--pink-glow)); transition: transform 0.3s; }
.nav-logo:hover .logo-img { transform: scale(1.1) rotate(-5deg); }
.logo-text { font-weight: 900; font-size: 20px; letter-spacing: 1px; color: var(--text-main); }
.logo-highlight { background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.season-badge { font-size: 10px; font-weight: 800; color: #fff; background: var(--gradient-main); padding: 4px 10px; border-radius: var(--radius-full); letter-spacing: 1px; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link { text-decoration: none; color: var(--text-sub); padding: 9px 16px; border-radius: var(--radius-full); transition: var(--transition); font-weight: 600; font-size: 14px; }
.nav-link:hover { background: var(--aqua-light); color: var(--aqua-deep); }
.nav-link.active { background: var(--pink-light); color: var(--pink-deep); }
.nav-admin { opacity: 0.6; }
.nav-mobile-toggle { display: none; flex-direction: column; gap: 4px; cursor: pointer; }
.nav-mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--text-main); border-radius: 4px; }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 110px 24px 60px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; width: 800px; height: 800px; left: 50%; top: 50%; transform: translate(-50%, -50%); background: radial-gradient(circle, var(--pink-glow) 0%, var(--aqua-glow) 40%, transparent 70%); filter: blur(40px); z-index: 0; }
.hero-content { max-width: 760px; text-align: center; position: relative; z-index: 2; }

.hero-logo-img { display: block; width: 110px; height: 110px; margin: 0 auto 20px; border-radius: 28px; object-fit: contain; filter: drop-shadow(0 10px 30px var(--pink-glow)); animation: float 4s ease-in-out infinite; }

.hero-badge { display: inline-block; background: rgba(255,255,255,0.85); color: var(--text-main); padding: 6px 18px; border-radius: var(--radius-full); font-size: 12px; font-weight: 800; letter-spacing: 2px; box-shadow: var(--shadow-sm); margin-bottom: 20px; backdrop-filter: blur(8px); }

.hero-title { font-size: clamp(52px, 11vw, 100px); line-height: 0.95; font-weight: 900; margin-bottom: 18px; }
.title-line { display: block; }
.title-highlight { background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.hero-subtitle { font-size: 18px; color: var(--text-sub); margin-bottom: 34px; }

.hero-stats { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin-bottom: 34px; }
.stat-item { min-width: 150px; background: var(--bg-card); backdrop-filter: blur(14px); border: 1px solid var(--border-aqua); border-radius: var(--radius-lg); padding: 16px 18px; box-shadow: var(--shadow-sm); text-align: center; }
.stat-icon { display: block; font-size: 24px; margin-bottom: 4px; }
.stat-value { display: block; font-size: 16px; font-weight: 800; color: var(--text-main); }
.stat-value.online { color: var(--success); }
.stat-value.offline { color: var(--danger); }
.stat-label { font-size: 12px; color: var(--text-muted); }

.hero-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.hero-visual { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.floating-card { position: absolute; background: var(--bg-card); backdrop-filter: blur(12px); border: 1px solid var(--border-aqua); border-radius: var(--radius-lg); box-shadow: var(--shadow-aqua); padding: 12px 18px; display: flex; align-items: center; gap: 8px; color: var(--text-main); font-weight: 700; font-size: 14px; animation: float 4.5s ease-in-out infinite; }
.card-1 { top: 22%; left: 8%; }
.card-2 { top: 38%; right: 9%; animation-delay: 0.8s; }
.card-3 { bottom: 22%; left: 12%; animation-delay: 1.6s; }
.card-4 { top: 62%; right: 13%; animation-delay: 1.2s; }
.card-5 { bottom: 14%; right: 21%; animation-delay: 2s; }

/* BUTTONS */
/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius-full);
    padding: 11px 22px;
    font-weight: 800;
    white-space: nowrap;
    font-family: inherit;
    letter-spacing: 0.3px;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #ff7f94 0%, #5bc4f0 100%);
    box-shadow: 0 8px 24px var(--pink-glow);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px var(--pink-glow);
    background: linear-gradient(135deg, #ff6b83 0%, #4ab8e8 100%);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-main);
    border: 2px solid var(--aqua-dark);
    backdrop-filter: blur(12px);
    text-shadow: none;
}

.btn-outline:hover {
    background: var(--aqua-light);
    border-color: var(--aqua-deep);
    color: var(--aqua-deep);
}

.btn-danger {
    background: rgba(239, 107, 123, 0.12);
    color: var(--danger);
    border: 2px solid rgba(239, 107, 123, 0.25);
    font-weight: 800;
}

.btn-danger:hover {
    background: var(--danger);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
}

.btn-sm {
    padding: 7px 12px;
    font-size: 12px;
}

.btn-full {
    width: 100%;
}
/* SECTIONS */
.section-title { text-align: center; font-size: 34px; font-weight: 900; margin-bottom: 10px; color: var(--text-main); }
.section-subtitle { text-align: center; color: var(--text-muted); margin-bottom: 38px; }
.features-section, .pricing-preview, .team-section, .shop-products, .shop-header, .footer { position: relative; z-index: 2; }

/* TEAM */
.team-section { padding: 90px 24px; background: linear-gradient(180deg, rgba(255,240,243,0.4), rgba(230,255,255,0.4)); }
.team-grid { display: flex; justify-content: center; margin-bottom: 28px; }
.team-card { width: 100%; max-width: 420px; background: var(--bg-card); backdrop-filter: blur(14px); border: 2px solid var(--border-pink); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); padding: 34px 28px; position: relative; overflow: hidden; text-align: center; }
.team-avatar { position: relative; display: inline-block; margin-bottom: 14px; }
.team-avatar-img { width: 96px; height: 96px; border-radius: 50%; image-rendering: pixelated; border: 4px solid var(--pink-light); box-shadow: 0 4px 20px var(--pink-glow); }
.team-avatar-badge { position: absolute; bottom: -4px; right: -4px; width: 30px; height: 30px; display: grid; place-items: center; background: #fff; border-radius: 50%; box-shadow: var(--shadow-sm); border: 2px solid var(--pink-light); }
.team-name { font-size: 24px; font-weight: 900; margin-bottom: 4px; }
.team-nickname { display: block; font-family: 'JetBrains Mono', monospace; color: var(--pink-deep); margin-bottom: 8px; }
.team-role { display: inline-block; background: var(--gradient-main); color: #fff; font-size: 12px; font-weight: 800; padding: 5px 14px; border-radius: var(--radius-full); margin-bottom: 16px; }
.team-description { color: var(--text-sub); font-size: 14px; margin-bottom: 18px; }
.team-tags { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; }
.team-tag { background: var(--aqua-light); color: var(--aqua-deep); border: 1px solid var(--border-aqua); padding: 5px 10px; border-radius: var(--radius-full); font-size: 12px; font-weight: 700; }
.team-join-cta { text-align: center; }
.team-join-cta p { color: var(--text-muted); margin-bottom: 12px; }

/* FEATURES */
.features-section { padding: 90px 24px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.feature-card { background: var(--bg-card); backdrop-filter: blur(14px); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--border-aqua); text-align: center; transition: var(--transition); }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--pink-light); }
.feature-icon { font-size: 44px; margin-bottom: 12px; }
.feature-card h3 { margin-bottom: 8px; font-size: 18px; }
.feature-card p { color: var(--text-muted); font-size: 14px; }
.feature-card a { color: var(--pink-deep); text-decoration: none; }

/* PRICING */
.pricing-preview { padding: 90px 24px; background: linear-gradient(180deg, rgba(230,255,255,0.3), rgba(255,240,243,0.3)); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; max-width: 980px; margin: 0 auto; }
.pricing-card { background: var(--bg-card); backdrop-filter: blur(14px); border-radius: var(--radius-xl); padding: 36px 28px; text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--border-aqua); position: relative; transition: var(--transition); }
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pricing-popular { border-color: var(--pink); box-shadow: var(--shadow-lg); }
.popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gradient-main); color: #fff; padding: 5px 14px; border-radius: var(--radius-full); font-size: 12px; font-weight: 800; }
.pricing-icon { font-size: 46px; margin-bottom: 12px; }
.pricing-name { font-size: 22px; font-weight: 900; margin-bottom: 12px; }
.pricing-price { margin-bottom: 18px; }
.price-value { font-size: 42px; font-weight: 900; background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.price-currency { color: var(--text-muted); font-weight: 600; }

/* SHOP */
.shop-header { padding: 105px 24px 36px; text-align: center; }
.shop-title { font-size: 42px; font-weight: 900; margin-bottom: 8px; }
.shop-subtitle { color: var(--text-muted); margin-bottom: 28px; }
.nickname-input-section { max-width: 520px; margin: 0 auto; }
.nickname-wrapper { display: flex; align-items: center; gap: 12px; background: var(--bg-card); backdrop-filter: blur(14px); border-radius: var(--radius-lg); padding: 12px 18px; border: 2px solid var(--border-aqua); box-shadow: var(--shadow-sm); transition: var(--transition); }
.nickname-wrapper:focus-within { border-color: var(--pink); box-shadow: var(--shadow-lg); }
.player-head { width: 48px; height: 48px; border-radius: var(--radius); image-rendering: pixelated; }
.nickname-input { flex: 1; border: none; background: transparent; outline: none; font-size: 18px; font-weight: 700; color: var(--text-main); }
.nickname-input::placeholder { color: var(--text-muted); }

.shop-categories { position: sticky; top: 68px; z-index: 100; background: rgba(230,255,255,0.8); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border-aqua); padding: 14px 24px; }
.category-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; }
.category-tab { border: 2px solid var(--border-aqua); background: var(--bg-card); color: var(--text-sub); border-radius: var(--radius-full); padding: 9px 16px; font-weight: 700; cursor: pointer; transition: var(--transition); font-family: inherit; }
.category-tab:hover { border-color: var(--pink); color: var(--pink-deep); }
.category-tab.active {
    color: #fff;
    background: var(--gradient-main);
    border-color: transparent;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    isolation: isolate;
}

.shop-products { padding: 34px 24px 80px; }
.product-section { margin-bottom: 54px; }
.product-section .section-title { text-align: left; font-size: 26px; margin-bottom: 20px; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.products-grid-small { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.product-card { background: var(--bg-card); backdrop-filter: blur(14px); border-radius: var(--radius-xl); padding: 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--border-aqua); cursor: pointer; transition: var(--transition); position: relative; overflow: hidden; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--pink-light); }
.product-card::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--gradient-main); opacity: 0; transition: var(--transition); }
.product-card:hover::before { opacity: 1; }
.product-card-header { display: flex; gap: 14px; align-items: center; margin-bottom: 12px; }
.product-icon { width: 58px; height: 58px; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--aqua-light), var(--pink-light)); box-shadow: var(--shadow-sm); font-size: 34px; flex-shrink: 0; }
.product-icon img { width: 38px; height: 38px; object-fit: contain; }
.product-info h3 { font-size: 18px; font-weight: 800; }
.product-price { font-size: 20px; font-weight: 900; background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.product-description { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }

/* MODALS */
.modal-overlay { position: fixed; inset: 0; z-index: 3000; background: rgba(198,255,255,0.5); backdrop-filter: blur(12px); display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.active { display: flex; }
.modal { width: 100%; max-width: 520px; max-height: 92vh; overflow-y: auto; background: var(--bg-card-solid); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); border: 2px solid var(--border-aqua); position: relative; }
.modal-wide { max-width: 650px; }
.modal-tall { max-height: 95vh; }
.modal-close { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%; border: none; cursor: pointer; background: var(--aqua-light); color: var(--text-sub); font-size: 20px; transition: var(--transition); }
.modal-close:hover { background: var(--pink-light); }
.modal-header { padding: 30px 28px 0; text-align: center; }
.modal-title { font-size: 24px; font-weight: 900; }
.modal-body { padding: 22px 28px; }
.modal-footer { padding: 0 28px 28px; }
.modal-footer-actions { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }
.modal-description { text-align: center; color: var(--text-muted); margin-bottom: 18px; }
.modal-player { display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--aqua-light); border-radius: var(--radius-lg); padding: 10px 14px; margin-bottom: 18px; font-weight: 700; }
.player-head-small { width: 32px; height: 32px; border-radius: 8px; image-rendering: pixelated; }
.modal-icon-preview { display: flex; justify-content: center; align-items: center; font-size: 46px; margin-bottom: 10px; }
.modal-icon-preview img { width: 64px; height: 64px; object-fit: contain; }
.modal-icon { font-size: 48px; display: block; margin-bottom: 12px; }

/* DURATION */
.duration-selector { margin-bottom: 18px; }
.duration-selector h4 { color: var(--text-sub); margin-bottom: 10px; font-size: 14px; }
.duration-options { display: flex; flex-direction: column; gap: 8px; }
.duration-option { display: flex; border: 2px solid var(--border-aqua); background: #fff; border-radius: var(--radius-lg); padding: 14px 16px; cursor: pointer; transition: var(--transition); }
.duration-option input { display: none; }
.duration-option:hover { border-color: var(--aqua-dark); background: var(--aqua-light); }
.duration-option.active { border-color: var(--pink); background: var(--pink-light); }
.duration-content { width: 100%; display: grid; grid-template-columns: 1fr auto auto; gap: 12px; align-items: center; }
.duration-period { font-weight: 700; }
.duration-price { min-width: 84px; text-align: right; font-weight: 800; font-family: 'JetBrains Mono', monospace; }
.duration-discount { min-width: 44px; text-align: center; padding: 3px 8px; border-radius: var(--radius-full); background: rgba(85,201,122,0.12); color: var(--success); font-size: 11px; font-weight: 800; }
.duration-discount-placeholder { width: 44px; }
.custom-text-input { margin-bottom: 18px; }
.custom-text-input h4 { color: var(--text-sub); margin-bottom: 8px; }

/* INPUTS */
.input-field { width: 100%; background: var(--bg-input); border: 2px solid var(--border-aqua); border-radius: var(--radius); padding: 12px 14px; outline: none; color: var(--text-main); transition: var(--transition); font-family: inherit; }
.input-field:focus { border-color: var(--pink); box-shadow: 0 0 0 4px var(--pink-glow); }
.input-sm { padding: 9px 12px; font-size: 13px; }
.input-emoji { max-width: 110px; text-align: center; font-size: 32px; }
.input-hint { color: var(--text-muted); font-size: 12px; margin-top: 5px; }
.textarea-field { resize: vertical; min-height: 60px; }
.textarea-code { font-family: 'JetBrains Mono', monospace; font-size: 13px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 6px; color: var(--text-sub); font-weight: 700; font-size: 13px; }
.modal-total { background: var(--aqua-light); border: 1px solid var(--border-aqua); border-radius: var(--radius-lg); padding: 16px; display: flex; justify-content: space-between; align-items: center; }
.total-price { font-size: 24px; font-weight: 900; background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.status-spinner { width: 48px; height: 48px; border: 4px solid var(--border-aqua); border-top-color: var(--pink); border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto; }
.status-success { font-size: 64px; }

/* LOGIN */
.login-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; position: relative; z-index: 2; }
.login-card { width: 100%; max-width: 420px; background: var(--bg-card); backdrop-filter: blur(14px); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); border: 2px solid var(--border-aqua); padding: 40px 34px; }
.login-header { text-align: center; margin-bottom: 28px; }
.login-header .logo-icon { display: none; }
.login-logo-img { display: block; width: 72px; height: 72px; margin: 0 auto 14px; border-radius: 18px; object-fit: contain; filter: drop-shadow(0 4px 16px var(--pink-glow)); }
.login-header h1 { font-size: 28px; font-weight: 900; }
.login-header p { color: var(--text-muted); margin-top: 4px; }
.login-error { margin-top: 14px; padding: 12px; border-radius: var(--radius); background: rgba(239,107,123,0.1); color: var(--danger); border: 1px solid rgba(239,107,123,0.2); text-align: center; }
.login-back { display: block; text-align: center; margin-top: 16px; color: var(--text-muted); text-decoration: none; }

/* ADMIN */
.admin-body { display: flex; align-items: stretch; min-height: 100vh; }
.admin-sidebar { position: fixed; top: 0; left: 0 !important; transform: none !important; width: 260px; min-width: 260px; height: 100vh; z-index: 1200; background: rgba(230,255,255,0.92); backdrop-filter: blur(18px); border-right: 1px solid var(--border-aqua); box-shadow: 2px 0 24px rgba(198,255,255,0.15); display: flex; flex-direction: column; pointer-events: auto !important; }
.admin-sidebar * { pointer-events: auto !important; }
.sidebar-header { padding: 20px; border-bottom: 1px solid var(--border-aqua); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; background: rgba(255,255,255,0.7); }
.sidebar-logo-img { width: 32px; height: 32px; border-radius: 8px; object-fit: contain; }
.admin-badge { font-size: 10px; font-weight: 800; color: #fff; background: var(--gradient-main); padding: 4px 8px; border-radius: var(--radius-full); }
.sidebar-nav { flex: 1; padding: 12px; overflow-y: auto; }
.sidebar-link { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text-sub); padding: 11px 14px; border-radius: var(--radius); margin-bottom: 4px; transition: var(--transition); cursor: pointer; user-select: none; }
.sidebar-link:hover { background: var(--aqua-light); color: var(--aqua-deep); transform: translateX(3px); }
.sidebar-link.active { background: var(--pink-light); color: var(--pink-deep); font-weight: 800; }
.sidebar-icon { width: 22px; text-align: center; font-size: 18px; }
.sidebar-footer { border-top: 1px solid var(--border-aqua); padding: 12px; background: rgba(255,255,255,0.5); }
.admin-main { flex: 1; min-width: 0; margin-left: 260px; padding: 24px; position: relative; z-index: 1; }
.admin-header { display: flex; justify-content: space-between; gap: 14px; align-items: center; margin-bottom: 22px; flex-wrap: wrap; }
.admin-header h1 { font-size: 26px; font-weight: 900; }
.header-controls { display: flex; gap: 8px; flex-wrap: wrap; }
.admin-tab { display: none; }
.admin-tab.active { display: block; }
.admin-card { background: var(--bg-card); backdrop-filter: blur(14px); border-radius: var(--radius-xl); border: 1px solid var(--border-aqua); box-shadow: var(--shadow-sm); padding: 22px; margin-bottom: 20px; }
.admin-card h3 { margin-bottom: 14px; }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 16px; margin-bottom: 22px; }
.stat-card { background: var(--bg-card); border: 2px solid var(--border-aqua); box-shadow: var(--shadow-sm); border-radius: var(--radius-lg); padding: 18px; display: flex; align-items: center; gap: 14px; transition: var(--transition); }
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-aqua); }
.stat-card-icon { font-size: 30px; }
.stat-card-value { display: block; font-size: 22px; font-weight: 900; font-family: 'JetBrains Mono', monospace; }
.stat-card-label { color: var(--text-muted); font-size: 12px; }

.table-responsive { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; padding: 12px 14px; font-size: 12px; color: var(--text-muted); text-transform: uppercase; border-bottom: 2px solid var(--border-aqua); }
.admin-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); vertical-align: middle; font-size: 14px; }
.table-empty { text-align: center; color: var(--text-muted); padding: 34px !important; }
.status-badge { display: inline-flex; padding: 5px 10px; border-radius: var(--radius-full); font-size: 12px; font-weight: 800; }
.status-pending { background: rgba(240,179,93,0.14); color: #b47d1d; }
.status-completed { background: rgba(85,201,122,0.14); color: var(--success); }
.status-failed { background: rgba(239,107,123,0.12); color: var(--danger); }

/* RCON */
.rcon-console { background: #2a343e; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-aqua); }
.rcon-output { height: 380px; overflow-y: auto; padding: 16px; font-family: 'JetBrains Mono', monospace; font-size: 13px; color: #c6ffff; }
.rcon-line { margin-bottom: 5px; word-break: break-word; }
.rcon-info { color: #8aeaea; }
.rcon-cmd { color: var(--pink-light); }
.rcon-response { color: #8ee0b4; }
.rcon-error { color: #ff97a5; }
.rcon-input-wrapper { display: flex; gap: 8px; align-items: center; padding: 12px 16px; background: #1e2830; border-top: 1px solid rgba(198,255,255,0.1); }
.rcon-prompt { color: var(--pink); font-weight: 800; font-family: 'JetBrains Mono', monospace; }
.rcon-input { flex: 1; background: transparent; border: none; outline: none; color: #fff; font-family: 'JetBrains Mono', monospace; }

/* LOGS */
.logs-container { max-height: 600px; overflow-y: auto; }
.log-entry { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.log-time { min-width: 140px; font-family: 'JetBrains Mono', monospace; color: var(--text-muted); font-size: 11px; }
.log-type { min-width: 70px; text-align: center; font-size: 11px; font-weight: 800; border-radius: var(--radius-full); padding: 3px 8px; }
.log-type-payment { background: rgba(85,201,122,0.12); color: var(--success); }
.log-type-rcon { background: rgba(198,255,255,0.2); color: var(--aqua-deep); }
.log-type-admin { background: rgba(255,182,193,0.15); color: var(--pink-deep); }
.log-type-error { background: rgba(239,107,123,0.12); color: var(--danger); }
.log-type-info { background: rgba(0,0,0,0.04); color: var(--text-muted); }
.log-message { flex: 1; color: var(--text-sub); }
.log-player { color: var(--pink-deep); font-weight: 800; }

.manual-form { max-width: 520px; }
.manual-form .form-group { margin-bottom: 16px; }
.manual-form label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 8px; color: var(--text-sub); }
.quick-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.manual-result { margin-top: 16px; padding: 14px; border-radius: var(--radius); font-family: 'JetBrains Mono', monospace; font-size: 13px; }
.manual-result.success { background: rgba(85,201,122,0.12); color: var(--success); border: 1px solid rgba(85,201,122,0.2); }
.manual-result.error { background: rgba(239,107,123,0.12); color: var(--danger); border: 1px solid rgba(239,107,123,0.2); }

.settings-form { max-width: 400px; }
.settings-form .form-group { margin-bottom: 16px; }
.settings-form label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 6px; color: var(--text-sub); }

/* PRODUCT UI */
.icon-type-selector { display: flex; gap: 8px; margin-bottom: 12px; }
.icon-type-option { flex: 1; cursor: pointer; border: 2px solid var(--border-aqua); padding: 10px 14px; border-radius: var(--radius); background: #fff; transition: var(--transition); text-align: center; font-weight: 700; user-select: none; }
.icon-type-option input { display: none; }
.icon-type-option.active { background: var(--pink-light); border-color: var(--pink); color: var(--pink-deep); }
.image-upload-area { display: flex; flex-direction: column; gap: 10px; }
.image-upload-box { border: 2px dashed var(--border-aqua); border-radius: var(--radius-lg); min-height: 120px; display: flex; align-items: center; justify-content: center; background: var(--aqua-light); cursor: pointer; transition: var(--transition); }
.image-upload-box:hover { border-color: var(--pink); background: var(--pink-light); }
.image-upload-box.dragover { border-color: var(--pink); background: var(--pink-light); }
.upload-placeholder { display: flex; flex-direction: column; align-items: center; gap: 6px; color: var(--text-muted); font-size: 13px; }
.upload-icon { font-size: 30px; }
.upload-preview { max-width: 90px; max-height: 90px; object-fit: contain; border-radius: var(--radius); }
.image-url-divider { text-align: center; color: var(--text-muted); font-size: 12px; }
.image-url-wrapper { display: flex; gap: 8px; }
.image-url-wrapper .input-field { flex: 1; }
.color-input-wrapper { display: flex; align-items: center; gap: 8px; }
.color-picker { width: 44px; height: 44px; border: 2px solid var(--border-aqua); border-radius: var(--radius); background: transparent; cursor: pointer; }
.toggle-wrapper { display: flex; align-items: center; gap: 10px; padding-top: 8px; }
.toggle { position: relative; display: inline-block; width: 48px; height: 26px; }
.toggle input { display: none; }
.toggle-slider { position: absolute; inset: 0; background: rgba(0,0,0,0.1); border-radius: var(--radius-full); transition: var(--transition); cursor: pointer; }
.toggle-slider::before { content: ''; position: absolute; width: 20px; height: 20px; left: 3px; top: 3px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); transition: var(--transition); }
.toggle input:checked + .toggle-slider { background: var(--success); }
.toggle input:checked + .toggle-slider::before { transform: translateX(22px); }
.toggle-label { font-size: 14px; font-weight: 600; color: var(--text-sub); }

.uploaded-gallery label { display: block; margin-bottom: 8px; font-size: 12px; color: var(--text-muted); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(56px, 1fr)); gap: 8px; }
.gallery-item { width: 56px; height: 56px; border-radius: var(--radius); overflow: hidden; border: 2px solid transparent; cursor: pointer; background: #fff; box-shadow: var(--shadow-sm); }
.gallery-item.selected { border-color: var(--pink); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

.product-table-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; }
.product-table-icon.emoji { font-size: 24px; }
.product-table-icon img { width: 36px; height: 36px; object-fit: contain; border-radius: 8px; }
.product-slug { font-size: 11px; color: var(--text-muted); font-family: 'JetBrains Mono', monospace; }
.product-cmd-cell { max-width: 220px; }
.product-cmd-code { display: inline-block; background: var(--aqua-light); color: var(--text-muted); border-radius: 8px; padding: 3px 6px; font-size: 11px; font-family: 'JetBrains Mono', monospace; }
.category-badge { display: inline-block; padding: 4px 10px; border-radius: var(--radius-full); font-size: 11px; font-weight: 800; }
.category-subscription { background: rgba(255,182,193,0.15); color: var(--pink-deep); }
.category-cases { background: rgba(198,255,255,0.25); color: var(--aqua-deep); }
.category-extras { background: rgba(199,166,255,0.14); color: #8f66d8; }
.category-donate { background: rgba(240,179,93,0.14); color: #b47d1d; }

/* WIKI */
.wiki-layout { display: flex; min-height: 100vh; padding-top: 68px; }
.wiki-sidebar { position: fixed; top: 68px; left: 0 !important; transform: none !important; width: 300px; min-width: 300px; height: calc(100vh - 68px); z-index: 1100; background: rgba(230,255,255,0.92); backdrop-filter: blur(18px); border-right: 1px solid var(--border-aqua); overflow-y: auto; box-shadow: 2px 0 20px rgba(198,255,255,0.12); pointer-events: auto !important; }
.wiki-sidebar * { pointer-events: auto !important; }
.wiki-sidebar-header { position: sticky; top: 0; background: rgba(255,255,255,0.8); padding: 18px; border-bottom: 1px solid var(--border-aqua); z-index: 2; backdrop-filter: blur(10px); }
.wiki-sidebar-header h2 { margin-bottom: 10px; }
.wiki-search { width: 100%; background: #fff; border: 2px solid var(--border-aqua); border-radius: var(--radius); padding: 10px 12px; outline: none; color: var(--text-main); }
.wiki-search:focus { border-color: var(--pink); }
.wiki-nav { padding: 10px; }
.wiki-loading { text-align: center; padding: 18px; color: var(--text-muted); }
.wiki-nav-category { margin-bottom: 4px; }
.wiki-nav-cat-header { display: flex; align-items: center; gap: 8px; cursor: pointer; user-select: none; padding: 10px 12px; border-radius: var(--radius); font-size: 14px; font-weight: 800; color: var(--text-sub); transition: var(--transition); }
.wiki-nav-cat-header:hover { background: var(--aqua-light); color: var(--aqua-deep); }
.wiki-nav-cat-name { flex: 1; }
.wiki-nav-cat-arrow { font-size: 10px; transition: transform 0.2s ease; }
.wiki-nav-category.open .wiki-nav-cat-arrow { transform: rotate(90deg); }
.wiki-nav-articles { display: none; padding-left: 14px; }
.wiki-nav-category.open .wiki-nav-articles { display: block; }
.wiki-nav-article { display: flex; align-items: center; gap: 8px; text-decoration: none; padding: 8px 12px; border-radius: var(--radius); color: var(--text-muted); font-size: 13px; transition: var(--transition); cursor: pointer; }
.wiki-nav-article:hover { background: var(--aqua-light); color: var(--text-main); }
.wiki-nav-article.active { background: var(--pink-light); color: var(--pink-deep); font-weight: 700; }
.wiki-nav-empty { font-size: 12px; color: var(--text-muted); padding: 8px 12px; }
.wiki-content { flex: 1; min-width: 0; margin-left: 300px; padding: 34px 34px 60px; }
.wiki-welcome { min-height: 60vh; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 10px; text-align: center; }
.wiki-welcome-icon { font-size: 58px; }
.wiki-quick-links { margin-top: 18px; display: grid; width: 100%; max-width: 760px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.wiki-quick-link { background: var(--bg-card); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 16px; text-decoration: none; transition: var(--transition); border: 1px solid var(--border-aqua); display: flex; flex-direction: column; gap: 4px; }
.wiki-quick-link:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--pink-light); }
.wiki-quick-icon { font-size: 22px; }
.wiki-quick-title { font-weight: 800; }
.wiki-quick-cat { font-size: 12px; color: var(--text-muted); }
.wiki-article { background: var(--bg-card); border-radius: var(--radius-xl); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--border-aqua); }
.wiki-breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.wiki-breadcrumb a { color: var(--pink-deep); text-decoration: none; }
.wiki-article-title { font-size: 32px; font-weight: 900; margin-bottom: 10px; background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.wiki-article-meta { display: flex; gap: 14px; flex-wrap: wrap; color: var(--text-muted); font-size: 13px; border-bottom: 1px solid var(--border); padding-bottom: 14px; margin-bottom: 18px; }
.wiki-article-body h2 { margin: 24px 0 10px; font-size: 24px; color: var(--text-main); }
.wiki-article-body h3 { margin: 18px 0 8px; font-size: 18px; }
.wiki-article-body p, .wiki-article-body ul, .wiki-article-body ol { margin-bottom: 14px; color: var(--text-sub); }
.wiki-article-body ul, .wiki-article-body ol { padding-left: 20px; }
.wiki-article-body code { background: var(--aqua-light); border-radius: 8px; padding: 2px 7px; color: var(--aqua-deep); font-family: 'JetBrains Mono', monospace; }
.wiki-article-body img { max-width: 100%; border-radius: var(--radius); margin: 14px 0; }
.wiki-article-body a { color: var(--pink-deep); }

.wiki-admin-tree { display: flex; flex-direction: column; gap: 12px; }
.wiki-tree-category { border-radius: var(--radius-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); border: 1px solid var(--border-aqua); }
.wiki-tree-cat-header, .wiki-tree-article { display: flex; align-items: center; gap: 10px; padding: 12px 14px; }
.wiki-tree-cat-header { background: var(--aqua-light); border-bottom: 1px solid var(--border-aqua); }
.wiki-tree-cat-header span:first-child, .wiki-tree-article span:first-child { flex: 1; }
.wiki-tree-articles { padding: 6px; }
.wiki-tree-empty { padding: 12px; color: var(--text-muted); font-size: 12px; }
.editor-toolbar { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.editor-btn { border: 1px solid var(--border-aqua); background: #fff; border-radius: 8px; padding: 6px 10px; cursor: pointer; font-size: 12px; font-weight: 700; transition: var(--transition); }
.editor-btn:hover { border-color: var(--pink); color: var(--pink-deep); }
.wiki-preview { min-height: 90px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--border-aqua); padding: 14px; color: var(--text-sub); }

/* TOAST */
.toast { position: fixed; right: 20px; bottom: 20px; z-index: 4000; max-width: 340px; background: rgba(255,255,255,0.92); backdrop-filter: blur(14px); border-radius: var(--radius-lg); padding: 14px 16px; box-shadow: var(--shadow); border: 2px solid var(--border-aqua); transform: translateY(100px); opacity: 0; transition: var(--transition); }
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-color: rgba(85,201,122,0.3); color: var(--success); }
.toast.error { border-color: rgba(239,107,123,0.3); color: var(--danger); }
.toast.info { border-color: var(--aqua-dark); color: var(--aqua-deep); }

/* FOOTER */
.footer { padding: 70px 24px 24px; background: linear-gradient(180deg, transparent, rgba(255,240,243,0.3)); }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; margin-bottom: 30px; }
.footer-brand p { color: var(--text-muted); margin-top: 6px; }
.footer-brand { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.footer-logo-img { width: 38px; height: 38px; border-radius: 10px; object-fit: contain; }
.footer-links h4 { margin-bottom: 10px; font-size: 14px; }
.footer-links a { display: block; text-decoration: none; color: var(--text-muted); margin-bottom: 6px; transition: var(--transition); }
.footer-links a:hover { color: var(--pink-deep); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 18px; text-align: center; color: var(--text-muted); font-size: 12px; }

.table-pagination { margin-top: 16px; display: flex; justify-content: center; gap: 8px; }
.page-btn { border: 2px solid var(--border-aqua); background: #fff; border-radius: 10px; padding: 6px 10px; cursor: pointer; font-weight: 700; transition: var(--transition); }
.page-btn:hover { border-color: var(--pink); }
.page-btn.active { background: var(--gradient-main); color: #fff; border-color: transparent; }

/* ANIMATIONS */
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-12px); } }
@keyframes spin { to { transform: rotate(360deg); } }

/* RESPONSIVE */
@media (max-width: 900px) {
    .floating-card { display: none; }
    .axolotl { display: none; }
    .footer-content { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: rgba(230,255,255,0.95); backdrop-filter: blur(16px); flex-direction: column; padding: 14px; border-bottom: 1px solid var(--border-aqua); }
    .nav-links.open { display: flex; }
    .nav-mobile-toggle { display: flex; }
    .hero-stats { flex-direction: column; }
    .hero-actions { flex-direction: column; align-items: center; }
    .products-grid, .products-grid-small, .pricing-grid { grid-template-columns: 1fr; }
    .admin-body { display: block; }
    .admin-sidebar { position: relative; width: 100%; min-width: 100%; height: auto; left: 0 !important; }
    .admin-main { margin-left: 0; padding: 16px; }
    .wiki-layout { display: block; }
    .wiki-sidebar { position: relative; top: 0; width: 100%; min-width: 100%; height: auto; left: 0 !important; }
    .wiki-content { margin-left: 0; padding: 18px; }
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--aqua-light); }
::-webkit-scrollbar-thumb { background: var(--pink-light); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--pink); }