:root {
    --gold: #FFD700;
    --bg-dark: #0a0a0b;
    --glass: rgba(255, 255, 255, 0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background: var(--bg-dark); color: white; overflow-x: hidden; }

/* UPDATE THESE TWO SECTIONS IN YOUR PROJECTS-STYLE.CSS */

/* 1. We change this from a banner (which stretched everything) to a general media container */
.media-container {
    width: 100%; 
    max-width: 500px; /* Keep it focused and readable */
    margin: 0 auto; /* Center it */
    border: 1px solid rgba(255,215,0,0.2); 
    border-radius: 15px; 
    overflow: hidden; 
    background: var(--glass);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* 2. This is the custom styling just for the screenshots to show only the essential info */
.ss-box {
    height: 600px; /* Force a specific, professional evidence "window" */
    overflow: hidden;
    position: relative;
}

.ss-box img {
    width: 100%;
    position: absolute;
    top: 0; /* Align to the very top to show the header and member list */
    left: 0;
    transition: 0.5s;
    /* object-fit isn't needed here if we use positioning */
}

/* A slight hover effect looks professional */
.ss-box:hover img { 
    top: -10px; /* Nudges it up slightly to show it's active evidence */
}

/* Navbar (Reused) */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 30px 10%; position: fixed; width: 100%; z-index: 100; }
.logo { font-family: 'Orbitron'; font-size: 1.8rem; }
.logo span { color: var(--gold); }
.nav-links { display: flex; list-style: none; }
.nav-links li a { text-decoration: none; color: #fff; margin-left: 40px; font-size: 0.8rem; transition: 0.3s; text-transform: uppercase; }
.nav-links li a.active { color: var(--gold); }

/* Reused Cyber Grid */
.cyber-grid {
    position: fixed; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(255, 215, 0, 0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 215, 0, 0.02) 1px, transparent 1px);
    background-size: 50px 50px; z-index: -1;
}

/* Scroll Animation Initial State */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Sections */
.vault-intro { padding: 150px 10% 50px; text-align: center; }
.royal-text { font-family: 'Orbitron'; color: var(--gold); font-size: 3rem; text-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }

.vault-segment {
    max-width: 900px; margin: 100px auto; padding: 0 20px;
    display: flex; flex-direction: column; gap: 20px;
}

.segment-label { font-family: 'Orbitron'; color: var(--gold); font-size: 0.8rem; letter-spacing: 3px; border-left: 3px solid var(--gold); padding-left: 15px; }

.media-container {
    width: 100%; border: 1px solid rgba(255,215,0,0.2); 
    border-radius: 15px; overflow: hidden; background: var(--glass);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.media-container img { width: 100%; display: block; transition: 0.5s; }
.media-container:hover img { transform: scale(1.02); }

.segment-desc h3 { font-family: 'Orbitron'; color: var(--gold); margin-bottom: 10px; font-size: 1.2rem; }
.segment-desc p { color: #aaa; line-height: 1.6; }

/* Custom sizes for different entry types */
.banner-box { height: 300px; }
.banner-box img { object-fit: cover; height: 100%; }
.cert-box { border: 2px solid var(--gold); }

.vault-footer { text-align: center; padding: 100px 0; border-top: 1px solid var(--glass); }
.btn-hire {
    display: inline-block; margin-top: 20px; padding: 15px 40px;
    background: var(--gold); color: #000; text-decoration: none;
    font-family: 'Orbitron'; font-weight: bold; border-radius: 5px;
}

@media (max-width: 768px) {
    .royal-text { font-size: 1.8rem; }
}