/* ==========================================================================
   GLOBAL GAMING HUB CORE STYLING (Wuthering Waves / Hoyo Inspired)
   ========================================================================== */

/* 1. Schriftart & Grundaufbau */
@import url('https://googleapis.com');

:root {
    --bg-dark: #0b0c10;
    --bg-card: rgba(20, 22, 30, 0.75);
    --cyan-glow: #00f0ff;
    --gold-glow: #e3b341;
    --text-main: #e0e6ed;
    --text-muted: #8a9ba8;
    --border-color: rgba(0, 240, 255, 0.15);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Überschriften im Sci-Fi-Look */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff;
}

/* 2. Einstiegs-Animationen (Launcher-Feeling) */
@keyframes gachaFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

main, #content, .wiki-content, .tool-container {
    animation: gachaFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* 3. Globale Struktur & Container (Glassmorphism) */
.container, #page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Universelle UI-Karten für WordPress-Posts, Wikis oder Tool-Inhalte */
article.post, .gaming-card, .wiki-box {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--cyan-glow);
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: all 0.3s ease;
}

article.post:hover, .gaming-card:hover {
    border-left-color: var(--gold-glow);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
    transform: translateX(4px);
}

/* 4. Schräge Gaming-Buttons (Clip-Path) */
button, .button, .gacha-btn, #searchsubmit {
    font-family: 'Orbitron', sans-serif;
    background: transparent;
    color: var(--cyan-glow);
    border: 1px solid var(--cyan-glow);
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    display: inline-block;
    text-decoration: none;
}

button:hover, .button:hover, .gacha-btn:hover, #searchsubmit:hover {
    background: var(--cyan-glow);
    color: #000000;
    box-shadow: 0 0 15px var(--cyan-glow);
}

/* Goldene Variante für primäre Aktionen (z.B. Patch-Notes-Highlights) */
.btn-primary {
    color: var(--gold-glow);
    border-color: var(--gold-glow);
}

.btn-primary:hover {
    background: var(--gold-glow);
    color: #000000;
    box-shadow: 0 0 15px var(--gold-glow);
}

/* 5. WordPress Formular- & Input-Styling */
input[type="text"], input[type="search"], textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 10px 15px;
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

input[type="text"]:focus, input[type="search"]:focus, textarea:focus {
    border-color: var(--cyan-glow);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

/* Links im WordPress-Framework & Wiki */
a {
    color: var(--cyan-glow);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--gold-glow);
}

css/* Fix für das Menü-Layout */
#header.gaming-navbar {
    display: block !important;
    width: 100% !important;
}

.nav-container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.nav-menu {
    display: flex !important;
    flex-direction: row !important;
    gap: 30px !important;
}

/* ==========================================================================
   HEART OF GACHA – WP LOGIN MASKIERUNG
   ========================================================================== */

body.login {
    background-color: var(--bg-dark) !important;
    font-family: 'Rajdhani', sans-serif !important;
    color: var(--text-main) !important;
}

.hog-branding {
    text-align: center;
    margin-bottom: 30px;
}

.hog-logo {
    width: 140px;
    height: auto;
    margin-bottom: 15px;
}

.hog-title {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff;
    font-size: 24px;
    margin: 0;
}

#loginform {
    background: var(--bg-card) !important;
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color) !important;
    padding: 30px !important;
    border-radius: 8px !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.37);
}

#loginform label {
    color: var(--text-muted) !important;
}

#loginform input[type="text"],
#loginform input[type="password"] {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(0,240,255,0.3) !important;
    padding: 12px 15px !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    font-family: 'Rajdhani', sans-serif !important;
}

#loginform input[type="submit"] {
    font-family: 'Orbitron', sans-serif !important;
    background: transparent !important;
    color: var(--cyan-glow) !important;
    border: 1px solid var(--cyan-glow) !important;
    padding: 12px 30px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
}

#loginform input[type="submit"]:hover {
    background: var(--cyan-glow) !important;
    color: #000 !important;
    box-shadow: 0 0 15px var(--cyan-glow) !important;
}

#nav, #backtoblog {
    display: none !important;
}
