/* ============================================================
   SHULDI — Cyberpunk Minecraft Theme
   Green Neon • Animated Grid • Gradient Shifts • Alive Design
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
    --sh-primary: #00ff88;
    --sh-primary-dark: #00cc6a;
    --sh-primary-light: #33ffaa;
    --sh-primary-rgb: 0, 255, 136;
    --sh-secondary: #00e5ff;
    --sh-secondary-rgb: 0, 229, 255;
    --sh-accent: #ff3e6c;
    --sh-accent-rgb: 255, 62, 108;
    --sh-purple: #b44aff;
    --sh-purple-rgb: 180, 74, 255;

    --sh-bg: #050a08;
    --sh-bg-deep: #020503;
    --sh-bg-card: rgba(8, 18, 12, 0.75);
    --sh-bg-glass: rgba(5, 10, 8, 0.88);
    --sh-bg-hover: rgba(0, 255, 136, 0.06);

    --sh-border: rgba(0, 255, 136, 0.15);
    --sh-border-light: rgba(0, 255, 136, 0.07);
    --sh-border-active: rgba(0, 255, 136, 0.35);

    --sh-text: #d0e8d8;
    --sh-text-muted: rgba(208, 232, 216, 0.55);
    --sh-text-bright: #ffffff;

    --sh-glow: 0 0 25px rgba(0, 255, 136, 0.25);
    --sh-glow-strong: 0 0 50px rgba(0, 255, 136, 0.45);
    --sh-glow-secondary: 0 0 25px rgba(0, 229, 255, 0.25);
    --sh-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    --sh-shadow-hover: 0 25px 80px rgba(0, 255, 136, 0.15), 0 0 30px rgba(0, 229, 255, 0.08);

    --sh-radius: 16px;
    --sh-radius-sm: 10px;
    --sh-radius-lg: 24px;
    --sh-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --sh-nav-height: 72px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--sh-bg);
    color: var(--sh-text);
    line-height: 1.8;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    overflow-x: hidden;
}

body::-webkit-scrollbar { width: 8px; }
body::-webkit-scrollbar-track { background: var(--sh-bg); }
body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--sh-primary), var(--sh-secondary), var(--sh-purple));
    border-radius: 4px;
}

a { text-decoration: none; color: inherit; transition: color var(--sh-transition); }
a:hover { color: var(--sh-primary-light); }
img { max-width: 100%; height: auto; }

::selection {
    background: rgba(0, 255, 136, 0.3);
    color: #fff;
}

:focus-visible {
    outline: 2px solid var(--sh-primary);
    outline-offset: 3px;
}

/* ============================================================
   ANIMATED GRID BACKGROUND (Canvas)
   ============================================================ */
#shuldi-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

/* ============================================================
   APP WRAPPER
   ============================================================ */
#app {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ============================================================
   TYPOGRAPHY — bigger, bolder
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.15;
    color: var(--sh-text-bright);
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }

/* ============================================================
   FLOATING BACKGROUND BLOBS (animated gradient orbs)
   ============================================================ */
.shuldi-bg-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.08;
}

.shuldi-bg-blob-1 {
    width: 800px;
    height: 800px;
    top: -300px;
    right: -200px;
    background: radial-gradient(circle, var(--sh-primary), transparent 70%);
    animation: shuldiBlobFloat1 20s ease-in-out infinite;
}

.shuldi-bg-blob-2 {
    width: 600px;
    height: 600px;
    bottom: -200px;
    left: -150px;
    background: radial-gradient(circle, var(--sh-secondary), transparent 70%);
    animation: shuldiBlobFloat2 25s ease-in-out infinite;
}

.shuldi-bg-blob-3 {
    width: 500px;
    height: 500px;
    top: 40%;
    left: 50%;
    background: radial-gradient(circle, var(--sh-purple), transparent 70%);
    opacity: 0.05;
    animation: shuldiBlobFloat3 30s ease-in-out infinite;
}

@keyframes shuldiBlobFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-80px, 60px) scale(1.1); }
    50% { transform: translate(40px, -40px) scale(0.9); }
    75% { transform: translate(-60px, -80px) scale(1.05); }
}

@keyframes shuldiBlobFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, -50px) scale(1.15); }
    66% { transform: translate(-70px, 80px) scale(0.85); }
}

@keyframes shuldiBlobFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-120px, -60px) scale(1.2); }
}

/* ============================================================
   NAVBAR — bigger, animated gradient underline
   ============================================================ */
.shuldi-navbar {
    background: var(--sh-bg-glass) !important;
    backdrop-filter: blur(32px) saturate(200%);
    -webkit-backdrop-filter: blur(32px) saturate(200%);
    border-bottom: 1px solid var(--sh-border-light);
    height: var(--sh-nav-height);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: all var(--sh-transition);
}

.shuldi-navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--sh-primary), var(--sh-secondary), var(--sh-purple), var(--sh-primary));
    background-size: 300% 100%;
    animation: shuldiGradientSlide 6s linear infinite;
    opacity: 0.5;
}

@keyframes shuldiGradientSlide {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.shuldi-navbar.scrolled {
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 255, 136, 0.1);
    border-bottom-color: var(--sh-border);
}

.shuldi-brand img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 12px rgba(0, 255, 136, 0.4));
    transition: transform var(--sh-transition);
}

.shuldi-brand:hover img { transform: scale(1.08) rotate(-1deg); }

.shuldi-logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--sh-primary), var(--sh-secondary), var(--sh-purple));
    background-size: 200% 200%;
    animation: shuldiGradientText 4s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 16px rgba(0, 255, 136, 0.3));
    letter-spacing: 0.06em;
}

@keyframes shuldiGradientText {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.shuldi-nav-links .nav-link {
    color: var(--sh-text-muted);
    padding: 0.55rem 1rem;
    font-weight: 500;
    border-radius: var(--sh-radius-sm);
    transition: all var(--sh-transition);
    position: relative;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.74rem;
    letter-spacing: 0.05em;
}

.shuldi-nav-links .nav-link:hover {
    color: var(--sh-primary-light);
    background: var(--sh-bg-hover);
}

.shuldi-nav-links .nav-link.active {
    color: var(--sh-primary);
    background: rgba(0, 255, 136, 0.1);
}

.shuldi-nav-links .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 2px;
    background: linear-gradient(90deg, var(--sh-primary), var(--sh-secondary));
    border-radius: 1px;
    box-shadow: var(--sh-glow);
}

/* Toggler */
.shuldi-toggler {
    border: 1px solid var(--sh-border);
    padding: 0.4rem 0.7rem;
    border-radius: var(--sh-radius-sm);
}

.shuldi-toggler-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--sh-primary);
    position: relative;
    transition: all var(--sh-transition);
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
}

.shuldi-toggler-icon::before,
.shuldi-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--sh-primary);
    left: 0;
    transition: all var(--sh-transition);
}

.shuldi-toggler-icon::before { top: -7px; }
.shuldi-toggler-icon::after { top: 7px; }

/* Dropdown */
.shuldi-dropdown {
    background: rgba(5, 12, 8, 0.96) !important;
    backdrop-filter: blur(28px);
    border: 1px solid var(--sh-border) !important;
    border-radius: var(--sh-radius) !important;
    padding: 0.5rem;
    box-shadow: var(--sh-shadow), var(--sh-glow);
    min-width: 220px;
}

.shuldi-dropdown .dropdown-item {
    color: var(--sh-text-muted);
    border-radius: 8px;
    padding: 0.55rem 0.85rem;
    font-size: 0.85rem;
    transition: all var(--sh-transition);
}

.shuldi-dropdown .dropdown-item:hover,
.shuldi-dropdown .dropdown-item.active {
    background: rgba(0, 255, 136, 0.1);
    color: var(--sh-primary-light);
}

.shuldi-dropdown .dropdown-divider {
    border-color: var(--sh-border-light);
}

/* User */
.shuldi-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--sh-border);
    image-rendering: pixelated;
    margin-right: 8px;
}

.shuldi-user-dropdown {
    color: var(--sh-text) !important;
    font-weight: 500;
    font-size: 0.92rem;
}

/* ============================================================
   SUB-BAR (server IP bar) — animated gradient
   ============================================================ */
.shuldi-subbar {
    background: linear-gradient(135deg, var(--sh-primary-dark), var(--sh-primary), var(--sh-secondary)) !important;
    background-size: 200% 200% !important;
    animation: shuldiGradientSlide 8s linear infinite;
    padding: 0.45rem 0;
    position: relative;
    z-index: 1040;
    overflow: hidden;
}

.shuldi-subbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
    animation: shuldiShimmer 3s infinite;
}

@keyframes shuldiShimmer {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(50%); }
}

.shuldi-subbar-left,
.shuldi-subbar-right {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.shuldi-subbar-players {
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
}

.shuldi-ip-btn {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    padding: 5px 16px;
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.84rem;
    cursor: pointer;
    transition: all var(--sh-transition);
}

.shuldi-ip-btn:hover {
    background: rgba(0, 0, 0, 0.55);
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.12);
}

.shuldi-discord-btn {
    background: rgba(88, 101, 242, 0.35);
    border: 1px solid rgba(88, 101, 242, 0.45);
    border-radius: 8px;
    padding: 5px 14px;
    color: #fff;
    font-size: 1.1rem;
    transition: all var(--sh-transition);
}

.shuldi-discord-btn:hover {
    background: rgba(88, 101, 242, 0.55);
    color: #fff;
}

/* Status dot — bigger pulse */
.shuldi-status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    vertical-align: middle;
}

.shuldi-status-dot.online {
    background: var(--sh-primary);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    animation: shuldiPulse 2s infinite;
}

.shuldi-status-dot.offline {
    background: var(--sh-accent);
}

@keyframes shuldiPulse {
    0%, 100% { box-shadow: 0 0 6px rgba(0, 255, 136, 0.3); }
    50% { box-shadow: 0 0 18px rgba(0, 255, 136, 0.7); }
}

/* ============================================================
   HERO — MUCH bigger, gradient animated, alive
   ============================================================ */
.shuldi-hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 6rem 0 4rem;
}

.shuldi-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 85% 20%, rgba(0, 229, 255, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(180, 74, 255, 0.04) 0%, transparent 40%),
        linear-gradient(180deg, rgba(5, 10, 8, 0.2) 0%, rgba(5, 10, 8, 0.95) 100%);
    z-index: 1;
    animation: shuldiHeroGradientShift 15s ease-in-out infinite;
}

@keyframes shuldiHeroGradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

.shuldi-hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.shuldi-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--sh-border);
    border-radius: 50px;
    padding: 0.4rem 1.2rem;
    font-size: 0.85rem;
    color: var(--sh-primary);
    font-weight: 600;
    margin-bottom: 2rem;
    animation: shuldiFadeInUp 0.6s ease-out both;
}

.shuldi-pulse {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--sh-primary);
    border-radius: 50%;
    animation: shuldiPulse 2s infinite;
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.5);
}

.shuldi-hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, var(--sh-primary-light) 30%, var(--sh-primary) 50%, var(--sh-secondary) 70%, var(--sh-purple) 100%);
    background-size: 200% 200%;
    animation: shuldiGradientText 5s ease infinite, shuldiFadeInUp 0.8s ease-out both;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 6px 24px rgba(0, 255, 136, 0.35));
    letter-spacing: 0.04em;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.shuldi-hero-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.1rem, 3vw, 1.8rem);
    color: var(--sh-secondary);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: shuldiFadeInUp 0.9s ease-out both;
    text-shadow: 0 0 24px rgba(0, 229, 255, 0.4);
}

.shuldi-hero-desc {
    color: var(--sh-text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    animation: shuldiFadeInUp 1s ease-out both;
}

.shuldi-hero-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    animation: shuldiFadeInUp 1.1s ease-out both;
}

/* Scanline */
.shuldi-hero-scanline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--sh-primary), var(--sh-secondary), transparent);
    animation: shuldiScanline 5s linear infinite;
    z-index: 3;
    pointer-events: none;
}

@keyframes shuldiScanline {
    0% { top: 0; opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { top: 100%; opacity: 0; }
}

/* ============================================================
   3D MINECRAFT CUBE — bigger, animated gradient faces
   ============================================================ */
.shuldi-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 900px;
    height: 380px;
}

.shuldi-cube {
    width: 180px;
    height: 180px;
    position: relative;
    transform-style: preserve-3d;
    animation: shuldiCubeRotate 10s infinite linear;
}

.shuldi-cube-face {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 2px solid var(--sh-primary);
    background: rgba(0, 255, 136, 0.03);
    box-shadow: inset 0 0 40px rgba(0, 255, 136, 0.06), 0 0 20px rgba(0, 255, 136, 0.12);
    image-rendering: pixelated;
}

.shuldi-cube-face::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(0, 255, 136, 0.18);
}

.shuldi-cube-face::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--sh-primary);
    box-shadow:
        20px 20px 0 2px var(--sh-primary),
        50px 20px 0 2px var(--sh-primary),
        20px 50px 0 2px var(--sh-primary),
        50px 50px 0 2px var(--sh-primary),
        80px 50px 0 2px var(--sh-primary),
        110px 50px 0 2px var(--sh-primary),
        80px 80px 0 2px var(--sh-primary),
        110px 80px 0 2px var(--sh-primary),
        140px 80px 0 2px var(--sh-primary),
        80px 110px 0 2px var(--sh-primary),
        110px 110px 0 2px var(--sh-primary),
        140px 110px 0 2px var(--sh-primary),
        110px 140px 0 2px var(--sh-primary),
        140px 140px 0 2px var(--sh-primary);
    opacity: 0.25;
}

.shuldi-cube-face.front  { transform: translateZ(90px); }
.shuldi-cube-face.back   { transform: rotateY(180deg) translateZ(90px); }
.shuldi-cube-face.right  { transform: rotateY(90deg) translateZ(90px); }
.shuldi-cube-face.left   { transform: rotateY(-90deg) translateZ(90px); }
.shuldi-cube-face.top    { transform: rotateX(90deg) translateZ(90px); }
.shuldi-cube-face.bottom { transform: rotateX(-90deg) translateZ(90px); }

@keyframes shuldiCubeRotate {
    0%   { transform: rotateX(-25deg) rotateY(0deg); }
    100% { transform: rotateX(-25deg) rotateY(360deg); }
}

/* ============================================================
   ANIMATIONS — more, bigger
   ============================================================ */
@keyframes shuldiFadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes shuldiGlow {
    0%, 100% { box-shadow: 0 0 15px rgba(0, 255, 136, 0.2); }
    50% { box-shadow: 0 0 40px rgba(0, 255, 136, 0.5); }
}

@keyframes shuldiBorderGlow {
    0%, 100% { border-color: rgba(0, 255, 136, 0.15); }
    50% { border-color: rgba(0, 255, 136, 0.35); }
}

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

@keyframes shuldiScaleIn {
    from { opacity: 0; transform: scale(0.85); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes shuldiGradientBorder {
    0% { border-color: var(--sh-primary); }
    33% { border-color: var(--sh-secondary); }
    66% { border-color: var(--sh-purple); }
    100% { border-color: var(--sh-primary); }
}

/* ============================================================
   BUTTONS — gradient animated, neon glow, bigger
   ============================================================ */
.shuldi-btn-neon {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--sh-primary-dark), var(--sh-primary), var(--sh-secondary));
    background-size: 200% 200%;
    animation: shuldiGradientSlide 4s linear infinite;
    color: #000;
    font-weight: 700;
    padding: 0.75rem 1.8rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all var(--sh-transition);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.78rem;
}

.shuldi-btn-neon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--sh-transition);
}

.shuldi-btn-neon:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.4), 0 0 20px rgba(0, 229, 255, 0.15);
    color: #000;
}

.shuldi-btn-neon:hover::after { opacity: 1; }

.shuldi-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    border: 2px solid var(--sh-border);
    color: var(--sh-primary-light);
    font-weight: 600;
    padding: 0.75rem 1.8rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--sh-transition);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    animation: shuldiGradientBorder 6s linear infinite;
}

.shuldi-btn-outline:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--sh-primary);
    color: var(--sh-primary);
    transform: translateY(-3px);
    box-shadow: var(--sh-glow), var(--sh-glow-secondary);
}

.shuldi-btn-ghost { color: var(--sh-text-muted) !important; font-weight: 500; }
.shuldi-btn-ghost:hover { color: var(--sh-primary-light) !important; }

.shuldi-btn-lg { padding: 0.85rem 2.5rem; font-size: 0.85rem; }
.shuldi-btn-sm { padding: 0.45rem 1.2rem; font-size: 0.72rem; }

/* Bootstrap btn override */
.btn-primary {
    background: linear-gradient(135deg, var(--sh-primary-dark), var(--sh-primary)) !important;
    color: #000 !important;
    border: none !important;
    font-weight: 600;
    border-radius: var(--sh-radius-sm);
    transition: all var(--sh-transition);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--sh-primary), var(--sh-primary-light)) !important;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.35);
    transform: translateY(-2px);
}

/* ============================================================
   SECTIONS — bigger spacing
   ============================================================ */
.shuldi-section {
    padding: 5rem 0;
}

.shuldi-section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.shuldi-title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--sh-border);
    color: var(--sh-primary);
    font-size: 1.1rem;
    animation: shuldiGlow 4s infinite;
}

.shuldi-section-title::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--sh-border), rgba(0, 229, 255, 0.08), transparent);
    margin-left: 1.2rem;
}

/* ============================================================
   SERVER CARDS — bigger, animated gradient top
   ============================================================ */
.shuldi-server-card {
    background: var(--sh-bg-card);
    border: 1px solid var(--sh-border-light);
    border-radius: var(--sh-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--sh-transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    animation: shuldiScaleIn 0.5s ease-out both;
}

.shuldi-server-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sh-primary-dark), var(--sh-primary), var(--sh-secondary), var(--sh-purple));
    background-size: 300% 100%;
    animation: shuldiGradientSlide 5s linear infinite;
    box-shadow: 0 0 16px rgba(0, 255, 136, 0.4);
}

.shuldi-server-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--sh-shadow-hover);
    border-color: var(--sh-border);
}

.shuldi-server-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
}

.shuldi-server-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sh-text-bright);
    letter-spacing: 0.05em;
}

.shuldi-server-progress {
    height: 8px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.shuldi-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--sh-primary-dark), var(--sh-primary), var(--sh-secondary));
    background-size: 200% 100%;
    animation: shuldiGradientSlide 3s linear infinite;
    border-radius: 4px;
    transition: width 0.8s ease;
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.35);
}

.shuldi-server-players {
    color: var(--sh-text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.shuldi-server-ip {
    font-family: 'JetBrains Mono', monospace;
    color: var(--sh-primary);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* ============================================================
   FEATURE CARDS — bigger squares, gradient animations
   ============================================================ */
.shuldi-feature-card {
    background: var(--sh-bg-card);
    border: 1px solid var(--sh-border-light);
    border-radius: 16px;
    padding: 2.25rem 1.5rem;
    text-align: center;
    transition: all var(--sh-transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    height: 100%;
    animation: shuldiScaleIn 0.6s ease-out both;
}

.shuldi-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sh-primary-dark), var(--sh-primary), var(--sh-secondary));
    background-size: 300% 100%;
    animation: shuldiGradientSlide 4s linear infinite;
    opacity: 0;
    transition: opacity var(--sh-transition);
}

.shuldi-feature-card::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.05), transparent 60%);
    opacity: 0;
    transition: opacity var(--sh-transition);
    pointer-events: none;
}

.shuldi-feature-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: var(--sh-shadow-hover), var(--sh-glow);
    border-color: var(--sh-border);
}

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

.shuldi-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid var(--sh-border);
    color: var(--sh-primary);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: all var(--sh-transition);
    animation: shuldiFloat 5s ease-in-out infinite;
}

.shuldi-feature-card:hover .shuldi-feature-icon {
    background: rgba(0, 255, 136, 0.15);
    border-color: var(--sh-border-active);
    box-shadow: var(--sh-glow-strong);
    transform: scale(1.15);
}

.shuldi-feature-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--sh-text-bright);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.shuldi-feature-desc {
    color: var(--sh-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================================
   LAUNCHER SECTION — big prominent card
   ============================================================ */
.shuldi-launcher-section {
    padding: 3rem 0;
}

.shuldi-launcher-card {
    background: var(--sh-bg-card);
    border: 2px solid var(--sh-border);
    border-radius: var(--sh-radius-lg);
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    animation: shuldiBorderGlow 5s infinite, shuldiScaleIn 0.5s ease-out both;
}

.shuldi-launcher-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sh-primary), var(--sh-secondary), var(--sh-purple), var(--sh-primary));
    background-size: 300% 100%;
    animation: shuldiGradientSlide 5s linear infinite;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.shuldi-launcher-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.shuldi-launcher-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid var(--sh-border);
    color: var(--sh-primary);
    font-size: 1.8rem;
    flex-shrink: 0;
    animation: shuldiGlow 3s infinite, shuldiFloat 4s ease-in-out infinite;
}

.shuldi-launcher-info { flex: 1; }

.shuldi-launcher-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sh-text-bright);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.shuldi-launcher-desc {
    color: var(--sh-text-muted);
    font-size: 0.92rem;
    margin-bottom: 0;
    line-height: 1.7;
}

.shuldi-launcher-btn { flex-shrink: 0; }

@media (max-width: 767.98px) {
    .shuldi-launcher-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
    }
    .shuldi-launcher-btn { width: 100%; justify-content: center; }
}

/* ============================================================
   POST CARDS — bigger, animated
   ============================================================ */
.shuldi-post-card {
    display: flex;
    flex-direction: column;
    background: var(--sh-bg-card);
    border: 1px solid var(--sh-border-light);
    border-radius: var(--sh-radius-lg);
    overflow: hidden;
    transition: all var(--sh-transition);
    height: 100%;
    backdrop-filter: blur(20px);
    animation: shuldiScaleIn 0.6s ease-out both;
}

.shuldi-post-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--sh-shadow-hover), var(--sh-glow);
    border-color: var(--sh-border);
    color: inherit;
}

.shuldi-post-img-wrap {
    overflow: hidden;
    position: relative;
}

.shuldi-post-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(0deg, rgba(8, 18, 12, 0.9) 0%, transparent 100%);
    pointer-events: none;
}

.shuldi-post-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.shuldi-post-card:hover .shuldi-post-img { transform: scale(1.08); }

.shuldi-post-body {
    padding: 1.5rem;
    flex: 1;
}

.shuldi-post-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--sh-text-bright);
    margin-bottom: 0.65rem;
    letter-spacing: 0.03em;
}

.shuldi-post-date {
    color: var(--sh-primary);
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 0.65rem;
}

.shuldi-post-excerpt {
    color: var(--sh-text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ============================================================
   BADGES
   ============================================================ */
.shuldi-badge {
    display: inline-block;
    font-weight: 600;
    padding: 0.35em 0.85em;
    border-radius: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
}

.shuldi-badge-offline {
    background: rgba(255, 62, 108, 0.15);
    color: var(--sh-accent);
    border: 1px solid rgba(255, 62, 108, 0.3);
}

/* ============================================================
   SIDEBAR WIDGET
   ============================================================ */
.shuldi-sidebar-widget {
    background: var(--sh-bg-card);
    border: 1px solid var(--sh-border-light);
    border-radius: var(--sh-radius-lg);
    overflow: hidden;
    backdrop-filter: blur(20px);
}

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

.shuldi-alert-info {
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid var(--sh-border);
    color: var(--sh-primary-light);
}

/* ============================================================
   CONTENT PAGES
   ============================================================ */
.shuldi-content {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.shuldi-main {
    position: relative;
    z-index: 1;
}

/* Card override */
.card {
    background: var(--sh-bg-card) !important;
    border: 1px solid var(--sh-border-light) !important;
    border-radius: var(--sh-radius) !important;
    backdrop-filter: blur(20px);
    color: var(--sh-text);
    transition: all var(--sh-transition);
}

.card:hover { border-color: var(--sh-border) !important; }
.card-body { padding: 2rem; }
.card-title { color: var(--sh-text-bright) !important; font-weight: 700; }
.card-subtitle { color: var(--sh-text-muted) !important; }
.card-text { color: var(--sh-text); }
.card-img-top { border-radius: var(--sh-radius) var(--sh-radius) 0 0; }

/* ============================================================
   FORMS
   ============================================================ */
.form-control,
.form-select {
    background: rgba(8, 18, 12, 0.65) !important;
    border: 1px solid var(--sh-border-light) !important;
    border-radius: var(--sh-radius-sm) !important;
    color: var(--sh-text) !important;
    padding: 0.75rem 1.2rem;
    font-size: 0.92rem;
    transition: all var(--sh-transition);
}

.form-control:focus,
.form-select:focus {
    background: rgba(8, 18, 12, 0.85) !important;
    border-color: var(--sh-primary) !important;
    box-shadow: 0 0 0 4px rgba(0, 255, 136, 0.15) !important;
    color: var(--sh-text-bright) !important;
}

.form-control::placeholder { color: var(--sh-text-muted) !important; }
.form-label { color: var(--sh-text); font-weight: 500; font-size: 0.9rem; }

/* ============================================================
   TABLES
   ============================================================ */
.table {
    --bs-table-bg: transparent;
    --bs-table-striped-bg: rgba(0, 255, 136, 0.03);
    --bs-table-hover-bg: rgba(0, 255, 136, 0.06);
    color: var(--sh-text);
}

.table th {
    font-weight: 600;
    color: var(--sh-primary);
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.07em;
    font-family: 'Orbitron', sans-serif;
    border-color: var(--sh-border-light);
    padding: 1.2rem 1rem;
}

.table td {
    border-color: var(--sh-border-light);
    padding: 1rem;
    vertical-align: middle;
}

/* ============================================================
   FOOTER — bigger, gradient top line
   ============================================================ */
.shuldi-footer { margin-top: auto; position: relative; z-index: 1; }

.shuldi-footer-inner {
    background: linear-gradient(180deg, var(--sh-bg) 0%, var(--sh-bg-deep) 100%);
    border-top: 1px solid var(--sh-border-light);
    padding: 5rem 0 0;
    position: relative;
}

.shuldi-footer-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sh-primary), var(--sh-secondary), var(--sh-purple), var(--sh-primary));
    background-size: 300% 100%;
    animation: shuldiGradientSlide 6s linear infinite;
    opacity: 0.4;
}

.shuldi-footer-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sh-primary);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.shuldi-footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--sh-primary), var(--sh-secondary));
    border-radius: 2px;
    box-shadow: var(--sh-glow);
}

.shuldi-footer-desc {
    color: var(--sh-text-muted);
    font-size: 0.92rem;
    line-height: 1.9;
    max-width: 420px;
}

.shuldi-footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }

.shuldi-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid var(--sh-border-light);
    color: var(--sh-text-muted);
    font-size: 1.1rem;
    transition: all var(--sh-transition);
}

.shuldi-social-icon:hover {
    color: var(--sh-primary);
    background: rgba(0, 255, 136, 0.12);
    border-color: var(--sh-border);
    transform: translateY(-4px) scale(1.1);
    box-shadow: var(--sh-glow-strong);
}

.shuldi-footer-links { list-style: none; padding: 0; margin: 0; }
.shuldi-footer-links li { margin-bottom: 0.65rem; }

.shuldi-footer-links a {
    color: var(--sh-text-muted);
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--sh-transition);
}

.shuldi-footer-links a:hover {
    color: var(--sh-primary-light);
    transform: translateX(6px);
}

.shuldi-footer-links a i { font-size: 0.7rem; opacity: 0.35; transition: opacity var(--sh-transition); }
.shuldi-footer-links a:hover i { opacity: 1; }

.shuldi-footer-ip { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 1.25rem; }

.shuldi-footer-ip-label {
    color: var(--sh-text-muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.12em;
}

.shuldi-footer-ip-value {
    font-family: 'JetBrains Mono', monospace;
    color: var(--sh-primary);
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid var(--sh-border);
    padding: 0.4rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.shuldi-footer-discord { margin-top: 0.75rem; }

.shuldi-footer-bottom {
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 1px solid var(--sh-border-light);
}

.shuldi-copyright { color: rgba(208, 232, 216, 0.2); font-size: 0.82rem; margin: 0; }
.shuldi-powered { color: rgba(208, 232, 216, 0.15); font-size: 0.78rem; margin: 0; font-family: 'Orbitron', sans-serif; letter-spacing: 0.1em; }

/* ============================================================
   PROGRESS BAR OVERRIDE
   ============================================================ */
.progress {
    height: 8px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, var(--sh-primary-dark), var(--sh-primary), var(--sh-secondary)) !important;
    background-size: 200% 100% !important;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

/* ============================================================
   MISC OVERRIDES
   ============================================================ */
.text-bg-dark { background-color: var(--sh-bg) !important; }
.text-bg-dark a { color: var(--sh-text-muted); }
.text-muted { color: var(--sh-text-muted) !important; }
.bg-danger { background-color: var(--sh-accent) !important; }

.dropdown-menu {
    background: rgba(5, 12, 8, 0.96);
    border: 1px solid var(--sh-border);
}

.dropdown-item { color: var(--sh-text-muted); }
.dropdown-item:hover { background: rgba(0, 255, 136, 0.1); color: var(--sh-primary-light); }

/* ============================================================
   RESPONSIVE — bigger on all sizes
   ============================================================ */
@media (max-width: 991.98px) {
    .shuldi-hero { min-height: 480px; padding: 4rem 0 3rem; }
    .shuldi-hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
    .shuldi-navbar { height: auto; padding: 0.6rem 0; }
    .shuldi-brand img { height: 40px; }
    .shuldi-section { padding: 3.5rem 0; }
}

@media (max-width: 767.98px) {
    .shuldi-hero { min-height: 400px; padding: 3rem 0 2rem; }
    .shuldi-hero-title { font-size: clamp(1.8rem, 9vw, 2.8rem); }
    .shuldi-hero-desc { font-size: 1rem; }
    .shuldi-section { padding: 2.5rem 0; }
    .shuldi-feature-card { padding: 1.5rem 1rem; }
    .shuldi-footer-inner { padding: 3rem 0 0; }
    .shuldi-footer-bottom { margin-top: 2.5rem; }
    .shuldi-subbar { padding: 0.7rem 0; }
    .shuldi-subbar .container { flex-wrap: wrap; gap: 0.6rem; }
    .shuldi-server-card { padding: 1.5rem; }
    .shuldi-launcher-card { padding: 1.5rem; }
    .shuldi-post-img { height: 180px; }
    .shuldi-hero-actions { gap: 0.8rem; }
}

@media (max-width: 575.98px) {
    .shuldi-hero { min-height: 320px; padding: 2rem 0; }
    .shuldi-hero-actions { flex-direction: column; }
    .shuldi-hero-actions .shuldi-btn-neon,
    .shuldi-hero-actions .shuldi-btn-outline { width: 100%; justify-content: center; }
    .shuldi-section-title { font-size: 1.1rem; }
    .shuldi-launcher-card { flex-direction: column; text-align: center; }
    .shuldi-launcher-btn { width: 100%; justify-content: center; }
}

/* ============================================================
   NEON LINE / SEPARATOR
   ============================================================ */
.shuldi-neon-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--sh-primary), var(--sh-secondary), transparent);
    background-size: 200% 100%;
    animation: shuldiGradientSlide 4s linear infinite;
    opacity: 0.4;
    margin: 3rem 0;
}

/* ============================================================
   GLITCH TEXT EFFECT
   ============================================================ */
.shuldi-glitch { position: relative; }

.shuldi-glitch::before,
.shuldi-glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.shuldi-glitch::before {
    animation: glitch-1 3s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%);
    -webkit-text-fill-color: var(--sh-primary);
}

.shuldi-glitch::after {
    animation: glitch-2 4s infinite linear alternate-reverse;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
    -webkit-text-fill-color: var(--sh-secondary);
}

@keyframes glitch-1 {
    0% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(-3px, -3px); }
    60% { transform: translate(3px, 3px); }
    80% { transform: translate(3px, -3px); }
    100% { transform: translate(0); }
}

@keyframes glitch-2 {
    0% { transform: translate(0); }
    20% { transform: translate(3px, -3px); }
    40% { transform: translate(3px, 3px); }
    60% { transform: translate(-3px, -3px); }
    80% { transform: translate(-3px, 3px); }
    100% { transform: translate(0); }
}

/* ============================================================
   PAGE TRANSITIONS
   ============================================================ */
.shuldi-main,
.shuldi-content {
    animation: shuldiFadeIn 0.6s ease-out;
}
