/* _content/AegisLandingLoot/Components/Layout/Footer.razor.rz.scp.css */
.app-footer-bar[b-c5864pivu9] {
    height: 70px; /* Höhe erhöht für einen moderneren, großzügigen Look */
    background-color: rgba(10, 19, 23, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(238, 205, 118, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    box-sizing: border-box;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Links: Copyright */
.footer-left[b-c5864pivu9] {
    font-size: 14px;
    color: #94A3B8; /* Helleres Grau für bessere Lesbarkeit */
    font-weight: 400;
}

/* Mitte: Slogan */
.footer-center[b-c5864pivu9] {
    font-size: 11px;
    color: #EECD76;
    letter-spacing: 2px; /* Mehr Zeichenabstand wirkt cinematischer */
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.9;
}

/* Rechts: Navigation */
.footer-right[b-c5864pivu9] {
    display: flex;
    gap: 30px; /* Mehr Abstand zwischen den Links */
}

.footer-link[b-c5864pivu9] {
    color: #94A3B8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

    .footer-link:hover[b-c5864pivu9] {
        color: #EECD76;
    }

    /* Minimaler Hover-Effekt für die Footer-Links */
    .footer-link[b-c5864pivu9]::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 1px;
        background-color: #EECD76;
        transition: width 0.3s ease;
    }

    .footer-link:hover[b-c5864pivu9]::after {
        width: 100%;
    }
/* _content/AegisLandingLoot/Components/Layout/MainLayout.razor.rz.scp.css */
header[b-ec756b3qbq] {
    background-color: #e0dcdc;
    height: 50px;
}

footer[b-ec756b3qbq] {
}
/* _content/AegisLandingLoot/Components/Layout/NavMenu.razor.rz.scp.css */
.nav-header-bar[b-s084jsvjai] {
    height: 75px;
    background-color: rgba(10, 19, 23, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(238, 205, 118, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Logo & Textbereich */
.nav-logo-area[b-s084jsvjai] {
    display: flex;
    align-items: center;
}

.logo-wrapper[b-s084jsvjai] {
    display: flex;
    align-items: center;
    gap: 15px;
}

.app-logo[b-s084jsvjai] {
    height: 55px;
    width: auto;
    object-fit: contain;
    margin-right
}

.brand-text-group[b-s084jsvjai] {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nav-brand[b-s084jsvjai] {
    font-size: 24px;
    font-weight: 800;
    color: #EECD76;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
}

.nav-slogan[b-s084jsvjai] {
    font-size: 11px;
    color: #94A3B8;
    letter-spacing: 0.5px;
    margin-top: 4px;
    font-weight: 400;
}

/* Mitte: Links */
.nav-horizontal-links[b-s084jsvjai] {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link-item[b-s084jsvjai] {
    color: #94A3B8;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 8px 4px;
    position: relative;
    transition: color 0.3s ease;
}

    .nav-link-item:hover[b-s084jsvjai], .nav-link-item.active[b-s084jsvjai] {
        color: #EECD76;
    }

    .nav-link-item[b-s084jsvjai]::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #EECD76;
        transition: width 0.3s ease;
    }

    .nav-link-item:hover[b-s084jsvjai]::after, .nav-link-item.active[b-s084jsvjai]::after {
        width: 100%;
    }

.nav-auth-area[b-s084jsvjai] {
    display: flex;
    align-items: center;
}

/* Battle.net Button (Offizielle Markenfarbe kombiniert mit Goldrand) */
.btn-header-battlenet[b-s084jsvjai] {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: #0074e0;
    color: #ffffff;
    border: 1px solid rgba(238, 205, 118, 0.3);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

    .btn-header-battlenet:hover[b-s084jsvjai] {
        background-color: #0082fc;
        border-color: #EECD76;
        box-shadow: 0 0 15px rgba(0, 116, 224, 0.4);
    }

.blizzard-svg[b-s084jsvjai] {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* User Profil im Header */
.user-profile-header[b-s084jsvjai] {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(238, 205, 118, 0.05);
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid rgba(238, 205, 118, 0.2);
}

.user-info-header[b-s084jsvjai] {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.user-name[b-s084jsvjai] {
    font-size: 14px;
    font-weight: 600;
    color: #EECD76;
}

.user-role[b-s084jsvjai] {
    font-size: 10px;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-nav-logout[b-s084jsvjai] {
    background: none;
    border: none;
    color: #94A3B8;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 4px;
    transition: color 0.2s;
}

    .btn-nav-logout:hover[b-s084jsvjai] {
        color: #F43F5E;
    }

.icon-svg[b-s084jsvjai] {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.dropdown-container[b-s084jsvjai] {
    position: relative;
    display: inline-block;
}

/* Umbau des Profil-Headers in einen ungestylten Button */
button.user-profile-header[b-s084jsvjai] {
    background-color: rgba(238, 205, 118, 0.05);
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid rgba(238, 205, 118, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-family: inherit;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

    button.user-profile-header:hover[b-s084jsvjai] {
        background-color: rgba(238, 205, 118, 0.1);
        border-color: #EECD76;
    }

/* Pfeil-Indikator */
.dropdown-arrow[b-s084jsvjai] {
    color: #EECD76;
    font-size: 10px;
    transition: transform 0.2s ease;
}

    .dropdown-arrow.arrow-up[b-s084jsvjai] {
        transform: rotate(180deg);
    }

/* Das schwebende Submenü-Fenster */
.dropdown-menu-list[b-s084jsvjai] {
    position: absolute;
    top: calc(100% + 8px); /* Platziert es exakt unter dem Button */
    right: 0;
    background-color: #0A1317; /* Ihre primäre dunkle Farbe */
    border: 1px solid rgba(238, 205, 118, 0.2);
    border-radius: 6px;
    width: 200px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    padding: 6px 0;
    z-index: 1100;
    animation: dropdownFadeIn-b-s084jsvjai 0.15s ease-out;
}

/* Einzelne Navigationspunkte im Submenü */
.dropdown-item[b-s084jsvjai] {
    color: #94A3B8;
    text-decoration: none;
    padding: 10px 16px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

    .dropdown-item:hover[b-s084jsvjai] {
        background-color: rgba(238, 205, 118, 0.08);
        color: #EECD76; /* Highlight mit Ihrer Goldfarbe */
    }

/* Trennlinie im Menü */
.dropdown-divider[b-s084jsvjai] {
    height: 1px;
    background-color: rgba(238, 205, 118, 0.1);
    margin: 6px 0;
}

/* Roter Logout-Punkt */
.dropdown-item.logout-item:hover[b-s084jsvjai] {
    background-color: rgba(244, 63, 94, 0.08);
    color: #F43F5E;
}

.item-icon[b-s084jsvjai] {
    font-size: 14px;
}
button.dropdown-item.logout-item[b-s084jsvjai] {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}

    button.dropdown-item.logout-item:hover[b-s084jsvjai] {
        background-color: rgba(244, 63, 94, 0.08);
        color: #F43F5E;
    }

/* Kleine Animation beim Öffnen */
@keyframes dropdownFadeIn-b-s084jsvjai {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* _content/AegisLandingLoot/Components/Pages/Home.razor.rz.scp.css */
/* --- SCROLL SNAPPING CONTAINER --- */
.onepager-wrapper[b-9wd8r21hp2] {
    width: 100%;
    /* 100vh minus Header (75px) und minus neuem Footer (70px) */
    height: calc(100vh - 145px);
    margin-top: 75px;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(238, 205, 118, 0.15) transparent;
}

/* --- ONEPAGER SECTIONS --- */
.scroll-section[b-9wd8r21hp2] {
    width: 100%;
    /* Jede Sektion füllt exakt das neue Sichtfenster aus */
    height: calc(100vh - 145px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 40px;
    position: relative;
}

/* Sektions-Variationen */
.bg-dark[b-9wd8r21hp2] {
    background-color: #0A1317;
}

.bg-alt[b-9wd8r21hp2] {
    background-color: #0F1B21;
    background-image: radial-gradient(circle at 80% 20%, rgba(238, 205, 118, 0.03) 0%, transparent 50%);
}

.section-content[b-9wd8r21hp2] {
    max-width: 1200px;
    width: 100%;
    animation: fadeIn-b-9wd8r21hp2 1s ease-out;
}

/* --- TYPOGRAFIE --- */
.hero-title[b-9wd8r21hp2] {
    font-size: 64px;
    font-weight: 900;
    color: #FFFFFF;
    margin: 0 0 20px 0;
    line-height: 1.1;
}

    .hero-title span[b-9wd8r21hp2] {
        color: #EECD76;
    }

.hero-subtitle[b-9wd8r21hp2] {
    font-size: 20px;
    color: #94A3B8;
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.section-title[b-9wd8r21hp2] {
    font-size: 38px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 15px 0;
}

    .section-title span[b-9wd8r21hp2] {
        color: #EECD76;
    }

.section-lead[b-9wd8r21hp2] {
    font-size: 16px;
    color: #94A3B8;
    margin-bottom: 40px;
}

/* Feature Grid */
.features-grid[b-9wd8r21hp2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card[b-9wd8r21hp2] {
    background: rgba(15, 27, 33, 0.6);
    border: 1px solid rgba(238, 205, 118, 0.1);
    padding: 30px;
    border-radius: 6px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

    .feature-card:hover[b-9wd8r21hp2] {
        transform: translateY(-5px);
        border-color: rgba(238, 205, 118, 0.4);
    }

    .feature-card h3[b-9wd8r21hp2] {
        color: #EECD76;
        margin: 0 0 15px 0;
        font-size: 20px;
    }

    .feature-card p[b-9wd8r21hp2] {
        color: #94A3B8;
        margin: 0;
        font-size: 15px;
        line-height: 1.6;
    }

/* Button */
.btn-primary-gold[b-9wd8r21hp2] {
    display: inline-block;
    background-color: #EECD76;
    color: #0A1317;
    text-decoration: none;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(238, 205, 118, 0.15);
}

    .btn-primary-gold:hover[b-9wd8r21hp2] {
        transform: scale(1.03);
        box-shadow: 0 6px 25px rgba(238, 205, 118, 0.3);
    }

/* Layout */
.split-layout[b-9wd8r21hp2] {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-col[b-9wd8r21hp2] {
    flex: 1;
}

.stat-box[b-9wd8r21hp2] {
    border-left: 3px solid #EECD76;
    padding-left: 20px;
    margin-bottom: 30px;
}

.stat-number[b-9wd8r21hp2] {
    font-size: 42px;
    font-weight: 800;
    color: #EECD76;
}

.stat-label[b-9wd8r21hp2] {
    color: #94A3B8;
    font-size: 14px;
}

/* Animationen */
.scroll-indicator[b-9wd8r21hp2] {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #EECD76;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce-b-9wd8r21hp2 2s infinite;
    opacity: 0.6;
}
.onepager-wrapper[b-9wd8r21hp2] {
    width: 100%;
    height: calc(100vh - 75px);
    margin-top: 75px;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    /* Custom Scrollbar für Firefox (Ultradünn) */
    scrollbar-width: thin;
    scrollbar-color: rgba(238, 205, 118, 0.15) transparent;
}

    /* --- DEZENTER SCROLLBAR FÜR CHROME, SAFARI, EDGE --- */
    /* 1. Extrem schmale Breite */
    .onepager-wrapper[b-9wd8r21hp2]::-webkit-scrollbar {
        width: 4px;
    }

    /* 2. Komplett transparenter Hintergrund (kein störender Balken-Kanal) */
    .onepager-wrapper[b-9wd8r21hp2]::-webkit-scrollbar-track {
        background: transparent;
    }

    /* 3. Sehr dezenter, hauchdünner Schieber (Thumb) */
    .onepager-wrapper[b-9wd8r21hp2]::-webkit-scrollbar-thumb {
        background: rgba(238, 205, 118, 0.15); /* Sehr transparentes Gold im Ruhezustand */
        border-radius: 4px;
        transition: background 0.3s ease;
    }

        /* 4. Schieber wird erst beim Hover deutlicher sichtbar */
        .onepager-wrapper[b-9wd8r21hp2]::-webkit-scrollbar-thumb:hover {
            background: rgba(238, 205, 118, 0.6); /* Wird beim Drüberfahren kräftiger, bleibt aber edel */
        }
    .onepager-wrapper[b-9wd8r21hp2]::-webkit-scrollbar-button {
        display: none;
        height: 0;
        width: 0;
    }

@keyframes fadeIn-b-9wd8r21hp2 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce-b-9wd8r21hp2 {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}
