/* ==========================================
   ADFS Playground
   Cybersecurity Theme
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{

    --background:#0b0d10;
    --card:#171b22;
    --card-hover:#1d232d;
    --border:#2c313a;

    --accent:#ff6b35;
    --accent-hover:#ff824d;

    --text:#f4f4f4;
    --muted:#9ca3af;

    --success:#00d26a;

}

body{

    font-family:"Segoe UI",Arial,sans-serif;

    background:var(--background);

    color:var(--text);

    overflow:hidden;

}

/* ===========================
   Header
=========================== */

header{

    height:82px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 40px;

    background:#111418;

    border-bottom:1px solid var(--border);

    position:sticky;

    top:0;

    z-index:100;

}

/* Logo */

.logo{

    display:flex;

    align-items:center;

    gap:15px;

    min-width:300px;

}

.logo h1{

    font-size:30px;

    margin:0;

    color:white;

}

.logo span{

    display:block;

    color:var(--muted);

    font-size:13px;

    margin-top:3px;

}

/* Logo Symbol */

.logo-mark{

    width:46px;

    height:46px;

    border:2px solid var(--accent);

    border-radius:12px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(255,107,53,.08);

}

.logo-circle{

    width:18px;

    height:18px;

    background:var(--accent);

    border-radius:50%;

    box-shadow:0 0 15px rgba(255,107,53,.5);

}

/* Navigation */

nav{

    display:flex;

    align-items:center;

    gap:35px;

}

nav a{

    color:#d1d5db;

    text-decoration:none;

    position:relative;

    transition:.25s;

    font-size:17px;

}

nav a:hover{

    color:white;

    text-shadow:0 0 10px rgba(255,107,53,.5);

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:0;

    height:2px;

    background:var(--accent);

    transition:.25s;

}

nav a:hover::after{

    width:100%;

}

/* Sign In */

.signin{

    background:var(--accent);

    color:white;

    text-decoration:none;

    padding:12px 22px;

    border-radius:8px;

    font-weight:600;

    transition:.25s;

    white-space:nowrap;

}

.signin:hover{

    background:var(--accent-hover);

    transform:translateY(-2px);

}
/* Navigation */

nav a{

    color:#c5c9cf;

    text-decoration:none;

    position:relative;

    transition:.25s;

    padding:6px 0;

}

nav a:hover{

    color:white;

    text-shadow:0 0 12px rgba(255,107,53,.6);

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:0;

    height:2px;

    background:var(--accent);

    transition:.25s;

}

nav a:hover::after{

    width:100%;

}

/* Button */

.signin{

    background:var(--accent);

    color:white;

    text-decoration:none;

    padding:12px 22px;

    border-radius:8px;

    transition:.25s;

    font-weight:600;

}

.signin:hover{

    background:var(--accent-hover);

    transform:translateY(-2px);

}

/* Layout */

main{

    display:grid;

    grid-template-columns:320px 1fr;

    gap:25px;

    padding:25px;

    height:calc(100vh - 125px);

}

/* Left Panel */

.left-panel{

    display:flex;

    flex-direction:column;

    gap:20px;

}

/* Cards */

.card{

    background:rgba(23,27,34,.72);

backdrop-filter:blur(10px);

-webkit-backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.05);

    border-radius:12px;

    padding:22px;

    transition:.25s;

}

.card:hover{

    background:var(--card-hover);

    border-color:var(--accent);

}

.card h2{

    margin-bottom:18px;

    color:white;

    font-size:20px;

}

.card p{

    color:var(--muted);

    word-break:break-word;

    line-height:1.7;

}

/* Status */

.status{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:16px;

}

.status-dot{

    width:12px;

    height:12px;

    background:#ff3b3b;

    border-radius:50%;

    animation:pulse 1.8s infinite;

}

@keyframes pulse{

    0%{

        box-shadow:0 0 0 0 rgba(255,59,59,.6);

    }

    100%{

        box-shadow:0 0 0 14px rgba(255,59,59,0);

    }

}

/* Right Panel */

.output-card{

    background:rgba(23,27,34,.72);

backdrop-filter:blur(10px);

-webkit-backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.05);

    border-radius:12px;

    height:100%;

    display:flex;

    flex-direction:column;

}

.output-header{

    border-bottom:1px solid var(--border);

    padding:20px 25px;

}

.output-header h2{

    font-size:22px;

}

.output-body{

    flex:1;

    padding:30px;

    color:var(--muted);

    line-height:1.8;

    overflow:auto;

}

/* Footer */

footer{

    height:50px;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#6b7280;

    border-top:1px solid var(--border);

    background:#111418;

}

/* Responsive */

@media(max-width:1000px){

    body{

        overflow:auto;

    }

    header{

        flex-direction:column;

        height:auto;

        gap:18px;

        padding:20px;

    }

    main{

        grid-template-columns:1fr;

        height:auto;

    }

}
.background-grid{

    position:fixed;

    inset:0;

    background-image:

        linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),

        linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);

    background-size:45px 45px;

    z-index:-2;

}

.background-grid::after{

    content:"";

    position:absolute;

    inset:0;

    background:

        radial-gradient(circle at 30% 20%,
        rgba(255,107,53,.08),
        transparent 40%),

        radial-gradient(circle at 80% 70%,
        rgba(255,107,53,.05),
        transparent 45%);

    animation:moveBackground 18s linear infinite;

}

@keyframes moveBackground{

    from{

        transform:translateY(0);

    }

    to{

        transform:translateY(-120px);

    }

}
.output-status{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:18px;

    margin-bottom:25px;

}

.output-body hr{

    border:none;

    border-top:1px solid var(--border);

    margin:25px 0;

}

.output-tabs{

    display:flex;

    gap:15px;

    margin-top:35px;

}

.output-tabs button{

    background:#1d232d;

    color:white;

    border:1px solid var(--border);

    padding:12px 18px;

    border-radius:8px;

    cursor:pointer;

    transition:.25s;

}

.output-tabs button:hover{

    border-color:var(--accent);

    background:#242b35;

}
.label{

    color:var(--accent);

    font-size:12px;

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:8px;

}
.section-title{

    display:flex;

    align-items:center;

    gap:14px;

    font-size:20px;

}

.title-bar{

    width:4px;

    height:24px;

    background:var(--accent);

    border-radius:20px;

}