/* ============================================ */
/* LUDERE MC – MODERNÍ STYLY S ANIMACEMI        */
/* ============================================ */

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

:root {
    --bg: #08070d;
    --bg-2: #0f0d18;
    --bg-3: #171325;
    --bg-glass: rgba(255, 255, 255, 0.03);
    --bg-glass-2: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.16);
    --emerald: #8b5cf6;
    --emerald-light: #c4b5fd;
    --emerald-dark: #5b21b6;
    --emerald-glow: rgba(139, 92, 246, 0.35);
    --emerald-soft: rgba(139, 92, 246, 0.08);
    --gold: #f0abfc;
    --gold-glow: rgba(240, 171, 252, 0.3);
    --diamond: #a78bfa;
    --diamond-glow: rgba(167, 139, 250, 0.28);
    --redstone: #ef4444;
    --text: #f3f1f8;
    --text-2: #a29cb5;
    --text-3: #5d5770;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-smooth: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    --purple: var(--emerald);
    --purple-light: var(--emerald-light);
    --purple-dark: var(--emerald-dark);
    --purple-glow: var(--emerald-glow);
    --purple-soft: var(--emerald-soft);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', 'Sora', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background-image:
        radial-gradient(ellipse 60% 40% at 20% 10%, rgba(139, 92, 246, 0.06), transparent 60%),
        radial-gradient(ellipse 50% 35% at 80% 15%, rgba(167, 139, 250, 0.04), transparent 50%);
}

::-webkit-scrollbar {
    width: 6px;
}

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

::-webkit-scrollbar-thumb {
    background: #2b2440;
    border-radius: 99px;
}

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

::selection {
    background: var(--emerald);
    color: #0c0714;
}

/* ============================================ */
/* TYPOGRAPHY                                    */
/* ============================================ */
h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
}

.pixel-tag {
    font-family: 'Silkscreen', monospace;
    letter-spacing: 1px;
}

/* ============================================ */
/* MODERNÍ BUTTONY                               */
/* ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    outline: none;
    transform: translateY(0);
}

.btn:focus-visible {
    box-shadow: 0 0 0 3px var(--emerald-glow);
}

/* Shimmer efekt na pozadí tlačítek */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(115deg, transparent, rgba(255,255,255,0.08), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 200%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--emerald) 0%, #9a6cf7 100%);
    color: #fff;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15) inset;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition);
}

.btn-primary:hover {
    box-shadow: 0 10px 28px var(--emerald-glow), 0 4px 12px rgba(139, 92, 246, 0.4);
    transform: translateY(-3px);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
    background: var(--bg-glass-2);
    color: var(--text);
    border: 1px solid var(--border);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.btn-discord {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.btn-discord:hover {
    box-shadow: 0 10px 28px rgba(88, 101, 242, 0.5), 0 4px 12px rgba(88, 101, 242, 0.3);
    transform: translateY(-3px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-2);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    color: var(--text);
    border-color: var(--border-hover);
    background: rgba(255,255,255,0.03);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: 12px;
}

.btn-pill {
    border-radius: 99px;
    padding: 10px 20px;
}

.btn-sm {
    padding: 7px 14px;
    font-size: 0.8rem;
}

.hero-discord-btn {
    background: var(--bg-glass-2);
    color: var(--text);
    border: 1px solid var(--border-hover);
    backdrop-filter: blur(8px);
    transition: background var(--transition-smooth), transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.hero-discord-btn i {
    color: #5865F2;
    font-size: 1.1rem;
    transition: transform var(--transition-smooth), color var(--transition-smooth);
}

.hero-discord-btn:hover {
    background: rgba(88, 101, 242, 0.12);
    border-color: rgba(88, 101, 242, 0.55);
    box-shadow: 0 0 26px rgba(88, 101, 242, 0.3), 0 8px 20px rgba(0,0,0,0.3);
    transform: translateY(-3px);
}

.hero-discord-btn:hover i {
    transform: scale(1.2) rotate(-6deg);
    color: #8b9cff;
}

/* ============================================ */
/* NAVBAR                                        */
/* ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 68px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: background 0.5s ease, box-shadow 0.5s ease, backdrop-filter 0.5s ease, border-color 0.5s ease;
}

.navbar.scrolled {
    background: rgba(8, 7, 13, 0.75);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    transition: opacity var(--transition-smooth);
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-logo img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform var(--transition-smooth);
}

.nav-logo:hover img {
    transform: scale(1.1) rotate(-5deg);
}

.nav-logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.3px;
    color: var(--text);
    background: linear-gradient(135deg, var(--text) 0%, var(--emerald-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    color: var(--text-2);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 0;
    transition: color var(--transition), transform var(--transition);
    position: relative;
}

.nav-links a i {
    font-size: 1rem;
    color: var(--text-3);
    transition: color var(--transition), transform var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--emerald), var(--emerald-light));
    transition: width var(--transition-smooth);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--text);
    transform: translateY(-1px);
}

.nav-links a:hover i {
    color: var(--emerald-light);
    transform: scale(1.15);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--emerald-light);
}

.nav-links a.active i {
    color: var(--emerald-light);
}

.nav-links a.active::after {
    width: 100%;
}

.nav-links .shop-link,
.nav-links .shop-link i {
    color: var(--gold) !important;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-badge-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--emerald-soft);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--emerald-light);
    padding: 8px 14px;
    border-radius: 9px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.admin-badge-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(139,92,246,0.1));
    opacity: 0;
    transition: opacity var(--transition);
}

.admin-badge-btn:hover {
    background: rgba(139, 92, 246, 0.16);
    border-color: var(--emerald);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

.admin-badge-btn:hover::before {
    opacity: 1;
}

.user-menu {
    position: relative;
}

.user-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px 6px 6px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 99px;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.user-trigger:hover {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-3);
    border: 2px solid transparent;
    transition: border-color var(--transition);
}

.user-trigger:hover .user-avatar {
    border-color: var(--emerald-light);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-name {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text);
}

.user-chevron {
    font-size: 1.1rem;
    color: var(--text-2);
    transition: transform 0.3s ease;
}

.user-menu.open .user-chevron {
    transform: rotate(180deg);
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 200px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 8px;
    display: none;
    flex-direction: column;
    gap: 2px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04);
    opacity: 0;
    transform: translateY(-8px) scale(0.97);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.user-menu.open .user-dropdown {
    display: flex;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--text-2);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    position: relative;
}

.dropdown-item i {
    font-size: 1.1rem;
    color: var(--text-3);
    transition: color var(--transition), transform var(--transition);
}

.dropdown-item:hover {
    background: var(--bg-glass);
    color: var(--text);
    transform: translateX(4px);
}

.dropdown-item:hover i {
    color: var(--emerald-light);
    transform: scale(1.15);
}

.dropdown-item.danger {
    color: #f87171;
}

.dropdown-item.danger i {
    color: #f87171;
}

.dropdown-item.danger:hover {
    background: rgba(239, 68, 68, 0.1);
}

.dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 0;
}

.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px;
    transition: transform var(--transition);
}

.nav-mobile-toggle:hover {
    transform: scale(1.15);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(8, 7, 13, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px;
    z-index: 999;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    transform: translateY(-16px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.mobile-menu.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-2);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius);
    transition: all var(--transition);
    transform: translateX(0);
}

.mobile-menu a:hover {
    background: var(--bg-glass);
    color: var(--text);
    transform: translateX(6px);
}

.mobile-menu a i {
    font-size: 1.2rem;
    width: 22px;
    text-align: center;
    transition: transform var(--transition);
}

.mobile-menu a:hover i {
    transform: scale(1.2);
}

/* ============================================ */
/* ANNOUNCEMENTS STRIP                            */
/* ============================================ */
.announcements-strip {
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.08) 0%, rgba(167, 139, 250, 0.04) 100%);
    border-top: 1px solid rgba(139, 92, 246, 0.16);
    border-bottom: 1px solid rgba(139, 92, 246, 0.16);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.announcements-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(196, 181, 253, 0.12), transparent);
    animation: scan-line 8s linear infinite;
}

@keyframes scan-line {
    0% { left: -100%; }
    100% { left: 200%; }
}

.announcements-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.ann-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--emerald-light);
    white-space: nowrap;
    background: rgba(139, 92, 246, 0.1);
    padding: 8px 16px;
    border-radius: 99px;
    border: 1px solid rgba(139, 92, 246, 0.25);
    animation: labelPulse 3s ease-in-out infinite;
}

@keyframes labelPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0); }
    50% { box-shadow: 0 0 12px rgba(139, 92, 246, 0.15); }
}

.ann-items {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex: 1;
}

.ann-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 99px;
    font-size: 0.82rem;
    color: var(--text-2);
    transition: all var(--transition-smooth);
    animation: annItemFade 0.5s ease both;
}

.ann-item:nth-child(1) { animation-delay: 0s; }
.ann-item:nth-child(2) { animation-delay: 0.1s; }
.ann-item:nth-child(3) { animation-delay: 0.2s; }
.ann-item:nth-child(4) { animation-delay: 0.3s; }
.ann-item:nth-child(5) { animation-delay: 0.4s; }

@keyframes annItemFade {
    from { opacity: 0; transform: translateX(-12px); }
    to { opacity: 1; transform: translateX(0); }
}

.ann-item:hover {
    border-color: var(--emerald-light);
    background: rgba(139, 92, 246, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139,92,246,0.1);
}

.ann-item.urgent {
    border-color: rgba(239, 68, 68, 0.5);
    background: rgba(239, 68, 68, 0.1);
    color: #fca5a5;
    animation: urgentPulse 2s infinite, annItemFade 0.5s ease both;
}

@keyframes urgentPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
}

.ann-item.info-type { border-color: rgba(167, 139, 250, 0.4); }
.ann-item.warning-type { border-color: rgba(240, 171, 252, 0.5); }
.ann-item i { font-size: 0.95rem; }

/* ============================================ */
/* HERO                                           */
/* ============================================ */
.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 150px 40px 90px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    margin-top: -68px;
    padding-top: calc(150px + 68px);
    background: none;
}

/* Parallax efekt – jemný pohyb pozadí při scrollu */
.hero-bg-slideshow {
    position: absolute;
    top: -68px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    height: calc(100% + 68px);
    will-change: transform;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    filter: brightness(0.45) saturate(0.9);
    transition: opacity 2.5s ease, transform 7s ease-out;
    will-change: opacity, transform;
}

.hero-bg-img.active {
    opacity: 1;
    transform: scale(1.08);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(8, 7, 13, 0.4) 50%, var(--bg) 100%);
    pointer-events: none;
}

/* Ambientní světelné efekty s plynulejší animací */
.hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-shapes::before,
.hero-shapes::after {
    content: '';
    position: absolute;
    top: -10%;
    width: 60%;
    height: 140%;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.10) 0%, transparent 60%);
    filter: blur(50px);
    animation: beamPulse 7s ease-in-out infinite;
}

.hero-shapes::before {
    left: -5%;
    transform: rotate(18deg);
    transform-origin: top left;
}

.hero-shapes::after {
    right: -5%;
    transform: rotate(-18deg);
    transform-origin: top right;
    animation-delay: -3.5s;
    background: linear-gradient(180deg, rgba(196, 181, 253, 0.07) 0%, transparent 60%);
}

@keyframes beamPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: floatShape 13s ease-in-out infinite;
}

.hero-shape-1 {
    width: 420px;
    height: 420px;
    background: rgba(139, 92, 246, 0.08);
    top: -12%;
    left: -8%;
}

.hero-shape-2 {
    width: 320px;
    height: 320px;
    background: rgba(167, 139, 250, 0.05);
    bottom: -12%;
    right: 5%;
    animation-delay: -4s;
}

.hero-shape-3 {
    width: 240px;
    height: 240px;
    background: rgba(240, 171, 252, 0.04);
    top: 55%;
    left: 40%;
    animation: floatShape 10s ease-in-out infinite alternate;
}

@keyframes floatShape {
    0%   { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(35px, -25px) scale(1.04); }
    66%  { transform: translate(-25px, 35px) scale(0.96); }
    100% { transform: translate(0, 0) scale(1); }
}

.hero-grid {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
}

.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 780px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.28);
    border-radius: 99px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
    color: var(--text-2);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    animation: fadeInDown 0.8s var(--transition-bounce) both;
}

.hero-eyebrow .dot {
    width: 7px;
    height: 7px;
    background: var(--emerald);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--emerald);
    animation: pulse-dot 2.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 8px var(--emerald), 0 0 0 0 rgba(139, 92, 246, 0.6); }
    50% { box-shadow: 0 0 14px var(--emerald), 0 0 0 8px rgba(139, 92, 246, 0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

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

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.4rem, 5.2vw, 4.2rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 22px;
    animation: fadeInUp 0.9s var(--transition-bounce) 0.15s both;
}

.hero-title .accent {
    background: linear-gradient(135deg, #c4b5fd 0%, #8b5cf6 45%, #6d28d9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: shimmerText 4s ease-in-out infinite;
    background-size: 200% 200%;
}

@keyframes shimmerText {
    0%, 100% { background-position: 0% 50%; filter: brightness(1); }
    50% { background-position: 100% 50%; filter: brightness(1.25); }
}

.hero-desc {
    font-size: 1.08rem;
    color: var(--text-2);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 560px;
    animation: fadeInUp 0.9s var(--transition-bounce) 0.25s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.9s var(--transition-bounce) 0.35s both;
}

/* IP Chip s animovaným okrajem */
.ip-chip {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: 99px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background var(--transition-smooth), border-color var(--transition-smooth), transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.ip-chip::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 99px;
    padding: 2px;
    background: conic-gradient(from var(--angle, 0deg), transparent 0%, var(--emerald) 30%, var(--diamond) 60%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition);
    animation: spinBorder 3s linear infinite;
}

@property --angle {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}

@keyframes spinBorder {
    to { --angle: 360deg; }
}

.ip-chip:hover::before {
    opacity: 1;
}

.ip-chip:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(139,92,246,0.15);
}

.ip-chip-label {
    padding: 0;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ip-chip-label::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--emerald);
    box-shadow: 0 0 12px var(--emerald);
    flex-shrink: 0;
    animation: pulse-dot 2.5s infinite;
}

.ip-chip.copied {
    border-color: rgba(52, 211, 153, 0.5);
    background: rgba(52, 211, 153, 0.1);
    animation: chipCopiedFlash 0.6s ease;
}

@keyframes chipCopiedFlash {
    0% { box-shadow: 0 0 0 rgba(52, 211, 153, 0); }
    40% { box-shadow: 0 0 40px rgba(52, 211, 153, 0.4); }
    100% { box-shadow: 0 0 0 rgba(52, 211, 153, 0); }
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
    animation: fadeInUp 0.9s var(--transition-bounce) 0.45s both;
    background: transparent;
    border: none;
    padding: 0;
    max-width: 640px;
    width: 100%;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 70px;
    transition: transform var(--transition);
}

.hero-stat:hover {
    transform: translateY(-4px);
}

.hero-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--text);
    text-shadow: 0 0 14px var(--emerald-glow);
    transition: text-shadow var(--transition);
}

.hero-stat:hover .hero-stat-value {
    text-shadow: 0 0 24px var(--emerald-glow), 0 0 48px var(--emerald-glow);
}

.hero-stat-label {
    font-size: 0.76rem;
    color: var(--text-2);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.stat-divider { display: none; }

.hero-logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 36px;
    animation: fadeInUp 0.9s var(--transition-bounce) 0.05s both;
    position: relative;
}

.hero-logo-mark img {
    width: 88px;
    height: 88px;
    object-fit: contain;
    filter: drop-shadow(0 0 40px var(--emerald-glow));
    transition: transform var(--transition-smooth), filter var(--transition-smooth);
    animation: logoFloat 4s ease-in-out infinite;
}

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

.hero-logo-mark img:hover {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 0 60px var(--emerald-glow));
}

.hero-logo-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle, var(--emerald-glow) 0%, transparent 70%);
    filter: blur(20px);
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

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

/* ============================================ */
/* SECTIONS – MODERNÍ VZHLED                     */
/* ============================================ */
.section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: var(--bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--emerald-light);
    margin-bottom: 18px;
    background: rgba(139, 92, 246, 0.1);
    padding: 7px 14px;
    border-radius: 99px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    animation: labelPulse 3s ease-in-out infinite;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text) 0%, var(--emerald-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-2);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================ */
/* FEATURES MINI GRID (inline v features_intro)  */
/* ============================================ */
.features-intro-section {
    padding-bottom: 80px;
}

.features-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.feature-mini-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.feature-mini-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--emerald-light), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.6s ease;
}

.feature-mini-card:hover::before {
    transform: scaleX(1);
}

.feature-mini-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139,92,246,0.03), transparent);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.feature-mini-card:hover::after {
    opacity: 1;
}

.feature-mini-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 16px 40px -12px rgba(139, 92, 246, 0.25);
}

.feature-mini-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    background: rgba(139, 92, 246, 0.1);
    transition: all var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.feature-mini-card:hover .feature-mini-icon {
    background: rgba(139, 92, 246, 0.2);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.feature-mini-text h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    transition: color var(--transition);
}

.feature-mini-card:hover .feature-mini-text h4 {
    color: var(--emerald-light);
}

.feature-mini-text p {
    color: var(--text-2);
    font-size: 0.82rem;
    line-height: 1.55;
}

/* Stagger animace pro karty */
[data-stagger] .feature-mini-card {
    opacity: 0;
    transform: translateY(30px);
}

[data-stagger].visible .feature-mini-card:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
[data-stagger].visible .feature-mini-card:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.08s; }
[data-stagger].visible .feature-mini-card:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.16s; }
[data-stagger].visible .feature-mini-card:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.24s; }
[data-stagger].visible .feature-mini-card:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.32s; }
[data-stagger].visible .feature-mini-card:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.40s; }

/* ============================================ */
/* FEATURE CARDS (původní – zachováno)           */
/* ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 34px 28px;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    cursor: default;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, var(--emerald-light), var(--diamond), var(--emerald-light));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: var(--bg-2);
    border-radius: inherit;
    z-index: -1;
    transition: background 0.5s;
}

.feature-card:hover::before {
    opacity: 0.5;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 30px 60px -20px rgba(139, 92, 246, 0.3);
}

.slot-corner {
    position: absolute;
    width: 14px;
    height: 14px;
    border-color: rgba(255, 255, 255, 0.14);
    opacity: 0;
    transition: opacity 0.4s ease, border-color 0.4s ease;
    pointer-events: none;
}

.slot-corner-tl { top: 10px; left: 10px; border-top: 2px solid; border-left: 2px solid; }
.slot-corner-br { bottom: 10px; right: 10px; border-bottom: 2px solid; border-right: 2px solid; }

.feature-card:hover .slot-corner {
    opacity: 1;
    border-color: var(--emerald-light);
}

.feature-card .glow-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--emerald-light), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.6s ease;
}

.feature-card:hover .glow-line {
    transform: scaleX(1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: all var(--transition-smooth);
    background: rgba(139, 92, 246, 0.1);
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
}

.feature-card:hover .feature-icon {
    background: rgba(139, 92, 246, 0.2);
    box-shadow: 0 0 24px rgba(139, 92, 246, 0.4);
    transform: scale(1.08) rotate(-5deg);
}

.feature-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-2);
    font-size: 0.9rem;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

/* ============================================ */
/* DISCORD CTA                                    */
/* ============================================ */
.discord-cta {
    padding: 0 40px 100px;
    background: var(--bg);
    position: relative;
    z-index: 1;
}

.discord-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1) 0%, rgba(139, 92, 246, 0.09) 100%);
    border: 1px solid rgba(88, 101, 242, 0.22);
    border-radius: var(--radius-xl);
    padding: 60px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    transition: box-shadow var(--transition-smooth), border-color var(--transition-smooth), transform var(--transition-smooth);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 30px 30px;
}

.discord-cta-inner:hover {
    border-color: rgba(88, 101, 242, 0.45);
    box-shadow: 0 0 60px rgba(88, 101, 242, 0.18);
    transform: translateY(-4px);
}

.discord-cta-inner::before {
    content: '\ed1c';
    font-family: 'boxicons';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 260px;
    color: rgba(88, 101, 242, 0.05);
    pointer-events: none;
    line-height: 1;
    animation: floatDiscordIcon 6s ease-in-out infinite;
}

@keyframes floatDiscordIcon {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    50% { transform: translateY(-55%) rotate(4deg); }
}

.discord-cta-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.discord-cta-text p {
    color: var(--text-2);
    font-size: 1rem;
}

.btn-discord-pulse {
    position: relative;
}

.btn-discord-pulse::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: calc(var(--radius-lg) + 4px);
    border: 2px solid rgba(88, 101, 242, 0.5);
    animation: discordPulse 2.5s ease-out infinite;
}

@keyframes discordPulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================ */
/* MAP SECTION                                    */
/* ============================================ */
.map-section {
    padding: 0 40px 100px;
    background: var(--bg);
    position: relative;
    z-index: 1;
}

.map-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.map-iframe-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.05);
    transition: all var(--transition-smooth);
    position: relative;
}

.map-iframe-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.09), transparent);
    pointer-events: none;
}

.map-iframe-wrap:hover {
    border-color: rgba(139, 92, 246, 0.45);
    box-shadow: 0 0 60px rgba(139, 92, 246, 0.15);
    transform: translateY(-6px);
}

.map-iframe-wrap iframe {
    width: 100%;
    height: 560px;
    border: none;
    display: block;
}

/* ============================================ */
/* FOOTER                                         */
/* ============================================ */
.footer {
    border-top: 1px solid var(--border);
    padding: 40px;
    text-align: center;
    background: var(--bg-2);
    position: relative;
    z-index: 1;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-2);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color var(--transition), transform var(--transition);
}

.footer-logo:hover {
    color: var(--text);
    transform: translateY(-2px);
}

.footer-logo img {
    transition: transform var(--transition);
}

.footer-logo:hover img {
    transform: rotate(-8deg) scale(1.1);
}

.footer-copy {
    color: var(--text-3);
    font-size: 0.82rem;
}

.footer-made {
    font-size: 0.8rem;
    color: var(--text-3);
}

.footer-made span {
    color: var(--emerald-light);
    font-weight: 600;
    display: inline-block;
    animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ============================================ */
/* TOAST – MODERNÍ                               */
/* ============================================ */
#toast-root {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 99999;
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    pointer-events: none;
}

.toast {
    pointer-events: auto;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(15, 13, 24, 0.95);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.03);
    min-width: 300px;
    max-width: 380px;
    animation: toast-in 0.4s var(--transition-bounce);
    transition: opacity 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
}

.toast.hiding {
    opacity: 0;
    transform: translateX(30px) scale(0.95);
}

.toast-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.toast-icon.success { background: rgba(139, 92, 246, 0.15); color: var(--emerald); }
.toast-icon.error { background: rgba(239, 68, 68, 0.15); color: var(--redstone); }
.toast-icon.info { background: rgba(167, 139, 250, 0.15); color: var(--diamond); }
.toast-icon.warning { background: rgba(240, 171, 252, 0.15); color: var(--gold); }

.toast-body { flex: 1; min-width: 0; }

.toast-title {
    font-weight: 700;
    font-size: 0.88rem;
    margin-bottom: 3px;
}

.toast-msg {
    font-size: 0.82rem;
    color: var(--text-2);
    line-height: 1.45;
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-3);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0;
    margin-top: 1px;
    line-height: 1;
    transition: color 0.15s, transform 0.15s;
}

.toast-close:hover {
    color: var(--text);
    transform: scale(1.2);
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    background: var(--emerald);
}

.toast.success .toast-progress { background: var(--emerald); }
.toast.error .toast-progress { background: var(--redstone); }
.toast.warning .toast-progress { background: var(--gold); }

@keyframes toast-in {
    from { opacity: 0; transform: translateX(50px) scale(0.9); }
    to   { opacity: 1; transform: translateX(0) scale(1); }
}

/* ============================================ */
/* MODAL                                          */
/* ============================================ */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-backdrop.show {
    display: flex;
}

.modal {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    width: 100%;
    max-width: 480px;
    position: relative;
    animation: modal-in 0.4s var(--transition-bounce);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
}

@keyframes modal-in {
    from { opacity: 0; transform: translateY(40px) scale(0.93); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-2);
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s;
}

.modal-close-btn:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
    transform: rotate(90deg);
}

.form-group { margin-bottom: 20px; }

.form-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-2);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 13px 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: all var(--transition-smooth);
    outline: none;
}

.form-input::placeholder { color: var(--text-3); }

.form-input:focus {
    border-color: var(--emerald);
    background: var(--emerald-soft);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.14);
    transform: scale(1.01);
}

textarea.form-input { min-height: 110px; resize: vertical; }

.type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.type-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 8px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 0.78rem;
    color: var(--text-2);
    transition: all 0.2s;
}

.type-option i { font-size: 1.2rem; }

.type-option:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.type-option.selected {
    border-color: var(--emerald);
    background: var(--emerald-soft);
    color: var(--text);
    box-shadow: 0 0 12px rgba(139,92,246,0.15);
}

.type-option.t-warning.selected { border-color: var(--gold); background: rgba(240, 171, 252, 0.08); }
.type-option.t-important.selected { border-color: var(--redstone); background: rgba(239, 68, 68, 0.08); }

.check-row {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: var(--text-2);
    transition: color var(--transition);
}

.check-row:hover {
    color: var(--text);
}

.check-row input {
    accent-color: var(--emerald);
    width: 16px;
    height: 16px;
}

.modal-actions {
    display: flex;
    gap: 12px;
}

.modal-suspend {
    text-align: center;
    max-width: 400px;
}

.suspend-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.12);
    color: var(--redstone);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    animation: shakeIcon 2s ease-in-out infinite;
}

@keyframes shakeIcon {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-3px) rotate(-3deg); }
    75% { transform: translateX(3px) rotate(3deg); }
}

.modal-suspend h2 { font-family: 'Space Grotesk', sans-serif; margin-bottom: 12px; }
.modal-suspend p { color: var(--text-2); margin-bottom: 24px; font-size: 0.9rem; }

/* ============================================ */
/* ADMIN BAR & EDIT MODE                          */
/* ============================================ */
#adminBar {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(8, 7, 13, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 24px;
    display: none;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
    animation: slideDown 0.3s ease;
}

#adminBar.active { display: flex; }

.edit-mode .section-wrapper {
    position: relative;
    border: 1px dashed rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-xl);
    padding: 10px;
    margin: 10px 0;
}

.section-toolbar {
    display: none;
    position: absolute;
    top: -15px;
    right: 10px;
    background: var(--bg-2);
    border: 1px solid var(--emerald);
    border-radius: 20px;
    padding: 4px 8px;
    z-index: 500;
    gap: 6px;
}

.edit-mode .section-wrapper:hover .section-toolbar { display: flex; }

.section-toolbar button {
    background: none;
    border: none;
    color: var(--emerald-light);
    cursor: pointer;
    font-size: 1rem;
    padding: 3px 6px;
    border-radius: 50%;
    transition: background 0.2s, transform 0.2s;
}

.section-toolbar button:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: scale(1.15);
}

/* ============================================ */
/* SCROLL ANIMATIONS                              */
/* ============================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="left"].visible { transform: translateX(0); }

[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="right"].visible { transform: translateX(0); }

[data-reveal="scale"] { transform: scale(0.9) translateY(30px); }
[data-reveal="scale"].visible { transform: scale(1) translateY(0); }

[data-stagger]>* {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-stagger].visible>*:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
[data-stagger].visible>*:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.08s; }
[data-stagger].visible>*:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.16s; }
[data-stagger].visible>*:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.24s; }
[data-stagger].visible>*:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.32s; }
[data-stagger].visible>*:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.40s; }
[data-stagger].visible>*:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 0.48s; }
[data-stagger].visible>*:nth-child(8) { opacity: 1; transform: translateY(0); transition-delay: 0.56s; }

/* ============================================ */
/* RESPONSIVE                                     */
/* ============================================ */
@media (max-width: 1024px) {
    .hero-visual { display: none; }
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-mobile-toggle { display: block; }
    .navbar { padding: 0 20px; }
}

@media (max-width: 768px) {
    .hero { padding: 110px 20px 60px; padding-top: calc(110px + 68px); }
    .section { padding: 60px 20px; }
    .discord-cta { padding: 0 20px 60px; }
    .discord-cta-inner { padding: 40px 28px; flex-direction: column; text-align: center; }
    .map-section { padding: 0 20px 60px; }
    .footer { padding: 30px 20px; }
    .footer-inner { flex-direction: column; text-align: center; }
    .hero-stats { gap: 8px 0; }
    .stat-divider { display: none; }
    .hero-actions { flex-direction: column; align-items: center; }
    .announcements-strip-inner { padding: 16px 20px; }
}

@media (max-width: 600px) {
    .features-mini-grid { grid-template-columns: 1fr; }
    .toast { min-width: 0; max-width: calc(100vw - 40px); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    [data-reveal], [data-stagger]>* { opacity: 1 !important; transform: none !important; }
    .hero-bg-img, .hero-bg-img.active { transition: opacity 1s ease !important; transform: none !important; }
}