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

/* ===== Body ===== */
body {
    height: 100vh;
    width: 100%;
    background-color: #000;
    overflow: hidden;
    position: relative;
}

/* ===== Wrapper (vertikale Anordnung) ===== */
.bf-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    display: flex;
    flex-direction: column;
    align-items: center;

    z-index: 1;
}

/* ===== Logo ===== */
.bf-logo {
    width: 800px;
    max-width: 80vw;
    height: auto;
    display: block;
	margin-top: -100px;
}

/* ===== Schriftzug ===== */
.bf-text {
    width: 700px;
    max-width: 90vw;
    height: auto;
    display: block;
    margin-top: -30px;   /* kontrollierter Abstand */

}


/* ===== Sturm Ebene ===== */
.bf-storm {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

/* Einzelne Energiepartikel */
.bf-particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: bf-fade 4s ease-out forwards;
}

/* Glow Kern */
.bf-particle::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(255,0,0,1) 0%,
        rgba(255,0,0,0.6) 40%,
        rgba(255,0,0,0.15) 70%,
        transparent 100%);
}

/* Partikel Animation */
@keyframes bf-fade {
    0% {
        transform: scale(0.5) translateY(0);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: scale(2.5) translateY(-40px);
        opacity: 0;
    }
}

/* Subtiler globaler Energie-Flash */
.bf-storm::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,
        rgba(255,0,0,0.08),
        transparent 60%);
    opacity: 0;
    animation: bf-energyFlash 12s ease-in-out infinite;
}

@keyframes bf-energyFlash {
    0%, 92%, 100% {
        opacity: 0;
    }
    94% {
        opacity: 0.4;
    }
}

/* =========================
   FOOTER ADMIN LINK
========================= */

.footer-admin{
margin-left:20px;
cursor:pointer;
opacity:0.6;
transition:opacity .2s;
}

.footer-admin:hover{
opacity:1;
text-decoration:underline;
}


/* =========================
   ADMIN LOGIN MODAL
========================= */

.adminLoginModal{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.65);
display:none;
align-items:center;
justify-content:center;
z-index:9999;
}


/* LOGIN BOX */

.adminLoginBox{
background:#fff;
padding:30px;
border-radius:10px;
width:320px;
box-shadow:0 12px 30px rgba(0,0,0,0.25);
position:relative;
}


/* HEADER */

.adminLoginHeader{
font-weight:700;
margin-bottom:15px;
display:flex;
align-items:center;
gap:8px;
font-size:18px;
}


/* INPUT */

.adminLoginBox input{
width:100%;
padding:10px;
border:1px solid #ccc;
border-radius:5px;
margin-bottom:15px;
}


/* BUTTON */

.adminLoginBox button{
width:100%;
padding:10px;
background:#e94e1b;
border:none;
color:#fff;
font-weight:600;
border-radius:5px;
cursor:pointer;
}

.adminLoginBox button:hover{
background:#c63e15;
}


/* CLOSE */

.adminLoginClose{
position:absolute;
top:10px;
right:12px;
cursor:pointer;
font-size:18px;
opacity:0.6;
}

.adminLoginClose:hover{
opacity:1;
}

