.desk-container {
    min-height: 100vh;
    padding: 120px 20px 80px 20px;
    background-color: #050505;
    background-image: radial-gradient(circle at 50% 30%, #1a1a1a 0%, #000000 90%);
    display: flex;
    justify-content: center;
}


.dossier-sheet {
    position: relative;
    width: 100%;
    max-width: 750px;
    background-color: #121212;
    border: 1px solid #222;
    padding: 60px 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    border-left: 4px solid var(--color-gold);
    
   
    overflow: hidden; 
    
   
    z-index: 1; 
}

.dossier-sheet::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 80%; 
    height: 80%;
    
   
    background-image: url('../img/logo-deviants.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    
   
    opacity: 0.07;
    filter: grayscale(100%) contrast(150%);
    z-index: -1;
    pointer-events: none;
}


.top-tape {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(-50%) rotate(-2deg);
    backdrop-filter: blur(2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}


.doc-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    margin-bottom: 40px;
    font-family: var(--font-western);
    color: #555;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.stamp-box {
    border: 1px solid #555;
    padding: 2px 8px;
    color: #d32f2f;
    font-weight: bold;
    transform: rotate(-2deg);
}

.doc-title {
    font-family: var(--font-western);
    font-size: 3rem;
    color: #e0e0e0;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0 #000;
}


.doc-body {
    font-family: var(--font-typewriter);
    font-size: 1.1rem;
    color: #888;
    line-height: 1.8;
}


.interactive-line {
    margin-bottom: 25px;
    transition: all 0.4s ease;
    padding: 10px;
    border-left: 2px solid transparent;
}


.interactive-line:hover {
    color: #fff;
    border-left: 2px solid var(--color-gold);
    background: linear-gradient(90deg, rgba(255, 184, 0, 0.05) 0%, transparent 100%);
    text-shadow: 0 0 1px rgba(255,255,255,0.3);
}


strong { color: #ccc; }
.gold-name { color: var(--color-gold); font-weight: bold; }
.gold { color: var(--color-gold); }


.doc-quote {
    font-style: italic;
    color: var(--color-gold);
    text-align: center;
    margin: 30px 0;
    font-size: 1.2rem;
    opacity: 0.8;
}
.interactive-line:hover .doc-quote { opacity: 1; }

.highlight-box {
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;
}

.separator-line {
    height: 1px;
    background: #333;
    margin: 40px 0;
    position: relative;
}

.separator-line::after {
    content: "★";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #121212;
    padding: 0 10px;
    color: var(--color-gold);
}

.section-title {
    text-align: center;
    font-family: var(--font-western);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 30px;
}

.emphasis {
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    color: #aaa;
}


.doc-footer {
    margin-top: 60px;
    text-align: center;
    border-top: 2px solid #333;
    padding-top: 30px;
}

.final-words {
    font-family: var(--font-western);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 40px;
}

.signature-area {
    display: inline-block;
    text-align: center;
    transform: rotate(-3deg);
}

.signed-by {
    display: block;
    font-family: var(--font-typewriter);
    font-size: 0.7rem;
    color: #555;
    margin-bottom: -15px;
}

.signature-script {
    font-family: 'Rock Salt', cursive;
    font-size: 3rem;
    color: #fff;
    margin: 10px 0;
    text-shadow: 0 0 2px #000;
}

.role-stamp {
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    padding: 3px 10px;
    font-family: var(--font-western);
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0.9;
}


@media (max-width: 768px) {
    .dossier-sheet { padding: 40px 20px; }
    .doc-title { font-size: 2rem; }
    .signature-script { font-size: 2rem; }
}
