
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --gold:#d4af37;
    --dark:#0d0d0d;
    --panel:#171717;
    --panel2:#101010;
}

body{
    background:
    radial-gradient(circle at top, rgba(212,175,55,.08), transparent 40%),
    linear-gradient(rgba(5,5,5,.88), rgba(5,5,5,.95)),
    url(map.png);
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
    min-height:100vh;
    font-family:'Inter',sans-serif;
    color:white;
    overflow-x:hidden;
}

body::before{
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;
    background-image:
    radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
    background-size:35px 35px;
    animation:floatParticles 20s linear infinite;
}

@keyframes floatParticles{
    from{
        transform:translateY(0);
    }
    to{
        transform:translateY(-35px);
    }
}

.container{
    width:90%;
    max-width:1100px;
    margin:auto;
    padding:50px 0;
}

.header{
    text-align:center;
    margin-bottom:30px;
}

.header h1{
    font-family:'Cinzel',serif;
    font-size:4rem;
    color:var(--gold);
    text-shadow:0 0 25px rgba(212,175,55,.35);
    margin-bottom:10px;
}

.header p{
    color:#bdbdbd;
    letter-spacing:2px;
}

.status-bar{
    display:flex;
    justify-content:space-between;
    gap:15px;
    flex-wrap:wrap;

    background:rgba(0,0,0,.65);
    border:1px solid rgba(212,175,55,.25);

    padding:15px 20px;
    border-radius:12px;

    margin-bottom:30px;
    backdrop-filter:blur(8px);
}

.status-bar span{
    color:#ddd;
    font-size:.95rem;
}

.file{
    position:relative;

    background:rgba(20,20,20,.92);
    border:1px solid rgba(212,175,55,.35);

    border-radius:20px;
    padding:35px;

    backdrop-filter:blur(15px);

    box-shadow:
    0 0 50px rgba(212,175,55,.08),
    inset 0 0 20px rgba(212,175,55,.03);
}

.file::before{
    content:"GEHEIM";
    position:absolute;

    top:28px;
    right:-45px;

    background:#9f1818;

    padding:10px 60px;

    transform:rotate(35deg);

    font-weight:700;
    letter-spacing:2px;

    box-shadow:0 0 20px rgba(255,0,0,.25);
}

.file h2{
    color:var(--gold);
    margin-bottom:15px;
    font-family:'Cinzel',serif;
}

.file p{
    line-height:1.8;
    color:#d0d0d0;
}

.code-box{
    margin-top:35px;
}

.terminal{
    background:#0a0a0a;
    border:1px solid rgba(212,175,55,.2);
    border-radius:12px;
    padding:20px;
    margin-bottom:15px;
}

.terminal-title{
    color:var(--gold);
    font-size:.9rem;
    margin-bottom:10px;
}

input{
    width:100%;
    padding:16px;
    border-radius:10px;
    border:1px solid #333;
    background:#111;
    color:white;
    font-size:16px;
    transition:.3s;
}

input:focus{
    outline:none;
    border-color:var(--gold);
    box-shadow:0 0 15px rgba(212,175,55,.15);
}

button{
    width:100%;
    margin-top:15px;

    border:none;
    border-radius:10px;

    padding:16px;

    font-weight:700;
    font-size:15px;

    cursor:pointer;

    color:black;

    background:
    linear-gradient(
    135deg,
    #c39c1b,
    #ffd700
    );

    transition:.25s;
}

button:hover{
    transform:translateY(-2px);
    box-shadow:0 0 20px rgba(212,175,55,.35);
}

.progress-box{
    margin-top:25px;
}

.progress-text{
    display:flex;
    justify-content:space-between;
    margin-bottom:10px;
    color:#bdbdbd;
}

.progress{
    height:12px;
    background:#111;
    border-radius:999px;
    overflow:hidden;
}

.progress-fill{
    height:100%;
    width:0%;

    background:
    linear-gradient(
    90deg,
    #d4af37,
    #ffd700
    );

    transition:.5s;
}

.result{
    margin-top:25px;

    display:none;

    background:#111;
    border-left:4px solid var(--gold);

    padding:20px;
    border-radius:10px;

    line-height:1.8;
}

.evidence{
    margin-top:35px;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:15px;
}

.evidence-card{
    background:#111;

    border:1px solid rgba(212,175,55,.2);

    padding:20px;
    border-radius:12px;

    transition:.25s;
    cursor:pointer;
}

.evidence-card:hover{
    transform:translateY(-5px);
    border-color:rgba(212,175,55,.6);
    box-shadow:0 0 20px rgba(212,175,55,.15);
}

.evidence-card h3{
    color:var(--gold);
    margin-bottom:10px;
}

.footer{
    margin-top:40px;
    text-align:center;
    color:#888;
}

.glow{
    animation:glow .8s ease;
}

@keyframes glow{

    0%{
        box-shadow:none;
    }

    50%{
        box-shadow:0 0 35px rgba(212,175,55,.5);
    }

    100%{
        box-shadow:none;
    }

}

@media(max-width:768px){

    .header h1{
        font-size:2.5rem;
    }

    .file{
        padding:25px;
    }

}