        * { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
        body { background-color: #090c10; background-image: radial-gradient(circle at top, #161b26 0%, #090c10 100%); color: #D1d5db; min-height: 100vh; }
        
        header { 
            position: relative;
            text-align: center; 
            padding: 85px 20px 75px; 
            background: linear-gradient(180deg, rgba(9,12,16,0.3) 0%, rgba(9,12,16,0.9) 100%), url('../wp-content/uploads/wow/1335484.jpg') center/cover no-repeat;
            border-bottom: 3px solid #ff5500; 
            box-shadow: 0 4px 25px rgba(255, 85, 0, 0.3);
        }
        header h1 {
            font-size: 3.4rem; 
            letter-spacing: 6px; 
            color: #ffb700; 
            text-transform: uppercase;
            text-shadow: 0 0 20px rgba(255, 183, 0, 0.7), 0 0 40px rgba(255, 85, 0, 0.5); 
        }
        header p { 
            color: #f3d19c; 
            font-size: 1.2rem; 
            margin-top: 8px; 
            letter-spacing: 1.5px;
            font-weight: 600;
            text-shadow: 0 2px 6px rgba(0,0,0,0.8);
        }

        .portal-grid { display: grid; grid-template-columns: 280px 1fr 300px; gap: 24px; max-width: 1440px; margin: 25px auto; padding: 0 20px; }
        @media (max-width: 1024px) { .portal-grid { grid-template-columns: 1fr; } }
        
        .box {
            background: #0f131c; 
            border: 1px solid #232b3e; 
            border-top: 3px solid #ff5500;
            border-radius: 10px; 
            padding: 20px; 
            box-shadow: 0 8px 24px rgba(0,0,0,0.4); 
            margin-bottom: 24px; 
        }
        .box-title { 
            color: #ffffff; 
            font-size: 1.15rem; 
            margin-bottom: 15px; 
            border-bottom: 1px solid #232b3e; 
            padding-bottom: 8px; 
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
        }

        .status-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid #1a2233; font-size: 0.9rem; }
        .status-badge { display: flex; align-items: center; gap: 6px; color: #10b981; font-weight: bold; font-size: 0.88rem; }
        .status-dot { width: 8px; height: 8px; background-color: #10b981; border-radius: 50%; box-shadow: 0 0 8px #10b981; display: inline-block; }
        .wow-stat-value { color: #ffb700; font-weight: bold; }
        .wow-stat-item { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px solid #161e2e; font-size: 0.88rem; }
        .wow-stat-item:last-child { border-bottom: none; }

        .nav-menu ul { list-style: none; }
        .nav-menu > ul > li { margin-bottom: 12px; }
        .nav-menu a, .nav-menu details summary {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 14px; 
            background-color: #07090e; 
            border-left: 3px solid #ff5500; 
            color: #d1a756; 
            text-decoration: none; 
            font-weight: bold; 
            cursor: pointer; 
            border-radius: 6px; 
            transition: all 0.2s;
        }
        .nav-menu a:hover, .nav-menu details summary:hover { background-color: #171f2e; color: #ffffff; transform: translateX(3px); }
        .nav-menu details ul { margin-top: 8px; padding-left: 12px; }
        .nav-menu details ul li a { border-left: 2px solid #3e4a63; font-weight: normal; font-size: 0.9rem; padding: 8px 12px; margin-bottom: 4px; }

        .tab-bar { display: flex; gap: 10px; margin-bottom: 20px; }
        .tab-btn { flex: 1; padding: 12px; background: #07090e; border: 1px solid #232b3e; color: #d1a756; font-weight: bold; text-align: center; border-radius: 6px; cursor: pointer; text-decoration: none; transition: 0.2s; }
        .tab-btn.active, .tab-btn:hover { background: #ff5500; color: #fff; border-color: #ff5500; }

        .forum-card { background: #07090e; border: 1px solid #232b3e; border-radius: 8px; padding: 16px; margin-bottom: 15px; }
        .forum-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
        .forum-title { color: #fff; font-size: 1.1rem; font-weight: bold; }
        
        .subforum-box { background: #0c1018; border: 1px solid #1a2233; padding: 12px; border-radius: 6px; margin-bottom: 15px; }
        .subforum-title { color: #ffb700; font-weight: bold; font-size: 1rem; margin-bottom: 4px; }

        .reply-box { background: #0c1018; border-left: 2px solid #3e4a63; padding: 8px 12px; margin-top: 8px; border-radius: 4px; font-size: 0.88rem; }
        .reply-meta { font-size: 0.75rem; color: #9ca3af; margin-bottom: 2px; }

        form input, form textarea, form select { width: 100%; padding: 10px; background-color: #07090e; border: 1px solid #232b3e; border-radius: 6px; color: #fff; margin-bottom: 10px; }
        .btn-submit { width: 100%; padding: 11px; background: linear-gradient(180deg, #ff5500 0%, #bd3a00 100%); border: none; color: #fff; font-weight: bold; border-radius: 6px; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; }
        .btn-submit:hover { background: linear-gradient(180deg, #ff661a 0%, #d44100 100%); }
        .btn-danger { background: linear-gradient(180deg, #dc2626 0%, #991b1b 100%); }

        .news-create details summary { color: #ffb700; cursor: pointer; font-weight: bold; padding: 8px; }
        .news-create form { margin-top: 15px; display: flex; flex-direction: column; gap: 12px; }
        
        .emoji-toolbar { display: flex; flex-wrap: wrap; gap: 6px; background: #05070a; padding: 8px; border: 1px solid #232b3e; border-radius: 6px; }
        .emoji-btn { background: #171f2e; border: 1px solid #3e4a63; border-radius: 4px; font-size: 1.1rem; padding: 4px 8px; cursor: pointer; }
        .emoji-btn:hover { background: #ff5500; }

        .news-feed { display: flex; flex-direction: column; gap: 24px; }
        .news-card { background: linear-gradient(145deg, #0d111a 0%, #07090e 100%); border: 1px solid #232b3e; border-radius: 12px; overflow: hidden; box-shadow: 0 6px 22px rgba(0,0,0,0.5); }
        .news-card-img-wrapper { position: relative; width: 100%; height: 260px; overflow: hidden; }
        .news-card-img { width: 100%; height: 100%; object-fit: cover; display: block; }
        
        .news-body { 
            padding: 24px; 
            max-height: 450px; 
            overflow-y: auto; 
            scrollbar-width: thin; 
            scrollbar-color: #ff5500 #07090e; 
        }
        .news-body::-webkit-scrollbar { width: 8px; }
        .news-body::-webkit-scrollbar-track { background: #07090e; border-radius: 4px; }
        .news-body::-webkit-scrollbar-thumb { background-color: #ff5500; border-radius: 4px; border: 2px solid #07090e; }

        .news-title { color: #ffffff; font-weight: 700; font-size: 1.45rem; line-height: 1.35; margin-bottom: 8px; }

        .btn-voice { display: block; text-align: center; background: linear-gradient(180deg, #5865F2 0%, #404eed 100%); color: #fff; text-decoration: none; padding: 10px; border-radius: 6px; font-weight: bold; margin-top: 12px; font-size: 0.9rem; }
        
        .voice-channel-group { margin-top: 8px; }
        .voice-channel-name { font-size: 0.85rem; font-weight: bold; color: #d1a756; padding: 6px 0; display: flex; align-items: center; gap: 6px; }
        .voice-user-list { list-style: none; padding-left: 14px; margin-bottom: 6px; }
        .voice-user-item { font-size: 0.88rem; padding: 4px 0; color: #d1d5db; display: flex; align-items: center; gap: 8px; }

        .profile-avatar-preview { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; border: 2px solid #ff5500; margin-bottom: 10px; }
        .avatar-grid { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 12px; }
        .avatar-option { width: 45px; height: 45px; border-radius: 50%; cursor: pointer; border: 2px solid transparent; }
        .avatar-option:hover { border-color: #ffb700; transform: scale(1.05); }

        .alert { padding: 12px 16px; border-radius: 6px; margin-bottom: 20px; font-size: 0.95rem; }
        .alert-error { background: rgba(220,38,38,0.2); border: 1px solid #ef4444; color: #fca5a5; }
        .alert-success { background: rgba(16,185,129,0.2); border: 1px solid #10b981; color: #a7f3d0; }

/* =========================================================
   GAMING CRUISE COMMUNITY THEME v3
   Fokus: Minecraft + WotLK 3.3.5a
   ========================================================= */
:root{
    --gc-bg:#070a0f;
    --gc-panel:rgba(14,19,28,.92);
    --gc-panel-2:#0a0f17;
    --gc-line:#202b3e;
    --gc-text:#d8dee9;
    --gc-muted:#8d98aa;
    --gc-gold:#f4bd4f;
    --gc-orange:#f06b2b;
    --gc-green:#62c963;
    --gc-blue:#5da9e9;
    --gc-radius:16px;
}

body{
    background:
      radial-gradient(circle at 17% 8%,rgba(65,128,73,.11),transparent 28%),
      radial-gradient(circle at 79% 10%,rgba(61,110,174,.14),transparent 30%),
      linear-gradient(180deg,#090d14 0%,#06080d 70%);
    color:var(--gc-text);
}
body:before{
    content:"";position:fixed;inset:0;pointer-events:none;z-index:-1;opacity:.22;
    background-image:linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px);
    background-size:44px 44px;
}

.site-hero{
    min-height:430px;padding:78px 24px 64px;text-align:left;border-bottom:1px solid rgba(244,189,79,.35);
    background:
      linear-gradient(90deg,rgba(5,8,12,.97) 0%,rgba(5,8,12,.84) 43%,rgba(5,8,12,.35) 77%,rgba(5,8,12,.72) 100%),
      linear-gradient(180deg,rgba(5,8,12,.08),#070a0f 98%),
      url('../wp-content/uploads/wow/1335484.jpg') center 36%/cover no-repeat;
    box-shadow:0 20px 60px rgba(0,0,0,.42);
}
.site-hero:after{content:"";position:absolute;inset:auto 0 0;height:4px;background:linear-gradient(90deg,var(--gc-green),var(--gc-gold),var(--gc-blue));opacity:.75}
.hero-content{position:relative;z-index:2;max-width:1440px;margin:0 auto}
.hero-kicker,.game-kicker,.box-eyebrow,.content-label{font-size:.72rem;font-weight:800;letter-spacing:.16em;text-transform:uppercase;color:var(--gc-gold)}
.site-hero h1{max-width:850px;margin:12px 0 14px;font-size:clamp(2.3rem,5vw,4.7rem);line-height:.98;letter-spacing:-.035em;text-transform:none;color:#fff;text-shadow:0 8px 30px rgba(0,0,0,.75)}
.site-hero h1 span{color:#dbe8f7}
.hero-lead{max-width:760px;margin:0 0 25px!important;font-size:1.12rem!important;line-height:1.7;letter-spacing:0!important;font-weight:500!important;color:#c8d0dc!important}
.hero-actions{display:flex;gap:10px;flex-wrap:wrap}
.hero-btn,.game-btn,.mini-cta{display:inline-flex;align-items:center;justify-content:center;text-decoration:none;font-weight:800;transition:.2s ease}
.hero-btn{padding:12px 17px;border-radius:10px;border:1px solid #344057;color:#fff;background:rgba(8,12,18,.76);backdrop-filter:blur(8px)}
.hero-btn:hover{transform:translateY(-2px);border-color:#64748b}
.hero-btn-minecraft{border-color:rgba(98,201,99,.55);box-shadow:inset 0 0 24px rgba(98,201,99,.06)}
.hero-btn-wow{border-color:rgba(93,169,233,.55);box-shadow:inset 0 0 24px rgba(93,169,233,.07)}
.hero-mini-stats{display:flex;gap:22px;flex-wrap:wrap;margin-top:26px;color:#8390a3;font-size:.82rem}
.hero-mini-stats b{color:#fff;font-size:1rem;margin-right:4px}
.message-wrap{max-width:1440px;margin:18px auto -5px;padding:0 20px}

.portal-grid{grid-template-columns:245px minmax(0,1fr) 265px;gap:18px;max-width:1480px;margin:20px auto 45px;padding:0 18px;align-items:start}
.sidebar{position:sticky;top:16px;align-self:start}
.portal-main{min-width:0}
.box,.content-card,.update-entry{background:linear-gradient(160deg,rgba(16,22,32,.96),rgba(9,13,20,.96));border:1px solid var(--gc-line);border-top:1px solid #2b374c;border-radius:var(--gc-radius);box-shadow:0 14px 36px rgba(0,0,0,.27)}
.box{padding:16px;margin-bottom:16px}
.box-title{font-size:1rem;border-bottom:1px solid #20293a;padding-bottom:10px;margin:5px 0 12px}
.box-eyebrow{color:#637086;font-size:.62rem}

.community-nav .nav-tag{margin-left:auto;font-size:.56rem;padding:2px 6px;border-radius:999px;background:#182314;color:#87d77f;border:1px solid #294a27}
.nav-menu > ul > li{margin-bottom:7px}
.nav-menu a,.nav-menu details summary{padding:9px 10px;border:1px solid #1d2738;border-left:2px solid #3a465b;border-radius:9px;background:#090d14;color:#c4ccd8;font-size:.86rem}
.nav-menu a:hover,.nav-menu details summary:hover{background:#111925;color:#fff;transform:none;border-color:#36445b}
.nav-menu .nav-game-wow summary{border-left-color:var(--gc-blue)}
.nav-menu .nav-game-minecraft summary{border-left-color:var(--gc-green)}
.nav-menu details ul{padding-left:8px;margin-top:5px}
.nav-menu details ul li a{font-size:.8rem;padding:7px 9px;margin-bottom:3px;background:transparent;border-left:1px solid #2b3749}
.member-profile-mini{text-align:center;margin:8px 0 12px}
.member-profile-mini img{width:58px;height:58px;border-radius:16px;border:1px solid #40506a;background:#090d14;object-fit:cover}
.member-profile-mini p{font-size:.8rem;margin-top:7px;color:var(--gc-muted)}
.member-profile-mini b{color:#fff}
.auth-details summary{cursor:pointer;color:#d8dee9;font-weight:700;font-size:.84rem;margin:7px 0 9px}
.auth-details form{margin-top:8px}
.btn-link{display:block;text-align:center;text-decoration:none;margin-bottom:7px}
.btn-success{background:linear-gradient(180deg,#379d52,#26703b)}
.member-hint{font-size:.72rem;color:#778398;line-height:1.5;margin-top:10px}
.member-count{margin-top:12px;padding-top:10px;border-top:1px solid #20293a;font-size:.72rem;color:#718096;display:flex;justify-content:space-between}

.tab-bar{position:sticky;top:10px;z-index:20;padding:6px;background:rgba(7,10,15,.88);backdrop-filter:blur(12px);border:1px solid #202b3e;border-radius:13px;gap:5px;margin-bottom:16px;box-shadow:0 8px 30px rgba(0,0,0,.24)}
.tab-btn{padding:9px 8px;border:none;background:transparent;color:#8f9aab;border-radius:8px;font-size:.8rem}
.tab-btn.active,.tab-btn:hover{background:#172030;color:#fff;border-color:transparent}
.tab-btn.active.tab-minecraft{box-shadow:inset 0 -2px 0 var(--gc-green)}
.tab-btn.active.tab-wow{box-shadow:inset 0 -2px 0 var(--gc-blue)}

.home-focus{margin-bottom:16px}
.home-intro{padding:20px 22px 12px}
.home-intro h2{color:#fff;font-size:1.65rem;margin:7px 0 7px}
.home-intro p{color:#9ba6b7;line-height:1.65;max-width:760px}
.focus-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.focus-card{position:relative;overflow:hidden;display:flex;gap:15px;min-height:175px;padding:20px;text-decoration:none;color:inherit;border-radius:16px;border:1px solid #263248;background:linear-gradient(145deg,#111824,#090e16);transition:.22s ease}
.focus-card:after{content:"";position:absolute;width:190px;height:190px;border-radius:50%;right:-95px;top:-95px;filter:blur(10px);opacity:.16}
.focus-card:hover{transform:translateY(-3px);border-color:#465873;box-shadow:0 15px 35px rgba(0,0,0,.3)}
.focus-minecraft:after{background:var(--gc-green)}.focus-wow:after{background:var(--gc-blue)}
.focus-icon{font-size:2.2rem;line-height:1}
.focus-card small{font-size:.64rem;font-weight:900;letter-spacing:.14em;color:#78869a}
.focus-card h3{color:#fff;font-size:1.15rem;margin:5px 0 7px}
.focus-card p{font-size:.84rem;color:#9ca7b7;line-height:1.55;margin-bottom:13px}
.focus-card b{font-size:.78rem;color:#dce4ef}

.game-page{display:flex;flex-direction:column;gap:14px}
.game-hero{position:relative;overflow:hidden;min-height:260px;padding:30px;display:flex;justify-content:space-between;align-items:center;gap:25px;border-radius:18px;border:1px solid #2a3750;background:linear-gradient(135deg,#111a27,#0b1018);box-shadow:0 16px 36px rgba(0,0,0,.3)}
.game-hero:before{content:"";position:absolute;inset:0;pointer-events:none;background:radial-gradient(circle at 86% 20%,rgba(255,255,255,.08),transparent 30%)}
.game-hero>div{position:relative;z-index:1}
.game-hero.compact{min-height:180px}
.game-hero h2{font-size:clamp(1.9rem,4vw,3.25rem);line-height:1.04;color:#fff;margin:7px 0 12px}
.game-hero p{max-width:660px;line-height:1.68;color:#aeb8c8}
.game-hero-wow{background:linear-gradient(135deg,rgba(18,31,50,.98),rgba(7,11,18,.98));border-color:#29486b}
.game-hero-minecraft{background:linear-gradient(135deg,rgba(22,42,25,.98),rgba(8,14,10,.98));border-color:#2f5734}
.game-hero-palworld{background:linear-gradient(135deg,#2a263b,#0d111a);border-color:#4b3f67}
.game-hero-windrose{background:linear-gradient(135deg,#303022,#10130e);border-color:#555032}
.game-actions{display:flex;gap:9px;flex-wrap:wrap;margin-top:18px}
.game-btn{padding:10px 14px;border:1px solid #3c4a60;border-radius:9px;color:#dce4ee;background:#101721;font-size:.82rem}
.game-btn:hover{transform:translateY(-1px);background:#162131;color:#fff}
.game-btn.primary{background:#e8eef6;color:#111722;border-color:#e8eef6}
.game-status-orb{width:145px;height:145px;border-radius:50%;flex:0 0 auto;display:flex;flex-direction:column;align-items:center;justify-content:center;background:#0b1119;border:1px solid #2b4057;box-shadow:inset 0 0 40px rgba(93,169,233,.08),0 0 50px rgba(93,169,233,.06)}
.game-status-orb span{font-size:.62rem;letter-spacing:.18em;color:#6fd08a;font-weight:900}.game-status-orb b{font-size:2.7rem;color:#fff;line-height:1.1}.game-status-orb small{font-size:.68rem;color:#768397}
.game-status-orb.is-offline span{color:#e36b6b}
.pixel-badge{min-width:145px;min-height:120px;border:1px solid #345f38;border-radius:14px;display:flex;flex-direction:column;align-items:center;justify-content:center;background:rgba(6,15,8,.58)}
.pixel-badge b{font-size:1.7rem;color:#9be58f;letter-spacing:.12em}.pixel-badge span{font-size:.73rem;color:#819789}

.content-grid{display:grid;gap:14px}.content-grid.two-col{grid-template-columns:1fr 1fr}
.content-card{padding:20px}
.content-card h3{color:#fff;font-size:1.08rem;margin:6px 0 12px}.content-card p{color:#a5afbf;line-height:1.65;font-size:.9rem}
.accent-wow{border-left:3px solid var(--gc-blue)}.accent-minecraft{border-left:3px solid var(--gc-green)}
.info-list{margin-top:13px;border-top:1px solid #202b3e}.info-list>div{display:flex;justify-content:space-between;gap:12px;padding:10px 0;border-bottom:1px solid #182231;font-size:.82rem}.info-list span{color:#778398}.info-list b{color:#dbe4ee;text-align:right}
.step-list{list-style:none;counter-reset:steps}.step-list li{counter-increment:steps;display:grid;grid-template-columns:34px 1fr;column-gap:10px;position:relative;margin-bottom:12px}.step-list li:before{content:counter(steps);grid-row:1/3;width:30px;height:30px;border-radius:8px;display:grid;place-items:center;background:#172234;color:#fff;font-weight:900}.step-list b{color:#e7edf4;font-size:.86rem}.step-list span{color:#8490a2;font-size:.78rem;line-height:1.5}
.feature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.feature-item{padding:14px;border:1px solid #202b3d;border-radius:11px;background:#0a1018}.feature-item b{display:block;color:#edf2f8;font-size:.86rem;margin-bottom:4px}.feature-item span{color:#7f8b9d;font-size:.76rem;line-height:1.5}
.copy-line{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:10px 0;border-bottom:1px solid #1d2736;font-size:.83rem}.copy-line span{color:#7b879a}.copy-line code{color:#dfe8e0;background:#0a130c;border:1px solid #213c25;padding:4px 8px;border-radius:6px}
.tag-cloud{display:flex;gap:6px;flex-wrap:wrap;margin-top:14px}.tag-cloud span{font-size:.68rem;padding:5px 8px;border-radius:999px;background:#121b27;color:#95a2b5;border:1px solid #253247}
.update-entry{display:grid;grid-template-columns:105px 1fr;gap:18px;padding:20px}.update-date{font-size:.68rem;letter-spacing:.12em;font-weight:900;color:#77859a;border-right:1px solid #263144;padding-right:16px}.update-entry h3{color:#fff;margin:5px 0 8px}.update-entry p{color:#9ba6b6;line-height:1.62;font-size:.88rem}.clean-list{margin:10px 0 0 18px;color:#8996a8;font-size:.82rem;line-height:1.7}

.status-row{padding:8px 0;font-size:.78rem}.status-row.featured{font-weight:700;color:#dce3ed}.status-badge{font-size:.72rem}.status-badge.offline{color:#e26363}.status-badge.offline .status-dot{background:#e26363;box-shadow:0 0 8px #e26363}
.realm-numbers{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin:7px 0 12px}.realm-numbers>div{padding:12px 8px;text-align:center;border:1px solid #253248;border-radius:10px;background:#0a1018}.realm-numbers b{display:block;font-size:1.45rem;color:#fff}.realm-numbers span{font-size:.64rem;color:#748196;text-transform:uppercase;letter-spacing:.08em}
.mini-cta{width:100%;padding:9px;border:1px solid #2d4160;border-radius:8px;background:#111a28;color:#bcd3ef;font-size:.74rem}.mini-cta:hover{background:#172438}
.muted{color:var(--gc-muted)!important}.small{font-size:.78rem}.btn-voice{border-radius:9px;background:#4859d1;font-size:.78rem;padding:9px}

.news-create{border-top:1px solid #2b374c}.news-card{border-radius:14px;border-color:#253147}.news-body{padding:20px}.news-title{font-size:1.28rem}.news-card-img-wrapper{height:260px}

form input,form textarea,form select{background:#080c12;border:1px solid #253146;border-radius:8px;color:#eef2f7;padding:10px}
.btn-submit{padding:10px;border-radius:8px;text-transform:none;letter-spacing:0;font-size:.8rem;background:linear-gradient(180deg,#de6a33,#b84c21)}
.alert{border-radius:10px}

@media(max-width:1180px){
    .portal-grid{grid-template-columns:220px minmax(0,1fr)}
    .sidebar-right{position:static;grid-column:2;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
    .sidebar-right .box{margin:0}.sidebar-left{grid-row:1/3}
}
@media(max-width:820px){
    .site-hero{min-height:360px;padding:58px 18px 48px}.hero-mini-stats{gap:12px}.portal-grid{display:block;padding:0 10px}.sidebar{position:static}.sidebar-left{display:none}.sidebar-right{display:grid;grid-template-columns:1fr 1fr}.tab-bar{top:5px;overflow-x:auto}.tab-btn{flex:0 0 auto;min-width:105px}.focus-grid,.content-grid.two-col{grid-template-columns:1fr}.feature-grid{grid-template-columns:1fr}.game-hero{padding:22px;min-height:220px}.game-status-orb,.pixel-badge{display:none}.news-card-img-wrapper{height:190px}
}
@media(max-width:520px){
    .site-hero h1{font-size:2.35rem}.hero-actions{display:grid}.hero-btn{width:100%}.hero-mini-stats{font-size:.72rem}.home-intro{padding:15px 5px 10px}.focus-card{padding:16px}.sidebar-right{grid-template-columns:1fr}.update-entry{grid-template-columns:1fr}.update-date{border-right:0;border-bottom:1px solid #263144;padding:0 0 8px}.game-hero{padding:18px}
}
@media(max-width:820px){
  .sidebar-left{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:12px}
  .sidebar-left .box{margin:0}
}
@media(max-width:560px){.sidebar-left{grid-template-columns:1fr}}

/* ==========================================================
   v4 · Native GAMING CRUISE Account-Erstellung
   ========================================================== */
.wow-account-hero{border-color:#385f8d;background:radial-gradient(circle at 85% 30%,rgba(75,133,190,.18),transparent 28%),linear-gradient(135deg,#132237 0%,#080d15 65%)}
.account-service-badge{width:132px;height:132px;flex:0 0 auto;border-radius:28px;display:flex;flex-direction:column;align-items:center;justify-content:center;background:rgba(6,11,18,.78);border:1px solid #385474;box-shadow:inset 0 0 35px rgba(76,138,199,.08),0 15px 35px rgba(0,0,0,.28)}
.account-service-badge span{font-size:.62rem;font-weight:900;letter-spacing:.18em;color:#77d696}.account-service-badge b{font-size:2.4rem;line-height:1;color:#fff;margin:6px 0}.account-service-badge small{font-size:.68rem;color:#8090a4}.account-service-badge.is-fallback span{color:#e9a45d}
.wow-account-layout{display:grid;grid-template-columns:minmax(0,1.55fr) minmax(260px,.75fr);gap:14px;align-items:start}
.wow-register-card{padding:24px}.register-heading{display:flex;justify-content:space-between;gap:18px;align-items:flex-start;margin-bottom:20px}.register-heading h3{font-size:1.25rem;margin:6px 0}.register-heading p{max-width:620px}.realm-chip{flex:0 0 auto;font-size:.66rem;font-weight:900;letter-spacing:.08em;padding:7px 10px;border:1px solid #355272;border-radius:999px;color:#a9c9e9;background:#0c1724}
.wow-account-alert{margin:0 0 18px}.alert-fallback{margin-top:8px;font-size:.76rem}.alert-fallback a{color:inherit;text-decoration:underline;text-underline-offset:2px}
.wow-register-form{display:flex;flex-direction:column;gap:17px}.form-row.two{display:grid;grid-template-columns:1fr 1fr;gap:13px}.form-field{display:flex;flex-direction:column;gap:6px}.form-field label{font-size:.77rem;font-weight:800;color:#c6d0de}.form-field input{min-height:44px;width:100%;font-size:.88rem}.form-field small{font-size:.67rem;color:#68778c;line-height:1.4}
.wow-register-submit{margin-top:2px;width:100%;display:grid;grid-template-columns:36px 1fr 26px;align-items:center;text-align:left;gap:10px;padding:13px 15px;border:1px solid #4775a5;border-radius:11px;background:linear-gradient(180deg,#2b6090,#1b4268);color:#fff;cursor:pointer;box-shadow:0 10px 25px rgba(20,67,108,.24);transition:.2s ease}.wow-register-submit:hover{transform:translateY(-1px);filter:brightness(1.08)}.wow-register-submit>span:first-child{font-size:1.3rem}.wow-register-submit>span:last-child{text-align:right;font-size:1.15rem}.wow-register-submit b{display:block;font-size:.88rem}.wow-register-submit small{display:block;margin-top:2px;font-size:.66rem;font-weight:500;color:#c4d6e8}
.wow-account-side{display:flex;flex-direction:column;gap:14px}.connection-card,.account-steps-card{padding:18px}.connection-card h3,.account-steps-card h3{margin-bottom:8px}.connection-card code{color:#d8ecff}.realmlist-copy{margin-top:14px;display:flex;gap:7px;align-items:stretch}.realmlist-copy code{flex:1;min-width:0;display:flex;align-items:center;padding:10px;border:1px solid #274361;border-radius:8px;background:#07111c;font-size:.72rem;overflow-wrap:anywhere}.copy-btn{padding:0 11px;border:1px solid #365979;border-radius:8px;background:#13263a;color:#bcd4e9;font-size:.7rem;cursor:pointer}.copy-btn:hover{background:#1a3450}.copy-feedback{min-height:18px;margin-top:6px!important;font-size:.66rem!important;color:#6fc08b!important}.account-steps-card .step-list{margin-top:14px}
.fallback-card{display:grid;grid-template-columns:28px 1fr auto;gap:10px;align-items:center;padding:14px;border:1px solid #3c3a29;border-radius:12px;background:linear-gradient(135deg,#17160f,#0e1010);color:#c7c0a0}.fallback-card>span{font-size:1.1rem}.fallback-card b{font-size:.76rem;color:#e5ddbb}.fallback-card p{margin-top:2px;font-size:.68rem;line-height:1.4;color:#8f8a73}.fallback-card a{font-size:.68rem;color:#e2c96f;white-space:nowrap}

@media(max-width:980px){.wow-account-layout{grid-template-columns:1fr}.wow-account-side{display:grid;grid-template-columns:1fr 1fr}.fallback-card{grid-column:1/-1}}
@media(max-width:680px){.form-row.two{grid-template-columns:1fr}.register-heading{display:block}.realm-chip{display:inline-block;margin-top:10px}.account-service-badge{display:none}.wow-account-side{display:flex}.realmlist-copy{display:block}.copy-btn{width:100%;padding:9px;margin-top:7px}}

/* ==========================================================
   v5 · Kompaktes Forum mit eigener Thread-Ansicht
   ========================================================== */
.forum-overview,.forum-thread-page{padding:20px}.forum-page-heading,.forum-thread-heading{display:flex;justify-content:space-between;gap:20px;align-items:flex-start;margin-bottom:18px}.forum-page-heading h2,.forum-thread-heading h2{color:#fff;font-size:1.5rem;line-height:1.25;margin:5px 0 7px}.forum-page-heading p{max-width:700px;color:#8d99ab;font-size:.84rem;line-height:1.6}.eyebrow{font-size:.64rem;font-weight:900;letter-spacing:.15em;color:var(--gc-gold);text-transform:uppercase}.forum-summary{display:flex;gap:8px}.forum-summary span{min-width:86px;padding:9px;border:1px solid #273348;border-radius:10px;background:#090e16;color:#758297;font-size:.62rem;text-align:center}.forum-summary strong{display:block;color:#fff;font-size:1.05rem;margin-bottom:2px}.forum-actions{display:grid;grid-template-columns:1fr auto;gap:10px;margin-bottom:18px}.forum-compose,.forum-admin-compose{border:1px solid #263248;border-radius:11px;background:#0a1018;overflow:hidden}.forum-compose summary,.forum-admin-compose summary{cursor:pointer;list-style:none;padding:11px 13px;color:#dce4ef;font-size:.76rem;font-weight:800}.forum-compose summary::-webkit-details-marker,.forum-admin-compose summary::-webkit-details-marker{display:none}.forum-compose[open] summary,.forum-admin-compose[open] summary{border-bottom:1px solid #202b3e;background:#0d1520}.forum-compose form,.forum-admin-compose form{padding:13px}.forum-admin-compose{min-width:205px}.forum-login-note{padding:11px 13px;border:1px solid #2a3548;border-radius:10px;background:#0a1018;color:#8794a8;font-size:.75rem;line-height:1.5}.forum-category-list{display:flex;flex-direction:column;gap:12px}.forum-category-card{overflow:hidden;border:1px solid #253146;border-radius:14px;background:linear-gradient(160deg,#0d141e,#080c12)}.forum-category-header{display:flex;justify-content:space-between;gap:15px;align-items:flex-start;padding:15px 16px;border-bottom:1px solid #202b3d;background:linear-gradient(90deg,rgba(240,107,43,.055),transparent 55%)}.forum-category-header h3{color:#eef3f8;font-size:1rem;margin:0 0 4px}.forum-category-header p{color:#7f8b9e;font-size:.74rem;line-height:1.45}.forum-category-count{white-space:nowrap;padding:5px 8px;border:1px solid #313d51;border-radius:999px;color:#8390a3;background:#0a0f16;font-size:.62rem}.forum-subcategory{margin:9px;border:1px solid #1e293a;border-radius:10px;background:#090e15;overflow:hidden}.forum-subcategory-heading{display:flex;justify-content:space-between;gap:12px;align-items:center;padding:10px 12px;border-bottom:1px solid #1d2736}.forum-subcategory-heading h4{color:#d8e0eb;font-size:.81rem;margin-bottom:2px}.forum-subcategory-heading p{color:#6f7d91;font-size:.66rem;line-height:1.4}.forum-subcategory-heading>span{min-width:26px;height:26px;display:grid;place-items:center;border-radius:8px;background:#111a27;color:#93a0b2;font-size:.65rem;font-weight:800}.forum-topic-list{display:flex;flex-direction:column}.forum-topic-row{display:grid;grid-template-columns:34px minmax(0,1fr) 72px 128px 18px;align-items:center;gap:10px;padding:11px 13px;color:inherit;text-decoration:none;border-bottom:1px solid #182231;transition:.18s;background:rgba(8,12,18,.42)}.forum-topic-row:last-child{border-bottom:0}.forum-topic-row:hover{background:#111925;box-shadow:inset 3px 0 0 var(--gc-orange)}.forum-topic-icon{width:32px;height:32px;display:grid;place-items:center;border-radius:9px;border:1px solid #28364a;background:#0d1520;font-size:.9rem}.forum-topic-main{min-width:0;display:flex;flex-direction:column;gap:3px}.forum-topic-title{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#e8edf4;font-size:.81rem}.forum-topic-meta{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#6f7c90;font-size:.64rem}.forum-topic-stat,.forum-topic-last{display:flex;flex-direction:column;gap:2px}.forum-topic-stat{text-align:center}.forum-topic-stat strong{color:#dce4ef;font-size:.78rem}.forum-topic-stat small,.forum-topic-last small{color:#667489;font-size:.58rem}.forum-topic-last strong{color:#8f9bad;font-size:.61rem}.forum-topic-arrow{color:#66758a;font-size:1.2rem;text-align:right}.forum-empty{padding:12px;color:#647287;font-size:.69rem;font-style:italic}.forum-breadcrumb{display:flex;gap:7px;align-items:center;margin-bottom:16px;color:#6d7b8f;font-size:.68rem}.forum-breadcrumb a{color:#9aacbf;text-decoration:none}.forum-thread-heading{padding-bottom:15px;border-bottom:1px solid #202b3c}.forum-back-link{display:inline-flex;align-items:center;justify-content:center;white-space:nowrap;padding:7px 10px;border:1px solid #2b394d;border-radius:8px;color:#9ba9ba;text-decoration:none;font-size:.68rem;background:#0a1018}.forum-back-link:hover{color:#fff;border-color:#495a72}.forum-post{display:grid;grid-template-columns:135px minmax(0,1fr);overflow:hidden;border:1px solid #253147;border-radius:13px;background:#090e15;margin-bottom:10px}.forum-original-post{border-color:#354158;box-shadow:0 12px 28px rgba(0,0,0,.18)}.forum-post-author{display:flex;flex-direction:column;align-items:center;text-align:center;padding:17px 12px;border-right:1px solid #202b3d;background:#0b111a}.forum-post-author img{width:58px;height:58px;object-fit:cover;border-radius:14px;border:1px solid #3a4960;background:#070b11;margin-bottom:9px}.forum-post-author strong{max-width:110px;overflow:hidden;text-overflow:ellipsis;color:#e9eef5;font-size:.75rem}.forum-post-author small{color:#66748a;font-size:.59rem;margin-top:3px}.forum-post-content{min-width:0;padding:0 17px 18px}.forum-post-meta{display:flex;justify-content:space-between;gap:10px;padding:10px 0;border-bottom:1px solid #1c2635;color:#6f7d91;font-size:.61rem}.forum-post-text{padding-top:15px;color:#cbd3df;font-size:.85rem;line-height:1.72;overflow-wrap:anywhere}.forum-replies-heading{display:flex;justify-content:space-between;align-items:end;gap:12px;margin:24px 0 10px}.forum-replies-heading h3{color:#e6ecf3;font-size:.94rem}.forum-replies-heading span{color:#667489;font-size:.62rem}.forum-reply-list{display:flex;flex-direction:column;gap:9px}.forum-reply-post{margin:0}.forum-no-replies{padding:16px;border:1px dashed #2c394c;border-radius:11px;color:#718095;background:#090e15;font-size:.75rem;text-align:center}.forum-reply-editor{margin-top:22px;padding:16px;border:1px solid #2b394f;border-radius:13px;background:linear-gradient(150deg,#0e1621,#090e15)}.forum-reply-editor h3{color:#fff;font-size:.94rem;margin:4px 0 12px}.forum-reply-editor textarea{min-height:110px;resize:vertical}.forum-reply-editor-actions{display:flex;justify-content:space-between;align-items:center;gap:12px}.forum-reply-editor-actions small{color:#6f7d91;font-size:.63rem}.forum-reply-editor-actions .btn-submit{width:auto;min-width:140px}.forum-thread-login{margin-top:18px}.forum-thread-missing{text-align:center;padding:55px 20px}.forum-thread-missing>span{font-size:2rem}.forum-thread-missing h2{color:#fff;margin:10px 0 5px}.forum-thread-missing p{color:#7a8799;font-size:.77rem}
@media(max-width:900px){.forum-topic-row{grid-template-columns:34px minmax(0,1fr) 62px 18px}.forum-topic-last{display:none}.forum-actions{grid-template-columns:1fr}.forum-admin-compose{min-width:0}}
@media(max-width:640px){.forum-overview,.forum-thread-page{padding:13px}.forum-page-heading,.forum-thread-heading{display:block}.forum-summary{margin-top:12px}.forum-thread-heading .forum-back-link{margin-top:10px}.forum-category-header{display:block}.forum-category-count{display:inline-block;margin-top:8px}.forum-topic-row{grid-template-columns:30px minmax(0,1fr) 18px;padding:10px}.forum-topic-stat{display:none}.forum-topic-icon{width:29px;height:29px}.forum-post{grid-template-columns:1fr}.forum-post-author{display:grid;grid-template-columns:42px 1fr;column-gap:9px;text-align:left;align-items:center;border-right:0;border-bottom:1px solid #202b3d;padding:10px 12px}.forum-post-author img{grid-row:1/3;width:40px;height:40px;margin:0;border-radius:10px}.forum-post-author strong{max-width:none}.forum-post-content{padding:0 13px 15px}.forum-replies-heading{display:block}.forum-replies-heading span{display:block;margin-top:3px}.forum-reply-editor-actions{align-items:stretch;flex-direction:column}.forum-reply-editor-actions .btn-submit{width:100%}}

/* v6 · Minecraft Server-Stack */
.mc-stack-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;margin-top:14px}.mc-stack-item{position:relative;padding:10px 12px;border:1px solid #263548;border-radius:10px;background:#0a1017}.mc-stack-item b{display:block;color:#e8eef5;font-size:.78rem}.mc-stack-item span{display:block;margin-top:2px;color:#77869a;font-size:.64rem}.mc-stack-item em{position:absolute;right:9px;top:9px;padding:2px 6px;border:1px solid #34455a;border-radius:999px;color:#91a0b2;background:#101824;font-size:.52rem;font-style:normal;text-transform:uppercase;letter-spacing:.07em}.mc-stack-item:first-child{border-color:rgba(98,201,99,.36);background:linear-gradient(135deg,rgba(98,201,99,.08),#0a1017)}.mc-stack-item:first-child em{border-color:#315a34;color:#8bd78b;background:#102013}.mc-roadmap{display:grid;grid-template-columns:repeat(4,1fr);gap:7px;margin-top:13px}.mc-roadmap span{display:flex;align-items:center;gap:6px;padding:7px 8px;border:1px solid #222f41;border-radius:9px;color:#8290a3;background:#090e15;font-size:.6rem}.mc-roadmap b{width:20px;height:20px;display:grid;place-items:center;border-radius:7px;background:#172433;color:#b9c7d8;font-size:.62rem}@media(max-width:740px){.mc-stack-grid{grid-template-columns:1fr}.mc-roadmap{grid-template-columns:1fr 1fr}}

/* ==========================================================
   v9 HIGHLIGHT · GAMING CRUISE COMMAND DECK
   Fokus: starke Marke, Live-Daten, Minecraft + WoW, BlueMap
   ========================================================== */
.site-hero-v9{
    min-height:0;
    padding:42px 24px 36px;
    background:
        radial-gradient(circle at 14% 14%,rgba(244,189,79,.15),transparent 30%),
        radial-gradient(circle at 78% 16%,rgba(71,136,218,.16),transparent 34%),
        linear-gradient(135deg,#071019 0%,#09131e 46%,#070b11 100%);
    overflow:hidden;
}
.site-hero-v9:before{
    content:"";position:absolute;inset:0;pointer-events:none;opacity:.22;
    background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
    background-size:36px 36px;
}
.hero-v9-glow{position:absolute;right:7%;top:-160px;width:520px;height:520px;border-radius:50%;background:radial-gradient(circle,rgba(244,189,79,.12),transparent 67%);filter:blur(15px);pointer-events:none}
.hero-v9-shell{position:relative;z-index:2;max-width:1480px;margin:0 auto;display:grid;grid-template-columns:minmax(0,1.2fr) minmax(350px,.8fr);gap:34px;align-items:center}
.hero-v9-brand{display:flex;align-items:center;gap:28px;min-width:0}
.hero-v9-logo{width:158px;height:158px;object-fit:cover;border-radius:28px;border:1px solid rgba(244,189,79,.38);box-shadow:0 22px 60px rgba(0,0,0,.45),0 0 45px rgba(244,189,79,.1);flex:0 0 auto}
.hero-v9-copy{min-width:0}
.site-hero-v9 h1{font-size:clamp(2.2rem,4.1vw,4rem);margin:8px 0 12px;line-height:1;letter-spacing:-.045em}
.site-hero-v9 .hero-lead{font-size:1rem!important;max-width:700px;margin-bottom:19px!important}
.hero-v9-live{padding:17px;border:1px solid rgba(99,117,145,.34);border-radius:18px;background:linear-gradient(145deg,rgba(10,17,27,.92),rgba(7,12,19,.8));box-shadow:0 18px 48px rgba(0,0,0,.32);backdrop-filter:blur(14px)}
.hero-v9-live-head{display:flex;align-items:center;gap:9px;padding:0 3px 11px;color:#8b9aae;font-size:.63rem;font-weight:900;letter-spacing:.16em}
.pulse-dot{width:8px;height:8px;border-radius:999px;background:#61d37a;box-shadow:0 0 0 0 rgba(97,211,122,.5);animation:gcPulse 1.8s infinite;display:inline-block}
.pulse-dot.offline{background:#e36d6d;animation:none;box-shadow:none}
@keyframes gcPulse{0%{box-shadow:0 0 0 0 rgba(97,211,122,.45)}70%{box-shadow:0 0 0 8px rgba(97,211,122,0)}100%{box-shadow:0 0 0 0 rgba(97,211,122,0)}}
.hero-v9-live-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:7px}
.hero-live-stat{display:flex;flex-direction:column;min-width:0;padding:10px;border:1px solid #1f2b3c;border-radius:11px;background:#09101a;text-decoration:none;transition:.2s}
.hero-live-stat:hover{transform:translateY(-2px);border-color:#40506a;background:#0c1521}
.hero-live-stat span{color:#68778d;font-size:.57rem;text-transform:uppercase;letter-spacing:.09em;font-weight:800}.hero-live-stat strong{color:#e8edf3;font-size:.76rem;margin:3px 0}.hero-live-stat small{color:#77869b;font-size:.58rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.hero-v9-address{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-top:9px;padding:10px 11px;border:1px solid rgba(98,201,99,.24);border-radius:11px;background:rgba(26,65,31,.16)}
.hero-v9-address>div{min-width:0;display:flex;flex-direction:column}.hero-v9-address span{font-size:.53rem;letter-spacing:.13em;color:#73a079;font-weight:900}.hero-v9-address code{margin-top:2px;color:#e8f6ea;font-size:.77rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.icon-copy-btn,.showcase-address button{border:1px solid #3a4b61;border-radius:8px;padding:7px 10px;background:#101927;color:#dce6f1;font-size:.64rem;font-weight:800;cursor:pointer}.icon-copy-btn:hover,.showcase-address button:hover{border-color:#667a95;background:#162234}

/* Startseite / Command Deck */
.command-deck-v9{display:flex;flex-direction:column;gap:13px;margin-bottom:18px}
.command-deck-head{display:flex;align-items:end;justify-content:space-between;gap:18px;padding:6px 2px 4px}.command-deck-head h2{font-size:clamp(1.55rem,3vw,2.25rem);line-height:1.08;color:#fff;margin:6px 0}.command-deck-head p{max-width:720px;color:#8491a4;font-size:.82rem;line-height:1.55}.deck-clock-note{display:flex;align-items:center;gap:8px;white-space:nowrap;color:#7f8da0;font-size:.61rem;font-weight:900;letter-spacing:.14em}
.deck-status-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.deck-status-card{position:relative;display:grid;grid-template-columns:42px minmax(0,1fr) 22px;gap:10px;align-items:center;min-height:92px;padding:13px;border:1px solid #263349;border-radius:14px;background:linear-gradient(145deg,#0d151f,#090e15);text-decoration:none;color:inherit;overflow:hidden;transition:.2s}
.deck-status-card:before{content:"";position:absolute;left:0;top:0;bottom:0;width:3px;background:#52647c;opacity:.8}.deck-status-card.is-online:before{background:#58c86e;box-shadow:0 0 14px rgba(88,200,110,.45)}.deck-status-card:hover{transform:translateY(-2px);border-color:#41536e;box-shadow:0 14px 30px rgba(0,0,0,.22)}
.deck-status-icon{width:40px;height:40px;display:grid;place-items:center;border:1px solid #2a3a50;border-radius:11px;background:#101925;font-size:1.2rem}.deck-status-copy{min-width:0;display:flex;flex-direction:column}.deck-status-copy small{color:#6d7d92;font-size:.55rem;letter-spacing:.11em;font-weight:900}.deck-status-copy strong{color:#e9eef4;font-size:.82rem;margin:3px 0}.deck-status-copy span{color:#7f8da0;font-size:.62rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.deck-status-arrow{color:#65758b;font-size:1.2rem}
.deck-minecraft{background:linear-gradient(145deg,rgba(26,55,31,.55),#09110c)}.deck-wow{background:linear-gradient(145deg,rgba(20,42,67,.58),#091019)}.deck-voice{background:linear-gradient(145deg,rgba(44,42,77,.52),#0b0d17)}
.home-showcase-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:11px}.home-showcase{position:relative;overflow:hidden;padding:19px;border:1px solid #29364a;border-radius:16px;background:#0a111a;min-height:245px}.home-showcase:after{content:"";position:absolute;width:240px;height:240px;border-radius:50%;right:-110px;bottom:-135px;opacity:.11;filter:blur(5px)}.home-showcase-mc:after{background:#62c963}.home-showcase-wow:after{background:#5da9e9}.showcase-topline{position:relative;z-index:1;display:flex;justify-content:space-between;align-items:center;gap:12px;margin-bottom:15px}.showcase-topline span{color:#748399;font-size:.58rem;font-weight:900;letter-spacing:.13em}.showcase-topline b{padding:3px 7px;border:1px solid #315340;border-radius:999px;color:#77d58b;background:#0d1b12;font-size:.52rem;letter-spacing:.08em}.home-showcase-wow .showcase-topline b{border-color:#284b70;color:#73b5ef;background:#0b1724}.home-showcase h3{position:relative;z-index:1;max-width:560px;color:#f2f5f8;font-size:1.25rem;line-height:1.18;margin-bottom:8px}.home-showcase>p{position:relative;z-index:1;max-width:610px;color:#8b98aa;font-size:.76rem;line-height:1.55}.showcase-address{position:relative;z-index:1;display:flex;justify-content:space-between;align-items:center;gap:12px;margin-top:18px;padding:10px 11px;border:1px solid rgba(98,201,99,.28);border-radius:10px;background:rgba(10,24,13,.75)}.showcase-address>div{display:flex;min-width:0;flex-direction:column}.showcase-address small{color:#65906c;font-size:.51rem;letter-spacing:.12em;font-weight:900}.showcase-address code{color:#e8f4ea;font-size:.75rem;margin-top:3px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.showcase-actions{position:relative;z-index:1;display:flex;gap:8px;flex-wrap:wrap;margin-top:12px}.showcase-actions a{display:inline-flex;padding:8px 10px;border:1px solid #314058;border-radius:8px;background:#0e1722;color:#cbd7e5;text-decoration:none;font-size:.65rem;font-weight:800}.showcase-actions a:hover{color:#fff;border-color:#5a6c87}.showcase-realm-stats{position:relative;z-index:1;display:grid;grid-template-columns:repeat(3,1fr);gap:7px;margin-top:20px}.showcase-realm-stats>div{padding:10px;border:1px solid #25354b;border-radius:10px;background:#0b131e;text-align:center}.showcase-realm-stats strong{display:block;color:#edf3f9;font-size:1rem}.showcase-realm-stats span{display:block;margin-top:2px;color:#718199;font-size:.55rem}
.crew-strip-v9{display:grid;grid-template-columns:repeat(4,1fr);gap:8px}.crew-strip-v9>div{display:grid;grid-template-columns:28px 1fr;column-gap:8px;align-items:center;padding:10px;border:1px solid #223046;border-radius:11px;background:#0a1018}.crew-strip-v9>div>span{grid-row:1/3;font-size:1rem}.crew-strip-v9 b{color:#dde5ef;font-size:.68rem}.crew-strip-v9 small{color:#6f7d91;font-size:.54rem}

/* Minecraft v9 */
.mc-hero-v9{min-height:275px}.mc-quick-deck{display:grid;grid-template-columns:1.15fr .75fr 1fr .85fr;gap:8px}.mc-quick-card{display:flex;flex-direction:column;padding:12px;border:1px solid #253548;border-radius:12px;background:#0a1119}.mc-quick-card span{color:#68788e;font-size:.52rem;font-weight:900;letter-spacing:.12em}.mc-quick-card code,.mc-quick-card strong{margin:5px 0 3px;color:#e9eef4;font-size:.74rem;line-height:1.25}.mc-quick-card small{color:#69788d;font-size:.55rem}.mc-quick-primary{border-color:rgba(98,201,99,.35);background:linear-gradient(145deg,rgba(22,50,27,.55),#09110c)}.mc-quick-primary code{color:#dff1e1}.text-online{color:#77d98a!important}.text-offline{color:#e27777!important}.mc-motd-card{display:flex;align-items:center;gap:14px;padding:10px 13px;border:1px solid #243248;border-radius:10px;background:#090f16}.mc-motd-card span{white-space:nowrap;color:#66768c;font-size:.53rem;font-weight:900;letter-spacing:.11em}.mc-motd-card strong{color:#cfd9e5;font-size:.68rem;font-weight:600}.step-list-v9{display:flex;flex-direction:column;gap:8px;list-style:none;margin:15px 0}.step-list-v9 li{display:flex;align-items:center;gap:10px;padding:8px 9px;border:1px solid #233146;border-radius:9px;background:#0a1119;color:#bac5d2;font-size:.69rem}.step-list-v9 b{width:24px;height:24px;display:grid;place-items:center;border-radius:7px;background:#16251a;color:#7bd386;font-size:.63rem}.step-list-v9 code{color:#dce9df}.map-preview-card p{margin-bottom:14px}.map-preview-link{display:grid;grid-template-columns:62px minmax(0,1fr) 20px;gap:11px;align-items:center;padding:9px;border:1px solid #27374c;border-radius:12px;background:#091018;text-decoration:none}.map-preview-link:hover{border-color:#496079;background:#0c1520}.map-preview-link img{width:62px;height:62px;object-fit:cover;border-radius:10px}.map-preview-link span{min-width:0;display:flex;flex-direction:column}.map-preview-link b{color:#e9eef4;font-size:.73rem}.map-preview-link small{margin-top:3px;color:#718198;font-size:.56rem}.map-preview-link i{color:#7790aa;font-style:normal;font-size:1.2rem}.section-head-v9{display:flex;justify-content:space-between;align-items:flex-start;gap:12px}.mc-stack-grid-v9{grid-template-columns:repeat(3,minmax(0,1fr))}.mc-stack-grid-v9 .mc-stack-item{min-height:57px}.mc-stack-grid-v9 .mc-stack-item em{border-color:#315a34;color:#8bd78b;background:#102013}.feature-grid-v9{grid-template-columns:repeat(3,1fr)}

/* BlueMap */
.map-hero-v9{min-height:190px}.map-status-card{width:118px;height:118px;border-radius:20px;display:flex;flex-direction:column;align-items:center;justify-content:center;border:1px solid rgba(98,201,99,.34);background:linear-gradient(145deg,#102217,#09110c);box-shadow:0 14px 35px rgba(0,0,0,.3)}.map-status-card span{color:#77d488;font-size:.55rem;font-weight:900;letter-spacing:.14em}.map-status-card b{color:#fff;font-size:2.25rem;line-height:1.1}.map-status-card small{color:#72877a;font-size:.55rem}.map-status-card.is-offline{border-color:#573636;background:#1b1010}.map-shell-card{padding:13px}.map-shell-head{display:flex;justify-content:space-between;align-items:center;gap:12px;padding:2px 3px 12px}.map-shell-head h3{color:#fff;margin-top:3px}.map-shell-actions{display:flex;align-items:center;gap:9px}.map-shell-actions>a{padding:6px 8px;border:1px solid #314158;border-radius:8px;color:#9cafc1;text-decoration:none;font-size:.61rem}.bluemap-frame-wrap{position:relative;height:clamp(520px,68vh,850px);overflow:hidden;border:1px solid #27354a;border-radius:13px;background:#060a0f}.bluemap-frame{display:block;width:100%;height:100%;border:0;background:#05080d}.map-note{margin:9px 3px 0}
.sidebar-map-card{background:linear-gradient(150deg,rgba(24,50,29,.45),#0c1118)!important;border-top-color:#4fa85e!important}

/* Toast */
.gc-toast{position:fixed;left:50%;bottom:24px;z-index:9999;transform:translate(-50%,14px);padding:9px 12px;border:1px solid #365343;border-radius:9px;background:rgba(8,17,12,.94);color:#dff3e3;font-size:.68rem;font-weight:800;opacity:0;pointer-events:none;transition:.2s;box-shadow:0 14px 34px rgba(0,0,0,.35);backdrop-filter:blur(10px)}.gc-toast.show{opacity:1;transform:translate(-50%,0)}

/* v9 Responsiv */
@media(max-width:1220px){.hero-v9-shell{grid-template-columns:1fr}.hero-v9-live{max-width:760px}.mc-quick-deck{grid-template-columns:1fr 1fr}.mc-stack-grid-v9{grid-template-columns:repeat(2,1fr)}}
@media(max-width:1024px){.site-hero-v9{padding:30px 18px}.hero-v9-shell{gap:22px}.portal-grid{max-width:980px}.sidebar{position:static}.deck-status-grid{grid-template-columns:1fr 1fr}.deck-status-card:last-child{grid-column:1/-1}.home-showcase-grid{grid-template-columns:1fr}.crew-strip-v9{grid-template-columns:1fr 1fr}}
@media(max-width:720px){.hero-v9-brand{align-items:flex-start;gap:16px}.hero-v9-logo{width:92px;height:92px;border-radius:18px}.site-hero-v9 h1{font-size:2.25rem}.hero-v9-live-grid{grid-template-columns:1fr}.hero-v9-address{align-items:stretch;flex-direction:column}.icon-copy-btn{width:100%}.deck-status-grid{grid-template-columns:1fr}.deck-status-card:last-child{grid-column:auto}.command-deck-head{align-items:flex-start;flex-direction:column}.home-showcase{padding:15px}.crew-strip-v9{grid-template-columns:1fr}.mc-quick-deck{grid-template-columns:1fr}.mc-stack-grid-v9{grid-template-columns:1fr}.feature-grid-v9{grid-template-columns:1fr}.section-head-v9{flex-direction:column}.map-shell-head{align-items:flex-start;flex-direction:column}.map-shell-actions{width:100%;justify-content:space-between}.map-status-card{display:none}.bluemap-frame-wrap{height:65vh}}
@media(max-width:500px){.hero-v9-brand{display:block}.hero-v9-logo{margin-bottom:15px}.hero-actions{display:grid;grid-template-columns:1fr 1fr}.hero-actions .hero-btn-ghost{grid-column:1/-1}.showcase-address{align-items:stretch;flex-direction:column}.showcase-address button{width:100%}.showcase-realm-stats{grid-template-columns:1fr 1fr 1fr}.mc-motd-card{align-items:flex-start;flex-direction:column}}

/* ==========================================================
   v10 · HOLY CENTRAL
   Einheitliche Gaming-Cruise-Oberfläche ohne Legacy-Orange
   ========================================================== */
:root{
  --gc-bg:#060a10;
  --gc-bg2:#08111b;
  --gc-surface:#0b131e;
  --gc-surface2:#0e1825;
  --gc-line:#223147;
  --gc-line2:#31425b;
  --gc-text:#edf3f9;
  --gc-muted:#8190a5;
  --gc-gold:#e8b85a;
  --gc-gold-soft:#ffd37d;
  --gc-green:#61cf7b;
  --gc-blue:#69a9e8;
  --gc-violet:#9485ee;
  --gc-danger:#e36d72;
}
html{scroll-behavior:smooth}
body{background:radial-gradient(circle at 50% -15%,#122235 0%,#09111b 34%,#060a10 72%) fixed;color:var(--gc-text)}
body::before{content:"";position:fixed;inset:0;z-index:-1;pointer-events:none;opacity:.18;background-image:linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px);background-size:42px 42px}
::selection{background:rgba(232,184,90,.28);color:#fff}

/* Legacy-Farben global harmonisieren */
.box,.forum-card,.subforum-box,.news-card,.reply-box{background:linear-gradient(145deg,rgba(14,24,37,.94),rgba(8,14,22,.96));border-color:var(--gc-line);border-top-color:var(--gc-line2);box-shadow:0 18px 45px rgba(0,0,0,.22)}
.box-title,.news-title,.forum-title{color:var(--gc-text)}
.nav-menu a,.nav-menu details summary{background:#09111b;border-left-color:var(--gc-line2);color:#b8c5d5}
.nav-menu a:hover,.nav-menu details summary:hover{background:#111d2a;color:#fff}
.nav-game-wow>summary{border-left-color:var(--gc-blue)!important}.nav-game-minecraft>summary{border-left-color:var(--gc-green)!important}
.tab-btn{background:#08101a;border-color:var(--gc-line);color:#9cacc0}.tab-btn.active,.tab-btn:hover{background:#172438;color:#fff;border-color:#3c506a}.tab-btn.tab-minecraft.active{box-shadow:inset 0 -2px 0 var(--gc-green)}.tab-btn.tab-wow.active{box-shadow:inset 0 -2px 0 var(--gc-blue)}
form input,form textarea,form select{background:#07101a;border-color:#293a51;color:#eef4fa}.btn-submit{background:linear-gradient(135deg,#243852,#18283c);border:1px solid #3b506c}.btn-submit:hover{background:linear-gradient(135deg,#304966,#1e3149)}.btn-danger{background:linear-gradient(135deg,#7e3137,#5b2429);border-color:#a2464e}.news-create details summary,.subforum-title,.voice-channel-name{color:var(--gc-gold-soft)}
.news-body{scrollbar-color:#405772 #07101a}.news-body::-webkit-scrollbar-thumb{background:#405772;border-color:#07101a}
.emoji-toolbar{background:#07101a;border-color:var(--gc-line)}.emoji-btn{background:#101c29;border-color:#344860}.emoji-btn:hover{background:#1e3045}

/* Startseite bewusst ohne alte Seitenleisten */
.portal-home-v10{max-width:1520px;margin:0 auto;padding:24px 24px 70px}.portal-home-v10 .portal-main{width:100%;min-width:0}.portal-home-v10 .tab-bar{display:none}.portal-grid-v10{max-width:1520px;grid-template-columns:265px minmax(0,1fr) 285px;gap:20px;margin-top:22px}.portal-grid-v10 .sidebar .box{border-top-width:1px}

.holy-central-v10{display:flex;flex-direction:column;gap:18px}
.central-intro{display:flex;justify-content:space-between;align-items:flex-end;gap:22px;padding:10px 2px 4px}.central-kicker{color:var(--gc-gold);font-size:.67rem;font-weight:900;letter-spacing:.16em}.central-intro h2{font-size:clamp(2rem,4vw,3.45rem);letter-spacing:-.045em;line-height:1.02;margin:7px 0 10px}.central-intro p{max-width:760px;color:var(--gc-muted);font-size:.95rem;line-height:1.65}.central-clock{display:flex;gap:10px;align-items:center;padding:10px 14px;border:1px solid var(--gc-line);border-radius:12px;background:#09121c}.central-clock div{display:flex;flex-direction:column}.central-clock b{font-size:.63rem;letter-spacing:.15em;color:#9aadbf}.central-clock small{font-size:.8rem;color:#e9eff5;margin-top:2px}
.central-status-rail{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.central-status{display:grid;grid-template-columns:46px minmax(0,1fr) 24px;gap:12px;align-items:center;min-height:88px;padding:13px 15px;border:1px solid var(--gc-line);border-radius:15px;background:linear-gradient(145deg,#0d1723,#09111a);color:inherit;text-decoration:none;position:relative;overflow:hidden;transition:.22s}.central-status::before{content:"";position:absolute;inset:0 auto 0 0;width:3px;background:#506079}.central-status.is-online::before{background:var(--gc-green);box-shadow:0 0 22px rgba(97,207,123,.55)}.central-status:hover{transform:translateY(-3px);border-color:#405775;box-shadow:0 18px 42px rgba(0,0,0,.24)}.central-status-mc{background:linear-gradient(145deg,rgba(22,52,31,.72),#08110d 60%)}.central-status-wow{background:linear-gradient(145deg,rgba(23,45,72,.72),#09121c 60%)}.central-status-voice{background:linear-gradient(145deg,rgba(49,43,83,.66),#0b0d18 60%)}.central-status-icon{width:44px;height:44px;display:grid;place-items:center;border:1px solid #304157;border-radius:12px;background:rgba(10,18,28,.72);font-size:1.25rem}.central-status div{display:flex;flex-direction:column;min-width:0}.central-status small{color:#718198;font-size:.56rem;font-weight:900;letter-spacing:.12em}.central-status strong{color:#f0f5fa;font-size:.88rem;margin:3px 0}.central-status em{font-style:normal;color:#7e8da1;font-size:.64rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.central-status i{color:#768aa2;font-style:normal;font-size:1.15rem}

.central-world-grid{display:grid;grid-template-columns:minmax(0,1.55fr) minmax(360px,.75fr);gap:14px}.world-stage{position:relative;overflow:hidden;min-height:520px;border:1px solid #293a50;border-radius:22px;background:#08111a;box-shadow:0 30px 70px rgba(0,0,0,.25)}.world-stage-mc{background:radial-gradient(circle at 78% 22%,rgba(76,174,98,.16),transparent 27%),linear-gradient(140deg,#0a1711 0%,#09121a 45%,#071018 100%)}.world-stage-wow{background:radial-gradient(circle at 70% 20%,rgba(74,143,216,.2),transparent 32%),linear-gradient(150deg,#0b1724,#08101a 58%,#070c13)}.world-stage-grid{position:absolute;inset:0;opacity:.28;background-image:linear-gradient(rgba(99,175,119,.11) 1px,transparent 1px),linear-gradient(90deg,rgba(99,175,119,.11) 1px,transparent 1px);background-size:34px 34px;transform:perspective(700px) rotateX(63deg) scale(1.5);transform-origin:center 72%}.world-stage-glow{position:absolute;width:480px;height:480px;right:-110px;bottom:-180px;border-radius:50%;background:radial-gradient(circle,rgba(79,187,105,.22),transparent 64%);filter:blur(6px)}.world-stage-head{position:relative;z-index:2;display:flex;justify-content:space-between;align-items:center;gap:15px;padding:17px 19px;border-bottom:1px solid rgba(47,66,88,.65);background:rgba(6,11,17,.46);backdrop-filter:blur(12px)}.world-stage-head>div{display:flex;align-items:center;gap:10px}.world-stage-head span{color:#76869b;font-size:.57rem;font-weight:900;letter-spacing:.12em}.world-stage-head b{padding:3px 7px;border:1px solid #345443;border-radius:999px;color:#79d58b;background:#0c1c12;font-size:.52rem;letter-spacing:.08em}.world-stage-head b.offline{border-color:#60393d;color:#e7898e;background:#1c0d0f}.world-stage-head>a{color:#aab9ca;text-decoration:none;font-size:.65rem;font-weight:800}.world-stage-content{position:relative;z-index:2;max-width:760px;padding:70px 38px 30px}.world-stage-content.compact{padding-top:92px}.world-stage-overline{display:block;color:#78a886;font-size:.61rem;font-weight:900;letter-spacing:.16em;margin-bottom:9px}.world-stage-wow .world-stage-overline{color:#77a9d5}.world-stage-content h3{font-size:clamp(2.2rem,4vw,4.25rem);letter-spacing:-.055em;line-height:.98;color:#f2f6fa;max-width:720px}.world-stage-wow .world-stage-content h3{font-size:clamp(2.05rem,3vw,3.15rem)}.world-stage-content p{max-width:650px;margin-top:17px;color:#92a1b2;font-size:.9rem;line-height:1.7}.world-address-bar{display:flex;justify-content:space-between;align-items:center;gap:14px;max-width:630px;margin-top:24px;padding:12px 13px;border:1px solid rgba(98,201,99,.33);border-radius:12px;background:rgba(8,25,13,.78)}.world-address-bar>div{display:flex;flex-direction:column;min-width:0}.world-address-bar small{color:#73a47e;font-size:.52rem;font-weight:900;letter-spacing:.13em}.world-address-bar code{margin-top:3px;color:#eff8f1;font-size:.82rem}.world-address-bar button{padding:8px 11px;border:1px solid #3b5b44;border-radius:8px;background:#11241a;color:#dff1e3;font-weight:800;font-size:.62rem;cursor:pointer}.world-stage-actions{display:flex;flex-wrap:wrap;gap:8px;margin-top:16px}.world-stage-actions a{padding:9px 12px;border:1px solid #32445b;border-radius:9px;background:#0d1722;color:#c6d2df;text-decoration:none;font-size:.67rem;font-weight:800}.world-stage-actions a.primary{background:linear-gradient(135deg,#234a2e,#17371f);border-color:#3e7650;color:#edfff1}.world-stage-actions a.primary.blue{background:linear-gradient(135deg,#24496e,#183551);border-color:#3e6d99;color:#eff7ff}.world-stage-stats{position:absolute;z-index:2;right:20px;bottom:20px;display:grid;grid-template-columns:repeat(2,112px);gap:8px}.world-stage-stats div,.wow-metric-grid div{padding:11px;border:1px solid rgba(47,66,88,.85);border-radius:11px;background:rgba(8,15,24,.78);backdrop-filter:blur(10px)}.world-stage-stats strong,.wow-metric-grid strong{display:block;color:#edf3f8;font-size:.93rem}.world-stage-stats span,.wow-metric-grid span{display:block;margin-top:2px;color:#718096;font-size:.54rem}.wow-emblem{position:absolute;right:-30px;top:90px;color:rgba(107,169,228,.07);font-size:15rem;font-family:serif;line-height:1}.wow-metric-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:7px;max-width:520px;margin-top:22px}

.central-community-grid{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(360px,.65fr);gap:14px}.central-panel{border:1px solid var(--gc-line);border-radius:18px;background:linear-gradient(145deg,rgba(13,23,35,.97),rgba(7,13,21,.98));box-shadow:0 22px 55px rgba(0,0,0,.2);overflow:hidden}.central-panel-head{display:flex;justify-content:space-between;align-items:flex-end;gap:14px;padding:16px 18px;border-bottom:1px solid #1d2a3b}.central-panel-head>div{display:flex;flex-direction:column}.central-panel-head span{color:#77869b;font-size:.54rem;font-weight:900;letter-spacing:.14em}.central-panel-head h3{color:#edf2f7;font-size:1.05rem;margin-top:4px}.central-panel-head small{color:#728096;font-size:.59rem}.central-panel-head a{color:#9fb1c4;text-decoration:none;font-size:.65rem;font-weight:800}.central-news-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:0}.central-news-card{position:relative;min-height:165px;border-bottom:1px solid #1c2838;background:#09111a;overflow:hidden}.central-news-card:nth-child(even){border-left:1px solid #1c2838}.central-news-card.featured{grid-row:span 2;min-height:330px}.central-news-image{position:absolute;inset:0;background-size:cover;background-position:center;opacity:.45}.central-news-copy{position:relative;z-index:2;display:flex;flex-direction:column;height:100%;justify-content:flex-end;padding:18px}.central-news-copy>span{align-self:flex-start;padding:3px 7px;border:1px solid rgba(232,184,90,.34);border-radius:999px;background:rgba(66,48,20,.24);color:var(--gc-gold-soft);font-size:.49rem;font-weight:900;letter-spacing:.09em;text-transform:uppercase}.central-news-copy h4{color:#eef3f8;font-size:.91rem;line-height:1.28;margin:8px 0}.central-news-card.featured h4{font-size:1.25rem}.central-news-copy p{color:#8291a4;font-size:.64rem;line-height:1.55}.central-news-copy small{margin-top:9px;color:#667589;font-size:.53rem}.central-thread-list{display:flex;flex-direction:column}.central-thread-row{display:grid;grid-template-columns:34px minmax(0,1fr) 30px;gap:10px;align-items:center;padding:12px 15px;border-bottom:1px solid #1b2736;color:inherit;text-decoration:none;transition:.18s}.central-thread-row:hover{background:#0e1925}.central-thread-row>span{width:32px;height:32px;display:grid;place-items:center;border:1px solid #2b3c52;border-radius:9px;background:#0b1520}.central-thread-row>div{min-width:0;display:flex;flex-direction:column}.central-thread-row strong{color:#dfe7f0;font-size:.72rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.central-thread-row small{margin-top:3px;color:#6c7b90;font-size:.55rem}.central-thread-row>b{width:26px;height:26px;display:grid;place-items:center;border-radius:8px;background:#111c29;color:#91a2b7;font-size:.6rem}.central-empty{padding:18px;color:#738196;font-size:.68rem}

.central-lower-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}.crew-live-list{display:grid;grid-template-columns:repeat(2,1fr);gap:8px;padding:15px}.crew-live-list>div{display:grid;grid-template-columns:10px minmax(0,1fr) auto;gap:8px;align-items:center;padding:9px 10px;border:1px solid #223147;border-radius:10px;background:#09121b}.crew-live-list strong{font-size:.68rem;color:#dbe4ed}.crew-live-list small{font-size:.53rem;color:#6f7e91}.hall-strip{display:flex;flex-wrap:wrap;align-items:center;gap:7px;padding:12px 15px;border-top:1px solid #1e2a3a}.hall-strip>span{color:var(--gc-gold);font-size:.52rem;font-weight:900;letter-spacing:.11em;margin-right:4px}.hall-strip>b{padding:5px 7px;border:1px solid #2b394d;border-radius:8px;background:#0a131d;color:#b8c5d3;font-size:.59rem}.hall-strip b small{color:#68778b}.crew-access-panel{padding-bottom:15px}.central-member-card{display:flex;align-items:center;gap:13px;padding:15px}.central-member-card img{width:58px;height:58px;object-fit:cover;border-radius:14px;border:1px solid #364a64}.central-member-card>div{display:flex;flex-direction:column}.central-member-card small{color:#6f7f94;font-size:.52rem;letter-spacing:.12em;font-weight:900}.central-member-card strong{color:#eef3f8;font-size:.92rem;margin:3px 0}.central-member-card span{color:#718096;font-size:.6rem}.central-access-actions{display:flex;gap:8px;padding:0 15px}.central-access-actions a,.central-access-actions button{display:inline-flex;align-items:center;justify-content:center;padding:8px 11px;border:1px solid #32445c;border-radius:8px;background:#101a27;color:#c8d4e1;text-decoration:none;font-size:.62rem;font-weight:800;cursor:pointer}.central-access-actions form{margin:0}.central-login{margin:12px 15px 0;border:1px solid #24344a;border-radius:11px;background:#09121c;overflow:hidden}.central-login summary{padding:10px 12px;color:#c9d5e2;font-size:.67rem;font-weight:800;cursor:pointer}.central-login form{display:grid;grid-template-columns:1fr 1fr auto;gap:7px;padding:0 10px 10px}.central-login input{margin:0}.central-login button{padding:0 12px;border:1px solid #405874;border-radius:8px;background:#16263a;color:#e5edf5;font-weight:800;font-size:.62rem;cursor:pointer}

.captain-console{border:1px solid #26364b;border-radius:15px;background:linear-gradient(145deg,#0d1722,#08101a);overflow:hidden}.captain-console>summary{display:flex;justify-content:space-between;align-items:center;padding:13px 16px;cursor:pointer;list-style:none}.captain-console>summary span{color:#cbd6e2;font-size:.64rem;font-weight:900;letter-spacing:.13em}.captain-console>summary small{color:#718096;font-size:.56rem}.captain-console-body{padding:15px;border-top:1px solid #223147}.captain-news-form{display:grid;grid-template-columns:1.4fr .7fr 1.2fr;gap:9px}.captain-news-form textarea{grid-column:1/-1}.captain-news-form button{grid-column:3;padding:10px;border:1px solid #4b607b;border-radius:9px;background:#17273b;color:#e9eff6;font-weight:800;cursor:pointer}.captain-news-form input,.captain-news-form select,.captain-news-form textarea{margin:0}

/* Unterseiten erhalten denselben Look */
.portal-grid-v10 .box-eyebrow,.game-kicker{color:var(--gc-gold)}.portal-grid-v10 .status-badge{color:var(--gc-green)}.portal-grid-v10 .status-dot{background:var(--gc-green);box-shadow:0 0 8px rgba(97,207,123,.75)}.portal-grid-v10 .wow-stat-value{color:var(--gc-blue)}.portal-grid-v10 .mini-cta,.portal-grid-v10 .btn-voice{background:#101b29;border:1px solid #30435b;color:#cbd7e4}.portal-grid-v10 .sidebar-map-card{background:linear-gradient(145deg,rgba(24,52,32,.48),#0a131d)!important;border-top-color:#31543b!important}

.gc-reveal{opacity:0;transform:translateY(14px);transition:opacity .55s ease,transform .55s ease}.gc-reveal.is-visible{opacity:1;transform:none}@media(prefers-reduced-motion:reduce){.gc-reveal{opacity:1;transform:none;transition:none}.central-status:hover{transform:none}}

@media(max-width:1180px){.central-world-grid,.central-community-grid{grid-template-columns:1fr}.world-stage-wow{min-height:420px}.world-stage-content.compact{padding-top:62px}.central-news-grid{grid-template-columns:1fr 1fr}.central-news-card.featured{grid-row:auto;min-height:240px}.portal-grid-v10{grid-template-columns:230px minmax(0,1fr)}.portal-grid-v10 .sidebar-right{display:none}}
@media(max-width:900px){.portal-home-v10{padding:18px 16px 55px}.central-status-rail{grid-template-columns:1fr}.central-world-grid{grid-template-columns:1fr}.world-stage{min-height:500px}.world-stage-stats{position:relative;right:auto;bottom:auto;margin:0 18px 18px;grid-template-columns:repeat(4,1fr)}.central-lower-grid{grid-template-columns:1fr}.central-news-grid{grid-template-columns:1fr}.central-news-card,.central-news-card.featured{min-height:210px;border-left:0!important}.portal-grid-v10{grid-template-columns:1fr}.portal-grid-v10 .sidebar-left{display:none}}
@media(max-width:640px){.central-intro{align-items:flex-start;flex-direction:column}.central-clock{display:none}.world-stage-head{align-items:flex-start;flex-direction:column}.world-stage-content,.world-stage-content.compact{padding:42px 18px 22px}.world-stage-content h3{font-size:2.45rem}.world-stage-stats{grid-template-columns:1fr 1fr}.world-address-bar{align-items:stretch;flex-direction:column}.world-address-bar button{width:100%}.wow-metric-grid{grid-template-columns:1fr 1fr 1fr}.crew-live-list{grid-template-columns:1fr}.central-login form{grid-template-columns:1fr}.central-login button{padding:9px}.captain-news-form{grid-template-columns:1fr}.captain-news-form textarea,.captain-news-form button{grid-column:1}}

/* ==========================================================
   v11 · WORLDSOUL / HEILIGE CENTRALE MIT SPIELIDENTITÄT
   Fokus: mehr Minecraft + WotLK Seele im Hero und auf Start
   ========================================================== */
.site-hero-v9{
    position:relative;
    background:
        radial-gradient(circle at 14% 12%,rgba(244,189,79,.17),transparent 24%),
        radial-gradient(circle at 78% 14%,rgba(91,164,233,.22),transparent 28%),
        linear-gradient(180deg,rgba(255,255,255,.02) 0 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.02) 0 1px,transparent 1px),
        linear-gradient(135deg,#071019 0%,#09131d 45%,#070b11 100%);
    background-size:auto,auto,46px 46px,46px 46px,auto;
}
.site-hero-v9::after{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        radial-gradient(circle at 22% 82%,rgba(98,201,99,.15),transparent 20%),
        radial-gradient(circle at 72% 68%,rgba(93,169,233,.12),transparent 22%),
        linear-gradient(0deg,rgba(6,11,17,.88),rgba(6,11,17,0) 42%);
}
.hero-v9-shell{position:relative}
.hero-v9-shell::before{
    content:"";
    position:absolute;
    left:16px;
    bottom:-28px;
    width:min(44vw,520px);
    height:165px;
    border-radius:24px 24px 0 0;
    opacity:.9;
    pointer-events:none;
    background:
        linear-gradient(180deg,rgba(0,0,0,0),rgba(0,0,0,.35)),
        linear-gradient(90deg,#223729 0 18%,transparent 18% 20%,#6aa84f 20% 40%,transparent 40% 42%,#8b5a2b 42% 60%,transparent 60% 62%,#6e7076 62% 80%,transparent 80% 82%,#36a2eb 82% 100%);
    box-shadow:0 24px 60px rgba(0,0,0,.28);
    clip-path:polygon(0 100%,0 55%,10% 55%,10% 40%,22% 40%,22% 58%,35% 58%,35% 28%,50% 28%,50% 50%,64% 50%,64% 18%,80% 18%,80% 42%,100% 42%,100% 100%);
}
.hero-v9-shell::after{
    content:"ALLIANZ      ❄      HORDE";
    position:absolute;
    right:20px;
    top:4px;
    padding:9px 16px;
    border:1px solid rgba(95,132,176,.4);
    border-radius:999px;
    background:linear-gradient(90deg,rgba(31,58,96,.62),rgba(14,25,41,.88),rgba(96,34,34,.6));
    color:#d8e6f7;
    font-size:.64rem;
    letter-spacing:.28em;
    font-weight:900;
    text-transform:uppercase;
    box-shadow:0 12px 30px rgba(0,0,0,.22);
}
.hero-v9-brand{position:relative}
.hero-v9-brand::after{
    content:"⛏️ Blocks • BlueMap • CoreProtect";
    position:absolute;
    left:186px;
    bottom:-10px;
    padding:7px 12px;
    border:1px solid rgba(98,201,99,.32);
    border-radius:999px;
    background:rgba(10,24,13,.82);
    color:#9fdb9c;
    font-size:.58rem;
    font-weight:900;
    letter-spacing:.12em;
    text-transform:uppercase;
}
.hero-v9-live{
    position:relative;
    overflow:hidden;
}
.hero-v9-live::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        linear-gradient(135deg,rgba(255,255,255,.03),transparent 36%),
        radial-gradient(circle at 76% 24%,rgba(96,164,229,.13),transparent 28%),
        radial-gradient(circle at 24% 88%,rgba(98,201,99,.08),transparent 24%);
}
.hero-v9-live::after{
    content:"";
    position:absolute;
    right:-18px;
    bottom:-24px;
    width:180px;
    height:180px;
    background:
      linear-gradient(45deg,transparent 44%,rgba(123,172,224,.16) 45% 48%,transparent 49%),
      linear-gradient(-45deg,transparent 44%,rgba(123,172,224,.12) 45% 48%,transparent 49%);
    opacity:.9;
    pointer-events:none;
}

.holy-central-v11{gap:20px}
.identity-fusion-banner{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    gap:18px;
    align-items:center;
    padding:18px 20px;
    border:1px solid #2a3950;
    border-radius:18px;
    background:
        radial-gradient(circle at 14% 50%,rgba(98,201,99,.13),transparent 24%),
        radial-gradient(circle at 86% 50%,rgba(93,169,233,.13),transparent 26%),
        linear-gradient(135deg,#0b141f,#081019 52%,#0a1119);
    box-shadow:0 22px 50px rgba(0,0,0,.18);
    overflow:hidden;
    position:relative;
}
.identity-fusion-banner::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background-image:linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px);
    background-size:28px 28px;
    opacity:.35;
}
.identity-fusion-copy{position:relative;z-index:1}
.identity-fusion-copy span{display:block;color:var(--gc-gold);font-size:.62rem;font-weight:900;letter-spacing:.16em}
.identity-fusion-copy h3{margin:7px 0 10px;color:#eef3f8;font-size:clamp(1.35rem,2.4vw,2.05rem);line-height:1.03;letter-spacing:-.03em}
.identity-fusion-copy p{max-width:700px;color:#8e9eb2;font-size:.83rem;line-height:1.7}
.identity-fusion-tokens{position:relative;z-index:1;display:flex;flex-wrap:wrap;justify-content:flex-end;gap:8px;max-width:470px}
.fusion-token{display:inline-flex;align-items:center;gap:7px;padding:8px 11px;border:1px solid #2c3d54;border-radius:999px;background:rgba(10,17,27,.78);color:#c6d2df;font-size:.64rem;font-weight:800;letter-spacing:.05em}
.fusion-token.mc,.fusion-token.block{border-color:rgba(98,201,99,.28);background:rgba(13,27,16,.76);color:#bceabc}
.fusion-token.alliance,.fusion-token.ice{border-color:rgba(93,169,233,.28);background:rgba(11,22,34,.82);color:#d2e6fb}
.fusion-token.horde{border-color:rgba(222,111,86,.32);background:rgba(31,14,14,.8);color:#ffd8d0}

.themed-panel{position:relative;overflow:hidden}
.themed-panel::after{
    content:"";
    position:absolute;
    inset:auto -40px -55px auto;
    width:180px;
    height:180px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(255,255,255,.07),transparent 62%);
    opacity:.12;
    pointer-events:none;
}
.minecraft-panel::before,
.wow-panel::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    opacity:.16;
}
.minecraft-panel::before{
    background:
      linear-gradient(rgba(98,201,99,.18) 1px,transparent 1px),
      linear-gradient(90deg,rgba(98,201,99,.18) 1px,transparent 1px);
    background-size:28px 28px;
}
.wow-panel::before{
    background:radial-gradient(circle at 78% 18%,rgba(93,169,233,.4),transparent 26%);
}

.world-stage-mc,.world-stage-wow{isolation:isolate}
.world-stage-mc::before{
    content:"";
    position:absolute;
    inset:auto 0 0 0;
    height:155px;
    background:
      linear-gradient(180deg,transparent,rgba(0,0,0,.24)),
      linear-gradient(90deg,#5d8f43 0 18%,#8b5a2b 18% 36%,#5f7f62 36% 54%,#7a4a2d 54% 72%,#74c26f 72% 100%);
    opacity:.14;
    clip-path:polygon(0 100%,0 64%,11% 64%,11% 55%,20% 55%,20% 68%,34% 68%,34% 44%,49% 44%,49% 58%,65% 58%,65% 32%,81% 32%,81% 46%,100% 46%,100% 100%);
    z-index:0;
}
.mc-block-cluster{
    position:absolute;
    right:26px;
    top:82px;
    z-index:1;
    display:grid;
    grid-template-columns:repeat(2,92px);
    gap:8px;
}
.mc-block{
    display:grid;
    place-items:end start;
    height:92px;
    padding:10px;
    border:1px solid rgba(74,108,80,.82);
    border-radius:15px;
    box-shadow:0 12px 28px rgba(0,0,0,.22);
    color:#eff8f1;
    font-size:.56rem;
    font-weight:900;
    letter-spacing:.12em;
    text-transform:uppercase;
    text-shadow:0 1px 2px rgba(0,0,0,.65);
}
.mc-block.grass{background:linear-gradient(180deg,#6fbd59 0 26%,#8b5a2b 26% 100%)}
.mc-block.stone{background:linear-gradient(135deg,#7b848f,#555e69)}
.mc-block.redstone{background:linear-gradient(135deg,#5e6067,#962a2a)}
.mc-block.diamond{background:linear-gradient(135deg,#57d3da,#226b8e)}
.world-stage-mc .world-stage-content,
.world-stage-mc .world-stage-head,
.world-stage-mc .world-stage-stats{position:relative;z-index:2}

.world-stage-wow::before{
    content:"";
    position:absolute;
    right:-40px;
    bottom:-80px;
    width:320px;
    height:320px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(112,174,235,.18),transparent 62%);
    filter:blur(8px);
    z-index:0;
}
.wow-faction-rail{
    position:absolute;
    right:20px;
    top:78px;
    z-index:2;
    display:flex;
    flex-direction:column;
    gap:8px;
}
.faction-banner{
    padding:9px 13px;
    min-width:116px;
    border:1px solid #315070;
    border-radius:10px 999px 999px 10px;
    background:rgba(9,18,30,.82);
    color:#e5eef9;
    font-size:.62rem;
    font-weight:900;
    letter-spacing:.18em;
    text-transform:uppercase;
    text-align:center;
    box-shadow:0 10px 24px rgba(0,0,0,.22);
}
.faction-banner.alliance{border-color:rgba(93,169,233,.38);background:linear-gradient(135deg,rgba(24,49,82,.92),rgba(8,17,27,.92));color:#d6ebff}
.faction-banner.horde{border-color:rgba(210,97,76,.4);background:linear-gradient(135deg,rgba(66,24,24,.92),rgba(20,12,14,.92));color:#ffd5c9}
.wow-rune-ring{
    position:absolute;
    right:55px;
    bottom:64px;
    z-index:1;
    display:flex;
    gap:10px;
    opacity:.68;
}
.wow-rune-ring span{
    width:38px;
    height:38px;
    display:grid;
    place-items:center;
    border:1px solid rgba(93,169,233,.3);
    border-radius:50%;
    background:rgba(9,18,29,.66);
    color:#93c4f2;
    box-shadow:0 0 18px rgba(77,146,214,.14);
}
.world-stage-wow .world-stage-content,
.world-stage-wow .world-stage-head{position:relative;z-index:2}

.central-news-card,
.central-thread-row,
.crew-live-list>div,
.central-member-card,
.central-login,
.captain-console{backdrop-filter:blur(10px)}

@media(max-width:1180px){
  .identity-fusion-banner{grid-template-columns:1fr}
  .identity-fusion-tokens{justify-content:flex-start;max-width:none}
  .hero-v9-shell::after{right:16px;top:auto;bottom:14px}
  .mc-block-cluster{grid-template-columns:repeat(2,80px)}
  .mc-block{height:80px}
}
@media(max-width:900px){
  .hero-v9-brand::after{left:0;bottom:-18px}
  .hero-v9-shell::before{width:84vw;height:120px;left:10px;bottom:-12px}
  .hero-v9-shell::after{display:none}
  .world-stage-mc,.world-stage-wow{min-height:auto}
  .mc-block-cluster,.wow-faction-rail{position:relative;top:auto;right:auto;left:auto;margin:18px 18px 0;display:flex;flex-wrap:wrap}
  .mc-block-cluster{display:grid;grid-template-columns:repeat(2,minmax(0,1fr))}
  .mc-block{height:72px}
  .wow-rune-ring{right:18px;bottom:18px}
}
@media(max-width:640px){
  .identity-fusion-banner{padding:16px}
  .identity-fusion-copy h3{font-size:1.35rem}
  .hero-v9-brand::after{position:static;display:inline-flex;margin-top:10px}
  .mc-block-cluster{grid-template-columns:1fr 1fr;margin:12px 12px 0}
  .mc-block{border-radius:12px}
  .wow-faction-rail{margin:12px 12px 0}
  .faction-banner{min-width:0;flex:1}
}

/* ==========================================================
   v12 · FINAL POLISH
   Hero-Artwork, lesbare News, stabile MC-Stats
   ========================================================== */
.site-hero-v12{
    position:relative;
    min-height:470px;
    padding:46px 24px 42px;
    overflow:hidden;
    background:#071019;
}
.site-hero-v12::before,
.site-hero-v12::after{content:none!important}
.site-hero-v12 .hero-v9-shell::before,
.site-hero-v12 .hero-v9-shell::after,
.site-hero-v12 .hero-v9-brand::after{display:none!important}
.hero-v12-art{
    position:absolute;
    inset:-2px;
    z-index:0;
    background-image:url('../assets/gc-community-hero-20260828.png');
    background-size:cover;
    background-position:center 50%;
    filter:saturate(.9) contrast(1.03) brightness(.72);
    transform:scale(1.01);
}
.hero-v12-art::after{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg,#071019 0%,rgba(7,16,25,.94) 13%,rgba(7,16,25,.68) 31%,rgba(7,16,25,.24) 51%,rgba(7,16,25,.47) 74%,rgba(7,16,25,.86) 100%),
        linear-gradient(180deg,rgba(5,9,15,.18) 0%,rgba(5,9,15,.08) 50%,rgba(5,9,15,.93) 100%);
}
.site-hero-v12 .hero-v9-glow{display:none}
.site-hero-v12 .hero-v9-shell{position:relative;z-index:2;min-height:375px}
.site-hero-v12 .hero-v9-logo{
    box-shadow:0 22px 60px rgba(0,0,0,.64),0 0 46px rgba(244,189,79,.16);
}
.site-hero-v12 .hero-v9-copy{
    text-shadow:0 3px 18px rgba(0,0,0,.88);
}
.site-hero-v12 .hero-v9-copy h1{max-width:620px}
.site-hero-v12 .hero-lead{max-width:610px!important;color:#d5dee8!important}
.site-hero-v12 .hero-v9-live{
    background:linear-gradient(145deg,rgba(6,13,22,.80),rgba(4,9,15,.70));
    border-color:rgba(116,145,181,.42);
    box-shadow:0 24px 65px rgba(0,0,0,.42);
    backdrop-filter:blur(15px) saturate(1.1);
}
.site-hero-v12 .hero-live-stat{background:rgba(7,15,24,.76)}
.site-hero-v12 .hero-v9-address{background:rgba(8,28,16,.72)}

/* Minecraft-Stats nicht mehr absolut positionieren: verhindert Überlauf. */
.holy-central-v11 .world-stage-mc .world-stage-stats{
    position:relative!important;
    right:auto!important;
    bottom:auto!important;
    z-index:3;
    width:auto;
    max-width:700px;
    margin:8px 38px 26px;
    grid-template-columns:repeat(4,minmax(0,1fr));
}
.holy-central-v11 .world-stage-mc .world-stage-stats>div{min-width:0}
.holy-central-v11 .world-stage-mc .world-stage-stats strong{overflow-wrap:anywhere}

/* News auf der Startseite: als echte Links und etwas besser lesbar. */
.news-link-card{
    display:block;
    color:inherit;
    text-decoration:none;
    cursor:pointer;
    transition:transform .2s ease,border-color .2s ease,filter .2s ease;
}
.news-link-card:hover{
    transform:translateY(-2px);
    filter:brightness(1.08);
    z-index:3;
}
.news-link-card:focus-visible{outline:2px solid var(--gc-gold);outline-offset:-3px}
.central-news-copy h4{font-size:1.02rem;line-height:1.32}
.central-news-card.featured .central-news-copy h4{font-size:1.38rem}
.central-news-copy p{font-size:.75rem;line-height:1.68;color:#9aa8ba}
.central-news-copy small{font-size:.6rem}

/* Große, ruhige Einzelansicht für News. */
.news-detail-shell{
    max-width:1180px;
    margin:0 auto 70px;
}
.news-detail-back{
    display:inline-flex;
    align-items:center;
    margin:2px 0 16px;
    padding:9px 12px;
    border:1px solid #31445e;
    border-radius:10px;
    background:#0b1420;
    color:#cbd7e4;
    text-decoration:none;
    font-size:.78rem;
    font-weight:800;
}
.news-detail-back:hover{background:#111f2f;color:#fff}
.news-detail-card{
    overflow:hidden;
    border:1px solid #2b3b50;
    border-radius:22px;
    background:linear-gradient(145deg,#0c1621,#070d15);
    box-shadow:0 32px 80px rgba(0,0,0,.34);
}
.news-detail-hero{
    height:clamp(260px,36vw,470px);
    background-size:cover;
    background-position:center;
    border-bottom:1px solid #26364a;
}
.news-detail-copy{
    max-width:980px;
    margin:0 auto;
    padding:clamp(28px,5vw,58px);
}
.news-detail-meta{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
    margin-bottom:16px;
}
.news-detail-meta span,
.news-detail-kicker{
    display:inline-flex;
    padding:5px 9px;
    border:1px solid rgba(244,189,79,.36);
    border-radius:999px;
    background:rgba(66,48,20,.22);
    color:var(--gc-gold-soft);
    font-size:.68rem;
    font-weight:900;
    letter-spacing:.11em;
    text-transform:uppercase;
}
.news-detail-meta small{font-size:.75rem;color:#7f8fa3}
.news-detail-copy h1{
    max-width:900px;
    color:#f3f7fb;
    font-size:clamp(2rem,4.2vw,4rem);
    line-height:1.03;
    letter-spacing:-.045em;
    margin-bottom:28px;
}
.news-detail-body{
    max-width:880px;
    color:#c5d0dc;
    font-size:clamp(1.08rem,1.25vw,1.28rem);
    line-height:1.9;
}
.news-detail-body p{margin:0 0 1.45em}
.news-detail-body p:last-child{margin-bottom:0}
.news-detail-divider{
    border:0;
    height:1px;
    margin:30px 0;
    background:linear-gradient(90deg,transparent,#40536c,transparent);
}

/* Login etwas größer und angenehmer lesbar. */
.central-login summary{font-size:.76rem}
.central-login input{font-size:.82rem;min-height:42px}
.central-login button{font-size:.7rem}

@media(max-width:1050px){
    .site-hero-v12 .hero-v9-shell{min-height:0}
    .hero-v12-art{background-position:58% center}
    .holy-central-v11 .world-stage-mc .world-stage-stats{margin:8px 22px 24px}
}
@media(max-width:760px){
    .site-hero-v12{min-height:0;padding:34px 18px 34px}
    .hero-v12-art{opacity:.58;background-position:58% center}
    .hero-v12-art::after{background:linear-gradient(90deg,rgba(7,16,25,.94),rgba(7,16,25,.66)),linear-gradient(180deg,transparent,#071019 96%)}
    .holy-central-v11 .world-stage-mc .world-stage-stats{grid-template-columns:1fr 1fr;margin:8px 18px 22px}
    .news-detail-shell{margin-bottom:45px}
    .news-detail-copy{padding:26px 20px 34px}
    .news-detail-body{font-size:1.08rem;line-height:1.82}
}

/* ==========================================================
   v13 · FINAL LAYOUT PASS
   Fokus: kompakter Hero, gleichmäßige News, bessere Lesbarkeit
   ========================================================== */

/* Hero kompakter: Artwork bleibt präsent, die leere Unterkante verschwindet. */
.site-hero-v12{
    min-height:360px!important;
    padding:34px 24px 28px!important;
}
.site-hero-v12 .hero-v9-shell{
    min-height:292px!important;
    align-items:center!important;
}
.site-hero-v12 .hero-v9-brand,
.site-hero-v12 .hero-v9-live{align-self:center}
.hero-v12-art{
    background-position:center 47%!important;
    filter:saturate(.93) contrast(1.04) brightness(.76)!important;
}
.hero-v12-art::after{
    background:
        linear-gradient(90deg,#071019 0%,rgba(7,16,25,.94) 12%,rgba(7,16,25,.68) 31%,rgba(7,16,25,.20) 51%,rgba(7,16,25,.42) 73%,rgba(7,16,25,.84) 100%),
        linear-gradient(180deg,rgba(5,9,15,.12) 0%,rgba(5,9,15,.04) 62%,rgba(5,9,15,.78) 100%)!important;
}
.site-hero-v12 .hero-v9-copy h1{font-size:clamp(2.55rem,4.15vw,4.15rem)}
.site-hero-v12 .hero-lead{font-size:1.03rem!important;line-height:1.62!important}

/* Community-Bereich bekommt etwas mehr Raum, das Forum bleibt kompakt daneben. */
.central-community-grid-v13{
    grid-template-columns:minmax(0,1.48fr) minmax(350px,.52fr)!important;
}
.central-panel-head-v13{align-items:center}
.central-panel-head-meta{display:flex;flex-direction:column;align-items:flex-end;gap:3px}
.central-panel-head-meta small{font-size:.66rem}
.readability-note{font-size:.56rem!important;color:#627287!important;letter-spacing:.04em!important;font-weight:700!important;text-transform:none!important}

/* News-Composer direkt dort, wo man News erwartet. */
.news-compose-drawer{
    margin:0;
    border-bottom:1px solid #1e2b3b;
    background:linear-gradient(180deg,rgba(11,22,34,.85),rgba(8,15,24,.84));
}
.news-compose-drawer>summary{
    list-style:none;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:14px;
    padding:11px 16px;
    cursor:pointer;
    color:#dbe6f0;
    font-size:.72rem;
    font-weight:900;
    transition:.18s ease;
}
.news-compose-drawer>summary::-webkit-details-marker{display:none}
.news-compose-drawer>summary:hover{background:#0e1a28;color:#fff}
.news-compose-drawer>summary span{color:#efc76e;letter-spacing:.04em}
.news-compose-drawer>summary small{color:#728299;font-size:.58rem;font-weight:700}
.news-compose-drawer[open]>summary{border-bottom:1px solid #223247;background:#0c1723}
.news-compose-body{padding:16px;background:radial-gradient(circle at 12% 20%,rgba(244,189,79,.05),transparent 24%),#09121b}
.news-compose-grid{display:grid;grid-template-columns:1.3fr .7fr;gap:12px}
.news-compose-field{display:flex;flex-direction:column;gap:6px;min-width:0}
.news-compose-field>span{font-size:.6rem;color:#8999ad;font-weight:900;letter-spacing:.08em;text-transform:uppercase}
.news-compose-field input,
.news-compose-field select,
.news-compose-field textarea{margin:0!important;min-height:43px;background:#070e16!important;border-color:#2a3a4f!important}
.news-compose-title,.news-compose-image,.news-compose-content{grid-column:1/-1}
.news-compose-content textarea{min-height:150px;resize:vertical}
.news-compose-submit{display:flex;flex-direction:column;gap:6px;align-items:stretch;justify-content:end}
.news-compose-submit button{min-height:43px;padding:10px 14px;border:1px solid #526337;border-radius:9px;background:linear-gradient(135deg,#6f5724,#3b321d);color:#fff4d6;font-size:.7rem;font-weight:900;cursor:pointer}
.news-compose-submit button:hover{filter:brightness(1.1)}
.news-compose-submit small{color:#67778b;font-size:.55rem;line-height:1.4}

/* Alle News-Kacheln gleich groß – keine Bildlücken, kein Featured-Ausreißer. */
.central-news-grid-v13{
    display:grid!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    grid-auto-rows:1fr;
    gap:0!important;
}
.central-news-grid-v13 .central-news-card,
.central-news-grid-v13 .central-news-card.featured{
    min-height:245px!important;
    grid-row:auto!important;
    border-left:0!important;
    border-right:1px solid #1d2a3a;
    border-bottom:1px solid #1d2a3a;
    background:#09121b;
}
.central-news-grid-v13 .central-news-card:nth-child(even){border-right:0!important}
.central-news-grid-v13 .central-news-card:nth-last-child(-n+2){border-bottom:0}
.central-news-grid-v13 .central-news-image{
    opacity:.20!important;
    filter:saturate(.72) contrast(1.05);
    background-position:center;
}
.central-news-grid-v13 .central-news-copy{
    justify-content:flex-start!important;
    padding:20px!important;
    min-height:245px;
}
.central-news-grid-v13 .central-news-copy>span{
    margin-bottom:4px;
    font-size:.58rem!important;
}
.central-news-grid-v13 .central-news-copy h4,
.central-news-grid-v13 .central-news-card.featured .central-news-copy h4{
    margin:10px 0 9px;
    color:#f0f5fa;
    font-size:1.08rem!important;
    line-height:1.32!important;
}
.central-news-grid-v13 .central-news-copy p{
    flex:1;
    color:#9caabd!important;
    font-size:.80rem!important;
    line-height:1.72!important;
}
.central-news-footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-top:16px;
    padding-top:11px;
    border-top:1px solid rgba(87,105,129,.22);
}
.central-news-footer small{margin:0!important;font-size:.61rem!important;color:#748397!important}
.central-news-footer b{color:#c9d7e5;font-size:.64rem;white-space:nowrap}
.news-link-card:hover .central-news-footer b{color:#fff}
.news-tone-minecraft{box-shadow:inset 3px 0 0 rgba(98,201,99,.42)}
.news-tone-wow{box-shadow:inset 3px 0 0 rgba(93,169,233,.45)}
.news-tone-palworld{box-shadow:inset 3px 0 0 rgba(226,172,82,.42)}
.news-tone-windrose{box-shadow:inset 3px 0 0 rgba(124,160,201,.42)}
.news-tone-community{box-shadow:inset 3px 0 0 rgba(244,189,79,.35)}
.central-news-grid-v13 .news-tone-minecraft h4{color:#9fe0ac}
.central-news-grid-v13 .news-tone-wow h4{color:#9acbfa}
.central-news-grid-v13 .news-tone-palworld h4{color:#edc77d}
.central-news-grid-v13 .news-tone-windrose h4{color:#a9c4e3}
.central-news-grid-v13 .news-tone-community h4{color:#f2ce78}

/* Forum und kleinere UI-Texte minimal größer für Distanz-Lesbarkeit. */
.central-panel-head h3{font-size:1.12rem}
.central-thread-row{padding:13px 15px}
.central-thread-row strong{font-size:.78rem}
.central-thread-row small{font-size:.59rem}
.crew-live-list strong{font-size:.73rem}
.crew-live-list small{font-size:.57rem}

/* News-Einzelansicht: noch etwas ruhiger und besser lesbar. */
.news-detail-copy{max-width:1020px}
.news-detail-body{font-size:clamp(1.12rem,1.35vw,1.32rem)!important;line-height:1.92!important}
.news-detail-meta small{font-size:.80rem}

/* Unterseiten sollen nach dem Hero etwas schneller beginnen. */
.portal-grid-v10,
.portal-grid{margin-top:16px!important}

@media(max-width:1180px){
    .central-community-grid-v13{grid-template-columns:1fr!important}
    .central-news-grid-v13{grid-template-columns:repeat(2,minmax(0,1fr))!important}
}
@media(max-width:900px){
    .site-hero-v12{min-height:0!important;padding:30px 18px 28px!important}
    .site-hero-v12 .hero-v9-shell{min-height:0!important}
    .central-news-grid-v13{grid-template-columns:1fr!important;grid-auto-rows:auto}
    .central-news-grid-v13 .central-news-card{border-right:0!important;border-bottom:1px solid #1d2a3a!important}
    .central-news-grid-v13 .central-news-card:last-child{border-bottom:0!important}
    .news-compose-grid{grid-template-columns:1fr}
    .news-compose-title,.news-compose-image,.news-compose-content{grid-column:auto}
}
@media(max-width:640px){
    .central-panel-head-meta{display:none}
    .news-compose-drawer>summary{align-items:flex-start;flex-direction:column;gap:3px}
    .central-news-grid-v13 .central-news-copy{padding:17px!important}
    .central-news-grid-v13 .central-news-copy h4{font-size:1.02rem!important}
    .central-news-grid-v13 .central-news-copy p{font-size:.78rem!important}
}

/* ==========================================================
   QA3 · USER-FEINSCHLIFF
   Themenfarbige News-Titel, Worldsoul-Bild, weniger Game-DNA-Text
   ========================================================== */
.central-news-grid-v13 .news-tone-minecraft .central-news-copy h4{color:#9fe0ac!important}
.central-news-grid-v13 .news-tone-wow .central-news-copy h4{color:#9acbfa!important}
.central-news-grid-v13 .news-tone-palworld .central-news-copy h4{color:#edc77d!important}
.central-news-grid-v13 .news-tone-windrose .central-news-copy h4{color:#a9c4e3!important}
.central-news-grid-v13 .news-tone-community .central-news-copy h4{color:#f2ce78!important}

.central-intro{
    display:grid;
    grid-template-columns:minmax(430px,1fr) clamp(270px,30vw,410px) auto;
    align-items:center;
    gap:18px;
    padding:8px 2px 4px;
}
.central-intro-copy{min-width:0}
.central-intro-art{
    position:relative;
    align-self:stretch;
    min-height:154px;
    overflow:hidden;
    border:1px solid rgba(101,135,173,.42);
    border-radius:18px;
    background-image:
        linear-gradient(90deg,rgba(5,13,20,.32),rgba(5,13,20,.04) 46%,rgba(5,13,20,.22)),
        url('../assets/gc-community-hero-20260828.png');
    background-position:center 49%;
    background-size:cover;
    box-shadow:0 18px 42px rgba(0,0,0,.28),inset 0 0 32px rgba(55,130,205,.10);
}
.central-intro-art::after{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:linear-gradient(180deg,rgba(4,10,16,.04),rgba(4,10,16,.42));
}
.central-clock{align-self:center}

.identity-fusion-banner{
    grid-template-columns:minmax(220px,.55fr) minmax(0,1fr);
    padding:15px 18px;
}
.identity-fusion-copy h3{
    margin:5px 0 0;
    font-size:clamp(1.25rem,2vw,1.7rem);
}
.identity-fusion-tokens{
    max-width:none;
    justify-content:flex-end;
}

@media(max-width:1050px){
    .central-intro{grid-template-columns:minmax(0,1fr) minmax(250px,34vw) auto}
    .central-intro h2{font-size:clamp(2rem,4.4vw,3rem)}
}
@media(max-width:900px){
    .central-intro{grid-template-columns:minmax(0,1fr) auto}
    .central-intro-copy{grid-column:1;grid-row:1}
    .central-clock{grid-column:2;grid-row:1}
    .central-intro-art{grid-column:1/-1;grid-row:2;min-height:190px}
    .identity-fusion-banner{grid-template-columns:1fr}
    .identity-fusion-tokens{justify-content:flex-start}
}
@media(max-width:640px){
    .central-intro{display:grid;grid-template-columns:1fr}
    .central-intro-copy{grid-column:1;grid-row:1}
    .central-intro-art{grid-column:1;grid-row:2;min-height:160px}
}
