/* =====================================================
   WZ Camps - Gamer Theme Stylesheet
   Modern, Fast, Lightweight Gaming Aesthetic
   ===================================================== */

/* =====================================================
   CSS VARIABLES
   ===================================================== */
:root {
    /* Primary Colors */
    --wz-bg-primary: #06060b;
    --wz-bg-secondary: #0c0c14;
    --wz-bg-tertiary: #12121e;
    --wz-bg-card: #161625;
    --wz-bg-card-hover: #1a1a2e;
    --wz-bg-input: #10101a;

    /* Accent Colors */
    --wz-cyan: #00e5ff;
    --wz-cyan-dim: rgba(0, 229, 255, 0.15);
    --wz-cyan-glow: rgba(0, 229, 255, 0.4);
    --wz-magenta: #ff0055;
    --wz-magenta-dim: rgba(255, 0, 85, 0.15);
    --wz-green: #00ff88;
    --wz-green-dim: rgba(0, 255, 136, 0.15);
    --wz-gold: #ffd700;
    --wz-gold-dim: rgba(255, 215, 0, 0.15);
    --wz-orange: #ff6b35;
    --wz-red: #ff3760;
    --wz-red-dim: rgba(255, 55, 96, 0.15);
    --wz-purple: #a855f7;
    --wz-purple-dim: rgba(168, 85, 247, 0.15);

    /* Text Colors */
    --wz-text-secondary: #8a8aaa;
    --wz-text: #e0e0f0;
    --wz-text-muted: #6a6a8a;
    --wz-text-bright: #ffffff;

    /* Borders */
    --wz-border: rgba(255, 255, 255, 0.06);
    --wz-border-active: rgba(0, 229, 255, 0.3);

    /* Fonts */
    --wz-font-display: 'Orbitron', sans-serif;
    --wz-font-heading: 'Rajdhani', sans-serif;
    --wz-font-body: 'Exo 2', sans-serif;

    /* Spacing */
    --wz-container: 1200px;
    --wz-radius: 8px;
    --wz-radius-lg: 16px;

    /* Transitions */
    --wz-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --wz-transition-fast: 0.15s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--wz-font-body);
    background: var(--wz-bg-primary);
    color: var(--wz-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

img { max-width: 100%; height: auto; }
a { color: var(--wz-cyan); text-decoration: none; transition: var(--wz-transition); }
a:hover { color: var(--wz-text-bright); }

::selection {
    background: var(--wz-cyan);
    color: var(--wz-bg-primary);
}

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

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

.wz-loader--hidden {
    opacity: 0;
    visibility: hidden;
}

.wz-loader__content {
    text-align: center;
}

.wz-loader__spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--wz-border);
    border-top-color: var(--wz-cyan);
    border-radius: 50%;
    animation: wzSpin 0.8s linear infinite;
    margin: 0 auto 1rem;
}

.wz-loader__text {
    font-family: var(--wz-font-display);
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--wz-cyan);
}

@keyframes wzSpin {
    to { transform: rotate(360deg); }
}

/* =====================================================
   NAVBAR
   ===================================================== */
.wz-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 0;
    background: rgba(6, 6, 11, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--wz-border);
    transition: var(--wz-transition);
}

.wz-navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(6, 6, 11, 0.95);
}

.wz-navbar .wz-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.wz-navbar__brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.wz-navbar__logo {
    height: 36px;
    width: auto;
}

.wz-navbar__logo-text {
    font-family: var(--wz-font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--wz-text-bright);
    letter-spacing: 2px;
}

.wz-glow {
    color: var(--wz-cyan);
    text-shadow: 0 0 10px var(--wz-cyan-glow), 0 0 30px rgba(0, 229, 255, 0.2);
}

.wz-navbar__menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wz-navbar__link {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--wz-text-muted);
    border-radius: var(--wz-radius);
    transition: var(--wz-transition);
    white-space: nowrap;
}

.wz-navbar__link:hover {
    color: var(--wz-text-bright);
    background: rgba(255, 255, 255, 0.05);
}

.wz-navbar__link--admin {
    color: var(--wz-gold);
}

.wz-navbar__user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 0.5rem;
    padding-left: 0.75rem;
    border-left: 1px solid var(--wz-border);
}

.wz-navbar__user-name {
    font-size: 0.875rem;
    color: var(--wz-text);
    white-space: nowrap;
}

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

.wz-navbar__toggle span {
    width: 24px;
    height: 2px;
    background: var(--wz-text);
    border-radius: 2px;
    transition: var(--wz-transition);
}

/* =====================================================
   BUTTONS
   ===================================================== */
.wz-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-family: var(--wz-font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    border-radius: var(--wz-radius);
    cursor: pointer;
    transition: var(--wz-transition);
    text-decoration: none;
    white-space: nowrap;
}

.wz-btn--primary {
    background: var(--wz-cyan);
    color: var(--wz-bg-primary);
    border-color: var(--wz-cyan);
}

.wz-btn--primary:hover {
    background: transparent;
    color: var(--wz-cyan);
    box-shadow: 0 0 20px var(--wz-cyan-glow);
}

.wz-btn--outline {
    background: transparent;
    color: var(--wz-cyan);
    border-color: var(--wz-cyan);
}

.wz-btn--outline:hover {
    background: var(--wz-cyan);
    color: var(--wz-bg-primary);
}

.wz-btn--ghost {
    background: transparent;
    color: var(--wz-text);
    border-color: var(--wz-border);
}

.wz-btn--ghost:hover {
    border-color: var(--wz-text-muted);
    color: var(--wz-text-bright);
}

.wz-btn--danger {
    background: var(--wz-magenta);
    color: #fff;
    border-color: var(--wz-magenta);
}

.wz-btn--danger:hover {
    background: transparent;
    color: var(--wz-magenta);
}

.wz-btn--lg { padding: 0.875rem 2rem; font-size: 1rem; }
.wz-btn--sm { padding: 0.375rem 0.875rem; font-size: 0.8125rem; }
.wz-btn--xs { padding: 0.25rem 0.5rem; font-size: 0.75rem; }
.wz-btn--block { width: 100%; }

/* =====================================================
   HERO SECTION
   ===================================================== */
.wz-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0 3rem;
    overflow: hidden;
}

.wz-hero__grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.wz-hero__particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.wz-hero__content {
    position: relative;
    text-align: center;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.wz-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    font-family: var(--wz-font-display);
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--wz-cyan);
    border: 1px solid var(--wz-cyan-dim);
    border-radius: 50px;
    background: var(--wz-cyan-dim);
    margin-bottom: 1.5rem;
    animation: wzFadeInUp 0.8s ease both;
}

.wz-hero__title {
    font-family: var(--wz-font-display);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--wz-text-bright);
    margin-bottom: 1.25rem;
    animation: wzFadeInUp 0.8s 0.1s ease both;
    text-shadow: 0 0 40px rgba(0, 229, 255, 0.15);
}

.wz-hero__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--wz-text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: wzFadeInUp 0.8s 0.2s ease both;
}

.wz-hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: wzFadeInUp 0.8s 0.3s ease both;
}

.wz-hero__stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: wzFadeInUp 0.8s 0.4s ease both;
}

.wz-stat {
    text-align: center;
}

.wz-stat__number {
    display: block;
    font-family: var(--wz-font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--wz-cyan);
}

.wz-stat__label {
    font-size: 0.75rem;
    color: var(--wz-text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.wz-hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--wz-text-muted);
    animation: wzBounce 2s infinite;
    font-size: 1.25rem;
}

@keyframes wzBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

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

/* =====================================================
   SECTIONS
   ===================================================== */
.wz-section {
    padding: 5rem 0;
    position: relative;
}

.wz-section--features { background: var(--wz-bg-secondary); }
.wz-section--howto { background: var(--wz-bg-primary); }
.wz-section--rules {
    background: var(--wz-bg-secondary);
    border-top: 1px solid var(--wz-border);
    border-bottom: 1px solid var(--wz-border);
}
.wz-section--camps { background: var(--wz-bg-primary); }
.wz-section--cta {
    background: linear-gradient(135deg, var(--wz-bg-secondary), var(--wz-bg-primary));
}

.wz-section__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.wz-section__badge {
    display: inline-block;
    font-family: var(--wz-font-display);
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: var(--wz-cyan);
    padding: 0.35rem 1rem;
    border: 1px solid var(--wz-cyan-dim);
    border-radius: 50px;
    background: var(--wz-cyan-dim);
    margin-bottom: 1rem;
}

.wz-section__title {
    font-family: var(--wz-font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--wz-text-bright);
    margin-bottom: 0.75rem;
}

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

/* =====================================================
   FEATURE CARDS
   ===================================================== */
.wz-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.wz-feature-card {
    background: var(--wz-bg-card);
    border: 1px solid var(--wz-border);
    border-radius: var(--wz-radius-lg);
    padding: 2rem 1.5rem;
    transition: var(--wz-transition);
    position: relative;
    overflow: hidden;
}

.wz-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--wz-cyan), var(--wz-magenta));
    transform: scaleX(0);
    transition: var(--wz-transition);
}

.wz-feature-card:hover {
    border-color: var(--wz-border-active);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 229, 255, 0.08);
}

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

.wz-feature-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--wz-cyan-dim);
    color: var(--wz-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.wz-feature-card__title {
    font-family: var(--wz-font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--wz-text-bright);
    margin-bottom: 0.75rem;
}

.wz-feature-card__text {
    font-size: 0.9rem;
    color: var(--wz-text-muted);
    line-height: 1.6;
}

/* =====================================================
   STEPS
   ===================================================== */
.wz-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    position: relative;
}

.wz-step {
    text-align: center;
    position: relative;
    padding: 1.5rem 1rem;
}

.wz-step__number {
    font-family: var(--wz-font-display);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 229, 255, 0.08);
    line-height: 1;
    margin-bottom: -0.5rem;
}

.wz-step__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--wz-bg-card);
    border: 2px solid var(--wz-cyan-dim);
    color: var(--wz-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
    transition: var(--wz-transition);
}

.wz-step:hover .wz-step__icon {
    background: var(--wz-cyan);
    color: var(--wz-bg-primary);
    box-shadow: 0 0 30px var(--wz-cyan-glow);
}

.wz-step__title {
    font-family: var(--wz-font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--wz-text-bright);
    margin-bottom: 0.5rem;
}

.wz-step__text {
    font-size: 0.875rem;
    color: var(--wz-text-muted);
    line-height: 1.5;
}

/* =====================================================
   RULES CARDS
   ===================================================== */
.wz-rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.wz-rule-card {
    background: var(--wz-bg-card);
    border: 1px solid var(--wz-border);
    border-radius: var(--wz-radius-lg);
    overflow: hidden;
}

.wz-rule-card__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background: rgba(0, 229, 255, 0.04);
    border-bottom: 1px solid var(--wz-border);
}

.wz-rule-card__header i {
    color: var(--wz-cyan);
    font-size: 1.1rem;
}

.wz-rule-card__header h3 {
    font-family: var(--wz-font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--wz-text-bright);
}

.wz-rule-card__list {
    list-style: none;
    padding: 1.25rem 1.5rem;
}

.wz-rule-card__list li {
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--wz-text);
    border-bottom: 1px solid var(--wz-border);
    line-height: 1.5;
}

.wz-rule-card__list li:last-child { border: none; }
.wz-rule-card__list strong { color: var(--wz-text-bright); }
.wz-rule-card__list em { color: var(--wz-cyan); font-style: normal; font-weight: 600; }

.wz-rule-card__table {
    padding: 1rem 1.5rem;
}

.wz-rule-card__table table {
    width: 100%;
    border-collapse: collapse;
}

.wz-rule-card__table th,
.wz-rule-card__table td {
    padding: 0.5rem 0.75rem;
    text-align: left;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--wz-border);
}

.wz-rule-card__table th {
    color: var(--wz-text-muted);
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wz-rule-card__table td {
    color: var(--wz-text);
}

.wz-rule-card__note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--wz-magenta);
    font-weight: 600;
}

.wz-rule-card__note i {
    margin-right: 0.5rem;
}

/* =====================================================
   CAMP CARDS
   ===================================================== */
.wz-camps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.wz-camp-card {
    background: var(--wz-bg-card);
    border: 1px solid var(--wz-border);
    border-radius: var(--wz-radius-lg);
    overflow: hidden;
    transition: var(--wz-transition);
}

.wz-camp-card:hover {
    border-color: var(--wz-border-active);
    transform: translateY(-4px);
}

.wz-camp-card__banner {
    height: 160px;
    background: linear-gradient(135deg, var(--wz-bg-tertiary), var(--wz-bg-secondary));
    background-size: cover;
    background-position: center;
}

.wz-camp-card__banner--default {
    background: linear-gradient(135deg, rgba(0,229,255,0.1), rgba(255,0,85,0.1));
}

.wz-camp-card__body {
    padding: 1.25rem;
}

.wz-camp-card__status {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.wz-camp-card__status--registration {
    background: var(--wz-green-dim);
    color: var(--wz-green);
}

.wz-camp-card__status--day1,
.wz-camp-card__status--day2 {
    background: var(--wz-magenta-dim);
    color: var(--wz-magenta);
    animation: wzPulse 2s infinite;
}

@keyframes wzPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.wz-camp-card__name {
    font-family: var(--wz-font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--wz-text-bright);
    margin-bottom: 0.5rem;
}

.wz-camp-card__desc {
    font-size: 0.85rem;
    color: var(--wz-text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.wz-camp-card__meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: var(--wz-text-muted);
    margin-bottom: 1rem;
}

.wz-camp-card__meta i {
    color: var(--wz-cyan);
    margin-right: 0.25rem;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.wz-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--wz-bg-card);
    border: 1px solid var(--wz-border);
    border-radius: var(--wz-radius-lg);
    position: relative;
    overflow: hidden;
}

.wz-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 229, 255, 0.05), transparent);
}

.wz-cta__title {
    font-family: var(--wz-font-heading);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--wz-text-bright);
    margin-bottom: 1rem;
    position: relative;
}

.wz-cta__text {
    font-size: 1rem;
    color: var(--wz-text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* =====================================================
   AUTH PAGES
   ===================================================== */
.wz-auth {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1rem 3rem;
}

.wz-auth__container {
    width: 100%;
    max-width: 440px;
}

.wz-auth__card {
    background: var(--wz-bg-card);
    border: 1px solid var(--wz-border);
    border-radius: var(--wz-radius-lg);
    padding: 2.5rem 2rem;
}

.wz-auth__header {
    text-align: center;
    margin-bottom: 2rem;
}

.wz-auth__title {
    font-family: var(--wz-font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--wz-text-bright);
    margin: 1rem 0 0.5rem;
}

.wz-auth__subtitle {
    font-size: 0.875rem;
    color: var(--wz-text-muted);
}

.wz-auth__footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--wz-text-muted);
}

.wz-link {
    color: var(--wz-cyan);
    font-weight: 600;
}

.wz-link:hover {
    text-decoration: underline;
}

/* =====================================================
   FORMS
   ===================================================== */
.wz-form__group {
    margin-bottom: 1.25rem;
}

.wz-form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--wz-text);
    margin-bottom: 0.5rem;
}

.wz-form__label i {
    margin-right: 0.25rem;
    color: var(--wz-text-muted);
}

.wz-required {
    color: var(--wz-magenta);
}

.wz-form__input,
.wz-form__select,
.wz-form__textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--wz-font-body);
    font-size: 1rem;
    color: var(--wz-text);
    background: var(--wz-bg-input);
    border: 1px solid var(--wz-border);
    border-radius: var(--wz-radius);
    transition: var(--wz-transition);
    outline: none;
}

.wz-form__input:focus,
.wz-form__select:focus,
.wz-form__textarea:focus {
    border-color: var(--wz-cyan);
    box-shadow: 0 0 0 3px var(--wz-cyan-dim);
}

.wz-form__input::placeholder {
    color: var(--wz-text-muted);
}

.wz-form__input--sm {
    padding: 0.375rem 0.5rem;
    font-size: 0.875rem;
}

.wz-form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236a6a8a'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 20px;
    padding-right: 2.5rem;
}

.wz-form__textarea {
    resize: vertical;
    min-height: 80px;
}

.wz-form__input-group {
    position: relative;
}

.wz-form__toggle-pass {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--wz-text-muted);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0.25rem;
}

.wz-form__row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.wz-form__group--2 {
    grid-column: span 2;
}

.wz-form__divider {
    margin: 2rem 0 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--wz-border);
}

.wz-form__divider h4 {
    font-family: var(--wz-font-heading);
    color: var(--wz-cyan);
    font-size: 1rem;
}

.wz-form__subtitle {
    font-family: var(--wz-font-heading);
    font-size: 0.9rem;
    color: var(--wz-text);
    margin: 1rem 0 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--wz-border);
}

.wz-form__checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.wz-form__checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--wz-cyan);
    cursor: pointer;
}

.wz-form__actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.wz-form--inline {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.wz-form--compact .wz-form__group {
    margin-bottom: 0.75rem;
}

/* =====================================================
   ALERTS
   ===================================================== */
.wz-alert {
    padding: 0.875rem 1.25rem;
    border-radius: var(--wz-radius);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.wz-alert p { margin-bottom: 0.25rem; }
.wz-alert p:last-child { margin-bottom: 0; }

.wz-alert--error {
    background: var(--wz-magenta-dim);
    border: 1px solid rgba(255, 0, 85, 0.3);
    color: #ff6b8a;
}

.wz-alert--success {
    background: var(--wz-green-dim);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: var(--wz-green);
}

.wz-alert--warning {
    background: var(--wz-gold-dim);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--wz-gold);
}

/* Flash Messages */
.wz-flash {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 0.75rem 0;
    animation: wzSlideDown 0.4s ease;
}

.wz-flash .wz-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wz-flash__close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0.7;
}

.wz-flash--success { background: rgba(0, 255, 136, 0.1); color: var(--wz-green); border-bottom: 1px solid rgba(0,255,136,0.2); }
.wz-flash--error { background: rgba(255, 0, 85, 0.1); color: #ff6b8a; border-bottom: 1px solid rgba(255,0,85,0.2); }
.wz-flash--warning { background: rgba(255, 215, 0, 0.1); color: var(--wz-gold); border-bottom: 1px solid rgba(255,215,0,0.2); }
.wz-flash--info { background: rgba(0, 229, 255, 0.1); color: var(--wz-cyan); border-bottom: 1px solid rgba(0,229,255,0.2); }

@keyframes wzSlideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* =====================================================
   BADGES
   ===================================================== */
.wz-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--wz-text-muted);
}

.wz-badge--gold { background: var(--wz-gold-dim); color: var(--wz-gold); }
.wz-badge--danger { background: var(--wz-magenta-dim); color: var(--wz-magenta); }
.wz-badge--default { background: rgba(255,255,255,0.05); color: var(--wz-text-muted); }

.wz-badge--draft { background: rgba(255,255,255,0.05); color: var(--wz-text-muted); }
.wz-badge--registration { background: var(--wz-green-dim); color: var(--wz-green); }
.wz-badge--day1 { background: var(--wz-cyan-dim); color: var(--wz-cyan); }
.wz-badge--day2 { background: var(--wz-magenta-dim); color: var(--wz-magenta); }
.wz-badge--finished { background: var(--wz-gold-dim); color: var(--wz-gold); }
.wz-badge--cancelled { background: rgba(255,255,255,0.05); color: var(--wz-text-muted); }
.wz-badge--pending { background: rgba(255,255,255,0.05); color: var(--wz-text-muted); }
.wz-badge--live { background: var(--wz-magenta-dim); color: var(--wz-magenta); }

/* =====================================================
   PANELS
   ===================================================== */
.wz-panel {
    background: var(--wz-bg-card);
    border: 1px solid var(--wz-border);
    border-radius: var(--wz-radius-lg);
    overflow: hidden;
}

.wz-panel--full {
    grid-column: 1 / -1;
}

.wz-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: rgba(0, 229, 255, 0.02);
    border-bottom: 1px solid var(--wz-border);
}

.wz-panel__header h3 {
    font-family: var(--wz-font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--wz-text-bright);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wz-panel__header h3 i {
    color: var(--wz-cyan);
}

.wz-panel__body {
    padding: 1.25rem 1.5rem;
}

/* =====================================================
   TABLES
   ===================================================== */
.wz-table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.wz-table {
    width: 100%;
    border-collapse: collapse;
}

.wz-table th,
.wz-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--wz-border);
}

.wz-table th {
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--wz-text-muted);
    background: rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.wz-table td {
    color: var(--wz-text);
}

.wz-table tbody tr:hover {
    background: rgba(0, 229, 255, 0.02);
}

.wz-table__row--champion {
    background: var(--wz-gold-dim) !important;
    border-left: 3px solid var(--wz-gold);
}

.wz-table__row--matchpoint {
    background: var(--wz-magenta-dim) !important;
}

.wz-table--compact th,
.wz-table--compact td {
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
}

.wz-table__actions {
    display: flex;
    gap: 0.5rem;
    white-space: nowrap;
}

.wz-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-family: var(--wz-font-display);
    font-size: 0.7rem;
    font-weight: 700;
    background: var(--wz-bg-secondary);
    color: var(--wz-text-muted);
}

.wz-rank--1 { background: var(--wz-gold-dim); color: var(--wz-gold); }
.wz-rank--2 { background: rgba(192, 192, 192, 0.15); color: #c0c0c0; }
.wz-rank--3 { background: rgba(205, 127, 50, 0.15); color: #cd7f32; }

/* =====================================================
   DASHBOARD
   ===================================================== */
.wz-dashboard {
    padding: 6rem 0 3rem;
    min-height: 100vh;
}

.wz-dashboard__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.wz-dashboard__title {
    font-family: var(--wz-font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--wz-text-bright);
}

.wz-dashboard__title i {
    color: var(--wz-cyan);
    margin-right: 0.5rem;
}

.wz-dashboard__subtitle {
    color: var(--wz-text-muted);
    font-size: 0.9rem;
}

.wz-dashboard__grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 1.5rem;
    align-items: start;
}

.wz-dashboard__sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.wz-dashboard__content {
    display: grid;
    gap: 1.5rem;
}

/* Team Info */
.wz-team-info {
    text-align: center;
    margin-bottom: 1.25rem;
}

.wz-team-info__logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 0.75rem;
    display: block;
    border: 2px solid var(--wz-border);
}

.wz-team-info__logo--default {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wz-cyan-dim);
    color: var(--wz-cyan);
    font-size: 2rem;
}

.wz-team-info__name {
    font-family: var(--wz-font-heading);
    font-size: 1.2rem;
    color: var(--wz-text-bright);
}

.wz-team-info__tag {
    font-size: 0.8rem;
    color: var(--wz-cyan);
    font-weight: 600;
}

.wz-team-members { margin-top: 1rem; }

.wz-team-members h5 {
    font-size: 0.8rem;
    color: var(--wz-text-muted);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wz-team-member {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--wz-text);
    border-bottom: 1px solid var(--wz-border);
}

.wz-team-member:last-child { border: none; }

.wz-team-member i {
    color: var(--wz-cyan);
}

/* Camp Mini */
.wz-camp-mini {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--wz-border);
}

.wz-camp-mini:last-child { border: none; }

.wz-camp-mini h5 {
    font-family: var(--wz-font-heading);
    font-size: 0.95rem;
    color: var(--wz-text-bright);
}

/* Camp Rows */
.wz-camps-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wz-camp-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem;
    background: var(--wz-bg-secondary);
    border: 1px solid var(--wz-border);
    border-radius: var(--wz-radius);
    transition: var(--wz-transition);
}

.wz-camp-row:hover {
    border-color: var(--wz-border-active);
}

.wz-camp-row__info {
    flex: 1;
}

.wz-camp-row__info h4 {
    font-family: var(--wz-font-heading);
    font-size: 1.1rem;
    color: var(--wz-text-bright);
    margin-bottom: 0.5rem;
}

.wz-camp-row__meta {
    display: flex;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--wz-text-muted);
    align-items: center;
    flex-wrap: wrap;
}

.wz-camp-row__stats {
    display: flex;
    gap: 1.5rem;
}

.wz-camp-row__stat {
    text-align: center;
}

.wz-camp-row__stat-value {
    display: block;
    font-family: var(--wz-font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--wz-text-bright);
}

.wz-camp-row__stat-label {
    font-size: 0.65rem;
    color: var(--wz-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Empty State */
.wz-empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--wz-text-muted);
}

.wz-empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: rgba(0, 229, 255, 0.2);
}

.wz-empty-state h4 {
    font-family: var(--wz-font-heading);
    font-size: 1.2rem;
    color: var(--wz-text);
    margin-bottom: 0.5rem;
}

/* =====================================================
   ADMIN
   ===================================================== */
.wz-admin {
    padding: 6rem 0 3rem;
    min-height: 100vh;
}

.wz-admin__header {
    margin-bottom: 2rem;
}

.wz-admin__header h1 {
    font-family: var(--wz-font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--wz-text-bright);
    margin-bottom: 1rem;
}

.wz-admin__header h1 i {
    color: var(--wz-cyan);
}

.wz-admin__nav {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 0.5rem;
    background: var(--wz-bg-card);
    border-radius: var(--wz-radius);
    border: 1px solid var(--wz-border);
}

.wz-admin__nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--wz-text-muted);
    border-radius: var(--wz-radius);
    transition: var(--wz-transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wz-admin__nav-link:hover {
    color: var(--wz-text);
    background: rgba(255, 255, 255, 0.03);
}

.wz-admin__nav-link--active {
    color: var(--wz-cyan);
    background: var(--wz-cyan-dim);
}

.wz-admin__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.wz-admin__grid--wide {
    grid-template-columns: 1fr;
}

/* Stats Grid */
.wz-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.wz-stat-card {
    background: var(--wz-bg-card);
    border: 1px solid var(--wz-border);
    border-radius: var(--wz-radius-lg);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--wz-transition);
}

.wz-stat-card:hover {
    border-color: var(--wz-border-active);
}

.wz-stat-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--wz-cyan-dim);
    color: var(--wz-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.wz-stat-card__number {
    display: block;
    font-family: var(--wz-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wz-text-bright);
}

.wz-stat-card__label {
    font-size: 0.75rem;
    color: var(--wz-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Activity Log */
.wz-activity-list {
    max-height: 400px;
    overflow-y: auto;
}

.wz-activity {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--wz-border);
}

.wz-activity:last-child { border: none; }

.wz-activity__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--wz-cyan-dim);
    color: var(--wz-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.wz-activity__info {
    flex: 1;
    font-size: 0.8125rem;
}

.wz-activity__info strong {
    color: var(--wz-text-bright);
}

.wz-activity__info span {
    display: block;
    color: var(--wz-text-muted);
}

.wz-activity__info small {
    color: var(--wz-text-muted);
    opacity: 0.7;
}

/* Match Blocks */
.wz-match-block {
    background: var(--wz-bg-secondary);
    border: 1px solid var(--wz-border);
    border-radius: var(--wz-radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.wz-match-block__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.wz-match-block__header h4 {
    font-family: var(--wz-font-heading);
    font-size: 0.95rem;
    color: var(--wz-text-bright);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* =====================================================
   FOOTER
   ===================================================== */
.wz-footer {
    background: var(--wz-bg-secondary);
    border-top: 1px solid var(--wz-border);
    padding: 3rem 0 1.5rem;
}

.wz-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.wz-footer__slogan {
    color: var(--wz-text-muted);
    font-size: 0.875rem;
    margin-top: 0.75rem;
    max-width: 280px;
}

.wz-footer__links h4 {
    font-family: var(--wz-font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--wz-text-bright);
    margin-bottom: 1rem;
}

.wz-footer__links a {
    display: block;
    color: var(--wz-text-muted);
    font-size: 0.85rem;
    padding: 0.25rem 0;
    transition: var(--wz-transition);
}

.wz-footer__links a:hover {
    color: var(--wz-cyan);
}

.wz-footer__social h4 {
    font-family: var(--wz-font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--wz-text-bright);
    margin-bottom: 1rem;
}

.wz-footer__social-icons {
    display: flex;
    gap: 0.75rem;
}

.wz-footer__social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--wz-bg-card);
    border: 1px solid var(--wz-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wz-text-muted);
    transition: var(--wz-transition);
}

.wz-footer__social-icons a:hover {
    background: var(--wz-cyan);
    color: var(--wz-bg-primary);
    border-color: var(--wz-cyan);
}

.wz-footer__bottom {
    padding-top: 1.5rem;
    border-top: 1px solid var(--wz-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--wz-text-muted);
}

.wz-footer__powered strong {
    color: var(--wz-cyan);
}

/* =====================================================
   CONFIRM MODAL
   ===================================================== */
.wz-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: wzFadeIn 0.2s ease;
}

.wz-modal {
    background: var(--wz-bg-card);
    border: 1px solid var(--wz-border);
    border-radius: var(--wz-radius-lg);
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.wz-modal__icon {
    font-size: 2.5rem;
    color: var(--wz-magenta);
    margin-bottom: 1rem;
}

.wz-modal__text {
    font-size: 1rem;
    color: var(--wz-text);
    margin-bottom: 1.5rem;
}

.wz-modal__actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

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

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.wz-text-muted { color: var(--wz-text-muted); }
.wz-text-success { color: var(--wz-green); }
.wz-text-danger { color: var(--wz-magenta); }

/* =====================================================
   ANIMATIONS
   ===================================================== */
[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

[data-animate="fade-right"] {
    transform: translateX(-20px);
}

[data-animate="fade-right"].visible {
    transform: translateX(0);
}

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

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

@media (max-width: 768px) {
    .wz-navbar__toggle {
        display: flex;
    }

    .wz-navbar__menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(6, 6, 11, 0.98);
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem;
        gap: 0.25rem;
        transform: translateX(100%);
        transition: var(--wz-transition);
    }

    .wz-navbar__menu.active {
        transform: translateX(0);
    }

    .wz-navbar__link {
        padding: 0.875rem 1rem;
        font-size: 1rem;
        border-bottom: 1px solid var(--wz-border);
    }

    .wz-navbar__user {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        padding-top: 1rem;
        border-top: 1px solid var(--wz-border);
        justify-content: space-between;
    }

    .wz-dashboard__grid {
        grid-template-columns: 1fr;
    }

    .wz-camp-row {
        flex-direction: column;
        align-items: stretch;
    }

    .wz-camp-row__stats {
        justify-content: space-around;
    }

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

    .wz-footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .wz-rules-grid {
        grid-template-columns: 1fr;
    }

    .wz-camps-grid {
        grid-template-columns: 1fr;
    }

    .wz-form__row {
        grid-template-columns: 1fr;
    }

    .wz-form__group--2 {
        grid-column: span 1;
    }

    .wz-hero__stats {
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .wz-hero {
        padding: 5rem 0 2rem;
    }

    .wz-section {
        padding: 3rem 0;
    }

    .wz-auth__card {
        padding: 1.5rem 1.25rem;
    }

    .wz-panel__body {
        padding: 1rem;
    }

    .wz-table th,
    .wz-table td {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--wz-text-muted);
}

/* =====================================================
   V2: PLAYER ROSTER
   ===================================================== */
.wz-player-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.wz-player-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--wz-border);
    border-radius: var(--wz-radius);
    transition: border-color 0.2s;
}

.wz-player-item:hover {
    border-color: var(--wz-cyan-dim);
}

.wz-player-item__info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
}

.wz-player-item__info > i {
    color: var(--wz-cyan);
    font-size: 0.9rem;
}

.wz-player-item__info > div {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.wz-player-item__info > div small {
    font-size: 0.7rem;
}

/* =====================================================
   V2: SUBMISSION BLOCKS
   ===================================================== */
.wz-submission-block {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--wz-border);
    border-radius: var(--wz-radius);
    margin-bottom: 1rem;
}

.wz-submission-block__header {
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wz-submission-block__header h4 {
    font-family: var(--wz-font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.wz-submission-status {
    padding: 0.75rem;
    border-radius: var(--wz-radius);
    border-left: 3px solid var(--wz-text-muted);
}

.wz-submission-status--pending {
    border-left-color: var(--wz-gold);
    background: rgba(255, 215, 0, 0.03);
}

.wz-submission-status--approved {
    border-left-color: var(--wz-green);
    background: rgba(0, 255, 136, 0.03);
}

.wz-submission-status--rejected {
    border-left-color: var(--wz-magenta);
    background: rgba(255, 0, 85, 0.03);
}

.wz-submission-status__info p {
    margin: 0.25rem 0;
    font-size: 0.85rem;
}

.wz-submission-resubmit {
    margin-top: 0.75rem;
}

.wz-submission-resubmit summary {
    cursor: pointer;
}

/* =====================================================
   V2: PROFILE PAGE
   ===================================================== */
.wz-profile-avatar {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.wz-profile-avatar__img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--wz-cyan);
    box-shadow: 0 0 20px var(--wz-cyan-dim);
}

.wz-profile-avatar__default {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--wz-bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--wz-cyan);
    border: 3px solid var(--wz-cyan-dim);
}

/* =====================================================
   V2: BADGES (new)
   ===================================================== */
.wz-badge--warning { background: rgba(255, 215, 0, 0.1); color: var(--wz-gold); }
.wz-badge--success { background: var(--wz-green-dim); color: var(--wz-green); }

.wz-btn--success {
    background: var(--wz-green);
    color: #000;
    font-weight: 600;
}

.wz-btn--success:hover {
    background: #00cc6a;
    transform: translateY(-1px);
}

/* =====================================================
   V2: CAMP ROW ACTIONS
   ===================================================== */
.wz-camp-row__actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-shrink: 0;
}

/* =====================================================
   V2: TABLE ROW HIGHLIGHT
   ===================================================== */
.wz-table__row--highlight {
    background: rgba(255, 215, 0, 0.04) !important;
}

.wz-table__row--highlight:hover {
    background: rgba(255, 215, 0, 0.08) !important;
}

/* =====================================================
   V2: NAVBAR USER LINK
   ===================================================== */
a.wz-navbar__user-name {
    text-decoration: none;
    color: var(--wz-text-primary);
    transition: color 0.2s;
}

a.wz-navbar__user-name:hover {
    color: var(--wz-cyan);
}

/* =====================================================
   V3: ADMIN USERS PAGE
   ===================================================== */

/* Stats Grid Compact */
.wz-stats-grid--compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.wz-stats-grid--compact .wz-stat-card {
    padding: 1rem;
}

.wz-stats-grid--compact .wz-stat-card__number {
    font-size: 1.5rem;
}

/* User Actions */
.wz-user-actions {
    display: flex;
    gap: 0.3rem;
    align-items: center;
    flex-wrap: wrap;
}

.wz-user-actions form {
    display: inline;
}

/* Legend Grid */
.wz-legend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
}

.wz-legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--wz-text-secondary);
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    background: var(--wz-bg-tertiary);
}

.wz-legend-item i {
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.wz-legend-item .fa-arrow-up {
    color: var(--wz-cyan);
}

.wz-legend-item .fa-arrow-down {
    color: var(--wz-gold);
}

.wz-legend-item .fa-check-circle {
    color: var(--wz-green);
}

.wz-legend-item .fa-ban {
    color: var(--wz-red);
}

.wz-legend-item .fa-pause-circle {
    color: var(--wz-text-muted);
}

.wz-legend-item .fa-key {
    color: var(--wz-purple);
}

/* Badge danger (for banned status) */
.wz-badge--danger {
    background: var(--wz-red-dim, rgba(255, 55, 95, 0.15));
    color: var(--wz-red);
}

/* Badge info */
.wz-badge--info {
    background: rgba(0, 210, 255, 0.1);
    color: var(--wz-cyan);
}

/* Search form inline adjustments */
.wz-form--search {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: flex-end;
}

.wz-form--search .wz-form__group {
    flex: 1;
    min-width: 150px;
    margin-bottom: 0;
}

.wz-form--search .wz-btn {
    height: 42px;
    align-self: flex-end;
}

@media (max-width: 640px) {
    .wz-legend-grid {
        grid-template-columns: 1fr 1fr;
    }

    .wz-stats-grid--compact {
        grid-template-columns: repeat(3, 1fr);
    }

    .wz-form--search {
        flex-direction: column;
    }

    .wz-form--search .wz-form__group {
        width: 100%;
    }
}

/* SuperAdmin row highlight */
.wz-table__row--superadmin {
    background: var(--wz-purple-dim) !important;
    border-left: 3px solid var(--wz-purple);
}

.wz-table__row--superadmin:hover {
    background: rgba(168, 85, 247, 0.12) !important;
}

/* SuperAdmin badge */
.wz-badge--superadmin {
    background: linear-gradient(135deg, var(--wz-purple-dim), rgba(168, 85, 247, 0.25));
    color: var(--wz-purple);
    font-weight: 600;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

/* =====================================================
   V4: CLAN SYSTEM
   ===================================================== */

.wz-badge--clan {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(14, 165, 233, 0.2));
    color: var(--wz-cyan);
    font-weight: 600;
    border: 1px solid rgba(14, 165, 233, 0.3);
    letter-spacing: 0.5px;
}

/* Clan empty state */
.wz-empty-state {
    text-align: center;
    padding: 2.5rem 1rem;
}

.wz-empty-state > i {
    font-size: 2.5rem;
    color: var(--wz-text-muted);
    opacity: 0.3;
    display: block;
    margin-bottom: 1rem;
}

.wz-empty-state h4 {
    font-family: var(--wz-font-heading);
    color: var(--wz-text);
    margin-bottom: 0.5rem;
}

.wz-empty-state p {
    color: var(--wz-text-muted);
    font-size: 0.9rem;
}

/* Admin grid wide layout */
.wz-admin__grid--wide {
    grid-template-columns: 1fr 1.5fr;
}

@media (max-width: 768px) {
    .wz-admin__grid--wide {
        grid-template-columns: 1fr;
    }
}

/* Compact table */
.wz-table--compact th,
.wz-table--compact td {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
}

/* Mini select for inline clan assignment */
.wz-form__select--mini {
    padding: 0.25rem 1.5rem 0.25rem 0.4rem;
    font-size: 0.75rem;
    min-width: 100px;
    max-width: 140px;
    height: auto;
    line-height: 1.3;
    border: 1px solid var(--wz-cyan);
    border-radius: 4px;
    background-color: var(--wz-bg);
    color: var(--wz-cyan);
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.wz-form__select--mini:hover,
.wz-form__select--mini:focus {
    border-color: var(--wz-cyan);
    box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.15);
    outline: none;
}

.wz-clan-assign-form {
    display: inline-block;
}

/* =====================================================
   V3: ADMIN DASHBOARD — ENHANCED
   ===================================================== */

/* Dashboard greeting */
.wz-dashboard__greeting {
    margin-bottom: 0.5rem;
}

.wz-dashboard__greeting h1 {
    margin-bottom: 0.25rem !important;
}

.wz-dashboard__date {
    font-size: 0.85rem;
    color: var(--wz-text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Dashboard Stats Grid (7 cards) */
.wz-stats-grid--dashboard {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

/* Accent borders on stat cards */
.wz-stat-card--accent-cyan { border-bottom: 2px solid var(--wz-cyan); }
.wz-stat-card--accent-green { border-bottom: 2px solid var(--wz-green); }
.wz-stat-card--accent-gold { border-bottom: 2px solid var(--wz-gold); }
.wz-stat-card--accent-magenta { border-bottom: 2px solid var(--wz-magenta); }

/* Pending Alert Bar */
.wz-dashboard__alert {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: var(--wz-radius-lg);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 107, 53, 0.08));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-left: 4px solid var(--wz-gold);
    animation: wz-pulse-border 2s ease-in-out infinite;
}

@keyframes wz-pulse-border {
    0%, 100% { border-left-color: var(--wz-gold); }
    50% { border-left-color: var(--wz-orange); }
}

.wz-dashboard__alert-icon {
    font-size: 1.5rem;
    color: var(--wz-gold);
    flex-shrink: 0;
    animation: wz-bounce 1s ease-in-out infinite;
}

@keyframes wz-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.wz-dashboard__alert-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.wz-dashboard__alert-content strong {
    color: var(--wz-gold);
    font-family: var(--wz-font-heading);
    font-size: 1rem;
}

.wz-dashboard__alert-content span {
    color: var(--wz-text-muted);
    font-size: 0.85rem;
}

.wz-dashboard__alert-actions {
    flex-shrink: 0;
}

/* Quick Actions */
.wz-quick-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

a.wz-quick-action,
.wz-quick-action {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: var(--wz-radius);
    background: var(--wz-bg-tertiary);
    border: 1px solid var(--wz-border);
    transition: var(--wz-transition);
    text-decoration: none;
    color: var(--wz-text);
}

a.wz-quick-action:hover,
.wz-quick-action:hover {
    background: var(--wz-bg-card-hover);
    border-color: var(--wz-border-active);
    transform: translateX(4px);
    color: var(--wz-text-bright);
}

.wz-quick-action > .wz-quick-action__icon {
    flex: 0 0 36px;
    width: 36px;
    min-width: 36px;
    max-width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.wz-quick-action > .wz-quick-action__info {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.wz-quick-action__info strong {
    font-size: 0.9rem;
    font-family: var(--wz-font-heading);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wz-quick-action__info small {
    color: var(--wz-text-muted);
    font-size: 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wz-quick-action > .wz-quick-action__arrow {
    flex: 0 0 auto;
    color: var(--wz-text-muted);
    font-size: 0.7rem;
    transition: var(--wz-transition);
}

a.wz-quick-action:hover > .wz-quick-action__arrow {
    color: var(--wz-cyan);
    transform: translateX(3px);
}

/* Status Bars */
.wz-status-bars {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.wz-status-bar {
    display: block;
}

.wz-status-bar__header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.35rem;
}

.wz-status-bar__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--wz-text);
}

.wz-status-bar__dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.wz-status-bar__count {
    font-family: var(--wz-font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--wz-text-bright);
}

.wz-status-bar__track {
    display: block;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

.wz-status-bar__fill {
    display: block;
    height: 100%;
    border-radius: 4px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 6px;
}

/* Mini Stats */
.wz-dashboard__mini-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--wz-border);
}

.wz-dashboard__mini-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}

.wz-dashboard__mini-number {
    font-family: var(--wz-font-display);
    font-size: 1.1rem;
    font-weight: 700;
}

.wz-dashboard__mini-stat span:last-child {
    font-size: 0.7rem;
    color: var(--wz-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Camp Cards (dashboard) */
.wz-camp-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.wz-camp-card {
    padding: 0.75rem;
    border-radius: var(--wz-radius);
    background: var(--wz-bg-tertiary);
    border: 1px solid var(--wz-border);
    transition: var(--wz-transition);
}

.wz-camp-card--active {
    border-color: var(--wz-border-active);
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.05);
}

.wz-camp-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.wz-camp-card__name {
    font-family: var(--wz-font-heading);
    font-size: 0.95rem;
    color: var(--wz-text-bright);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.wz-camp-card__meta {
    display: flex;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--wz-text-muted);
    margin-bottom: 0.5rem;
}

.wz-camp-card__meta i {
    margin-right: 0.2rem;
}

.wz-camp-card__progress {
    margin-bottom: 0.5rem;
}

.wz-camp-card__progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.2rem;
}

.wz-camp-card__progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--wz-cyan), var(--wz-green));
    border-radius: 2px;
    transition: width 0.6s ease;
}

.wz-camp-card__progress small {
    font-size: 0.7rem;
    color: var(--wz-text-muted);
}

.wz-camp-card__actions {
    display: flex;
    gap: 0.4rem;
}

/* Recent Users */
.wz-recent-users {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.wz-recent-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--wz-border);
}

.wz-recent-user:last-child {
    border-bottom: none;
}

.wz-recent-user__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--wz-bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wz-cyan);
    font-size: 0.85rem;
    flex-shrink: 0;
    border: 1px solid var(--wz-border);
}

.wz-recent-user__info {
    flex: 1;
    min-width: 0;
}

.wz-recent-user__info strong {
    font-size: 0.85rem;
    color: var(--wz-text-bright);
}

.wz-recent-user__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
    flex-shrink: 0;
}

/* Top Teams */
.wz-top-teams {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.wz-top-team {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--wz-border);
}

.wz-top-team:last-child {
    border-bottom: none;
}

.wz-top-team--first {
    padding: 0.75rem 0.5rem;
    margin: -0.25rem -0.5rem 0;
    border-radius: var(--wz-radius);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.06), transparent);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

.wz-top-team__rank {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--wz-bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--wz-text-muted);
}

.wz-top-team__info {
    flex: 1;
    min-width: 0;
}

.wz-top-team__info strong {
    font-family: var(--wz-font-heading);
    font-size: 0.9rem;
    color: var(--wz-text-bright);
}

.wz-top-team__points {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
}

.wz-top-team__score {
    font-family: var(--wz-font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--wz-gold);
}

.wz-top-team__points small {
    font-size: 0.65rem;
    color: var(--wz-text-muted);
    text-transform: uppercase;
}

/* System Info Footer */
.wz-dashboard__system-info {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 1.25rem;
    margin-top: 1rem;
    border-radius: var(--wz-radius);
    background: var(--wz-bg-card);
    border: 1px solid var(--wz-border);
}

.wz-dashboard__sys-item {
    font-size: 0.75rem;
    color: var(--wz-text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.wz-dashboard__sys-item i {
    font-size: 0.85rem;
    color: var(--wz-cyan);
    opacity: 0.6;
}

/* Mobile Responsive for Dashboard */
@media (max-width: 768px) {
    .wz-stats-grid--dashboard {
        grid-template-columns: repeat(2, 1fr);
    }

    .wz-dashboard__alert {
        flex-direction: column;
        text-align: center;
    }

    .wz-dashboard__system-info {
        gap: 0.75rem;
    }

    .wz-camp-card__name {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .wz-stats-grid--dashboard {
        grid-template-columns: repeat(2, 1fr);
    }

    .wz-stats-grid--dashboard .wz-stat-card:last-child {
        grid-column: span 2;
    }

    .wz-dashboard__mini-stats {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
}
