:root {
    --gunmetal: #2b2b2b;
    --rust: #d35400;
    --fallout: #2ecc71;
    --hazard: #f1c40f;
    --concrete: #3c3c3c;
}

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

body {
    font-family: 'Bebas Neue', sans-serif;
    background: var(--gunmetal);
    color: #e0e0e0;
    position: relative;
    overflow-x: hidden;
}

.site-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://lh3.googleusercontent.com/u/0/d/18ehjjIb8sJp1Cm5Tl6N5HgzzhbtwD7Kd');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: grayscale(50%) brightness(40%);
    z-index: -1;
}

/* HERO: Mascot GIF */
.hero-section {
    display: flex;          /* Enables flexbox */
    flex-direction: column; /* Stacks image and text vertically */
    align-items: center;    /* Centers items horizontally */
    justify-content: center;/* Centers items vertically if there is extra space */
    text-align: center;
    padding: 60px 20px;
    position: relative;
    width: 100%;            /* Ensures it spans the full width */
}

.atom-bell {
    position: relative;
    width: 260px;
    height: 260px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mascot-gif {
    width: 220px;
    height: 220px;
    object-fit: contain;
    border-radius: 50%;
    border: 4px solid var(--rust);
    display: block;         /* Necessary for margin auto to work */
    margin: 0 auto;         /* Centers the image inside the .atom-bell div */
    
    /* Your existing glow/animation */
    box-shadow: 
        0 0 30px rgba(211, 84, 0, 0.6),
        0 0 60px rgba(211, 84, 0, 0.3);
    animation: mascotGlow 2s infinite alternate ease-in-out;
}

@keyframes mascotGlow {
    from {
        box-shadow: 
            0 0 20px rgba(211, 84, 0, 0.5),
            0 0 40px rgba(211, 84, 0, 0.3);
    }
    to {
        box-shadow: 
            0 0 40px rgba(211, 84, 0, 0.8),
            0 0 80px rgba(211, 84, 0, 0.5);
    }
}

.protocol-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: var(--hazard);
    letter-spacing: 6px;
    text-shadow: 
        0 0 10px var(--hazard),
        0 0 20px var(--rust),
        2px 2px 0 #000;
    margin-bottom: 10px;
}

.protocol-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    color: var(--fallout);
    letter-spacing: 3px;
    text-shadow: 0 0 8px var(--fallout);
}

/* SECTION HEADERS */
.section-header {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--hazard);
    text-align: center;
    letter-spacing: 6px;
    margin-bottom: 40px;
    text-shadow: 0 0 10px var(--hazard), 2px 2px 0 #000;
    position: relative;
}

.section-header::before,
.section-header::after {
    content: '//';
    position: absolute;
    color: var(--rust);
    font-size: 0.6em;
}

.section-header::before {
    left: 10%;
}

.section-header::after {
    right: 10%;
}

/* VAULT SECTION */
.vault-section {
    padding: 60px 20px;
}

.vault-sidebar {
    position: sticky;
    top: 40px;
    align-self: flex-start;
    flex: 0 0 360px;
    max-width: 360px;
}

.vault-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.vault-sidebar .vault-grid {
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.vault-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
    cursor: pointer;
    transition: transform 0.3s ease;
    overflow: hidden;
    border-radius: 50%;
}

.vault-wrapper:hover {
    transform: scale(1.05);
}

.vault-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    z-index: 1;
    filter: grayscale(30%) brightness(70%);
    transition: filter 0.5s ease 0.8s;
}

.vault-wrapper.unlocked .vault-background {
    filter: grayscale(0%) brightness(100%);
}

.vault-door {
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, transparent 45%, rgba(0,0,0,0.3) 45%, rgba(0,0,0,0.3) 48%, transparent 48%),
        linear-gradient(135deg, #4a4a4a 0%, #2d2d2d 50%, #1a1a1a 100%);
    border: 16px solid #0a0a0a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 2;
    box-shadow: 
        inset 0 0 50px rgba(0,0,0,0.9),
        inset 0 0 100px rgba(0,0,0,0.6),
        0 15px 60px rgba(0,0,0,0.9),
        0 0 0 3px #1a1a1a,
        0 0 0 6px #0a0a0a;
    transition: transform 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Rivets/bolts around door */
.vault-door::before {
    content: '';
    position: absolute;
    width: 94%;
    height: 94%;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 50% 5%, #555 0%, #555 3%, transparent 3%),
        radial-gradient(circle at 85% 15%, #555 0%, #555 3%, transparent 3%),
        radial-gradient(circle at 95% 50%, #555 0%, #555 3%, transparent 3%),
        radial-gradient(circle at 85% 85%, #555 0%, #555 3%, transparent 3%),
        radial-gradient(circle at 50% 95%, #555 0%, #555 3%, transparent 3%),
        radial-gradient(circle at 15% 85%, #555 0%, #555 3%, transparent 3%),
        radial-gradient(circle at 5% 50%, #555 0%, #555 3%, transparent 3%),
        radial-gradient(circle at 15% 15%, #555 0%, #555 3%, transparent 3%);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

/* Rust texture overlay */
.vault-door::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(211, 84, 0, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 75% 60%, rgba(139, 49, 3, 0.12) 0%, transparent 35%),
        radial-gradient(circle at 40% 80%, rgba(211, 84, 0, 0.1) 0%, transparent 30%);
    mix-blend-mode: multiply;
}

.vault-handle {
    width: 110px;
    height: 110px;
    border: none;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 40% 40%, #6a6a6a, #3a3a3a 50%, #1a1a1a),
        linear-gradient(135deg, transparent 48%, rgba(255,255,255,0.1) 48%, rgba(255,255,255,0.1) 52%, transparent 52%);
    position: relative;
    box-shadow: 
        inset 0 -5px 20px rgba(0,0,0,0.9),
        inset 0 5px 10px rgba(255,255,255,0.1),
        0 8px 30px rgba(0,0,0,0.8);
    transition: transform 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10;
}

/* Center hub of handle */
.vault-handle::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle at 35% 35%, #888, #222);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        inset 0 -3px 8px rgba(0,0,0,0.8),
        0 2px 6px rgba(0,0,0,0.6);
}

.handle-spoke {
    position: absolute;
    width: 70%;
    height: 12px;
    background: linear-gradient(to right, 
        #2a2a2a 0%, 
        #4a4a4a 20%, 
        #6a6a6a 50%, 
        #4a4a4a 80%, 
        #2a2a2a 100%);
    left: 15%;
    top: 50%;
    transform-origin: center;
    border-radius: 2px;
    box-shadow: 
        inset 0 2px 4px rgba(255,255,255,0.2),
        inset 0 -2px 4px rgba(0,0,0,0.8),
        0 2px 8px rgba(0,0,0,0.6);
}

/* Spoke end caps */
.handle-spoke::before,
.handle-spoke::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: radial-gradient(circle at 35% 35%, #888, #333);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: inset 0 -2px 4px rgba(0,0,0,0.7);
}

.handle-spoke::before {
    left: -2px;
}

.handle-spoke::after {
    right: -2px;
}

.handle-spoke:nth-child(1) {
    transform: translateY(-50%) rotate(0deg);
}

.handle-spoke:nth-child(2) {
    transform: translateY(-50%) rotate(60deg);
}

.handle-spoke:nth-child(3) {
    transform: translateY(-50%) rotate(120deg);
}

.vault-wrapper.unlocked .vault-door {
    transform: translateX(150%) rotate(180deg);
    opacity: 0;
}

.vault-wrapper.unlocked .vault-handle {
    transform: rotate(720deg);
}

.vault-reveal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.5s ease 0.8s;
    background: rgba(0, 0, 0, 0.85);
    padding: 30px 25px;
    border-radius: 20px;
    border: 3px solid var(--hazard);
    box-shadow: 0 0 30px rgba(241, 196, 15, 0.5);
}

.vault-wrapper.unlocked .vault-reveal {
    opacity: 1;
}

.vault-reveal h3 {
    font-size: 1.8rem;
    color: var(--hazard);
    margin-bottom: 15px;
    text-shadow: 0 0 10px var(--hazard);
    letter-spacing: 3px;
}

.vault-link {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--rust), #ff6347);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 2px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.4);
    transition: all 0.3s ease;
}

.vault-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 84, 0, 0.6);
}

/* LAUNCH CONTROL */
.launch-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.launch-control {
    position: relative;
    width: 320px;
    padding: 40px;
    background: linear-gradient(135deg, #1a1a1a, var(--concrete));
    border: 4px solid #555;
    border-radius: 24px;
    box-shadow: 
        0 15px 40px rgba(0,0,0,0.8),
        inset 0 0 30px rgba(0,0,0,0.5);
    text-align: center;
}

.warning-stripes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 12px;
    background: repeating-linear-gradient(
        45deg,
        var(--hazard),
        var(--hazard) 10px,
        #000 10px,
        #000 20px
    );
    border-radius: 20px 20px 0 0;
}

.launch-button {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle at 35% 35%, #ff0000, #8b0000);
    border: none;
    border-radius: 50%;
    border-bottom: 12px solid #4b0000;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.7),
        inset 0 -8px 15px rgba(0,0,0,0.4);
    transition: all 0.15s ease;
    margin: 0 auto 20px;
}

.launch-button::after {
    content: '';
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 2px solid rgba(241, 196, 15, 0.6);
    opacity: 0;
    transform: scale(0.7);
    pointer-events: none;
}

.launch-button.launching::after {
    animation: pulseRing 0.8s ease-out 2;
}

.launch-button:hover {
    transform: translateY(-3px);
    border-bottom-width: 14px;
}

.launch-button:active {
    transform: translateY(8px);
    border-bottom-width: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.button-glow {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(255,255,255,0.6), transparent);
    border-radius: 50%;
    z-index: 1;
    animation: glowPulse 1.5s infinite;
}

.launch-text {
    position: relative;
    z-index: 2;
    font-size: 1.4rem;
    letter-spacing: 3px;
    color: #fff2b2;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

@keyframes pulseRing {
    0% {
        opacity: 0.9;
        transform: scale(0.7);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

.launch-label {
    font-size: 1.8rem;
    color: var(--hazard);
    letter-spacing: 4px;
    margin-bottom: 10px;
    text-shadow: 0 0 8px var(--hazard);
}

.warning-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: var(--rust);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* GRENADE SUPPLY CARDS */
.supply-section {
    padding: 60px 20px;
}

.supply-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.supply-card {
    background: var(--concrete);
    border: 4px solid #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 320px;
}

.supply-card:hover {
    transform: translateY(-5px);
}

.supply-image {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: #222;
    padding: 15px;
}

.supply-content {
    padding: 20px;
    position: relative;
    z-index: 25;
}

.supply-title {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 15px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.supply-price {
    font-size: 1.8rem;
    color: var(--fallout);
    margin-bottom: 15px;
    text-shadow: 0 0 8px var(--fallout);
    opacity: 0.35;
    transition: opacity 0.4s ease;
}

.supply-link {
    display: block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--rust), #ff6347);
    color: white;
    text-decoration: none;
    text-align: center;
    font-size: 1.1rem;
    letter-spacing: 2px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.supply-link:hover {
    background: linear-gradient(135deg, #ff6347, var(--rust));
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.5);
}

/* GRENADE PIN SYSTEM - REALISTIC RING PIN */
.pin-container {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    z-index: 100;
}

.grenade-pin {
    position: relative;
    width: 60px;
    height: 60px;
    cursor: grab;
}

.grenade-pin:active {
    cursor: grabbing;
}

/* The actual ring pull */
.pin-ring {
    position: absolute;
    width: 36px;
    height: 36px;
    border: 5px solid #888;
    border-radius: 50%;
    top: 12px;
    left: 12px;
    background: transparent;
    box-shadow: 
        inset 0 2px 4px rgba(255,255,255,0.3),
        inset 0 -2px 4px rgba(0,0,0,0.6),
        0 3px 8px rgba(0,0,0,0.5),
        0 0 0 2px #666;
    transition: transform 0.2s ease;
}

.grenade-pin:hover .pin-ring {
    transform: scale(1.1);
    border-color: #aaa;
}

/* The lever/safety mechanism */
.pin-lever {
    position: absolute;
    width: 8px;
    height: 24px;
    background: linear-gradient(to right, #555, #888, #555);
    top: 50%;
    left: -2px;
    transform: translateY(-50%);
    border-radius: 2px;
    box-shadow: 
        inset 0 1px 2px rgba(255,255,255,0.3),
        0 2px 6px rgba(0,0,0,0.5);
}

.pin-lever::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle at 35% 35%, #999, #444);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: inset 0 -1px 2px rgba(0,0,0,0.6);
}

/* Metal connector between ring and lever */
.pin-connector {
    position: absolute;
    width: 18px;
    height: 4px;
    background: linear-gradient(to right, #666, #888);
    top: 50%;
    left: 6px;
    transform: translateY(-50%);
    border-radius: 2px;
    box-shadow: 
        inset 0 1px 1px rgba(255,255,255,0.2),
        0 1px 3px rgba(0,0,0,0.4);
}

.blast-shield {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(to bottom, #555, #333);
    border-top: 4px solid var(--hazard);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s ease, opacity 0.6s ease;
    z-index: 10;
    pointer-events: none;
}

.blast-shield::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: repeating-linear-gradient(
        90deg,
        var(--hazard),
        var(--hazard) 30px,
        #000 30px,
        #000 60px
    );
}

.blast-shield-text {
    font-size: 1.1rem;
    color: var(--hazard);
    letter-spacing: 2px;
    text-shadow: 0 0 8px var(--hazard);
    text-align: center;
}

.supply-card.breached .blast-shield {
    transform: translateY(100%);
    opacity: 0;
}

.supply-card.breached .supply-price {
    opacity: 1;
}

.code-reveal {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.6rem;
    color: var(--hazard);
    letter-spacing: 2px;
    text-shadow: 0 0 15px var(--hazard);
    opacity: 0;
    transition: opacity 0.5s ease 0.4s, transform 0.2s ease;
    z-index: 30;
    cursor: pointer;
    padding: 10px 20px;
    background: rgba(26, 26, 26, 0.95);
    border-radius: 8px;
    border: 2px solid var(--hazard);
    pointer-events: none;
    user-select: none;
    text-align: center;
    max-width: calc(100% - 40px);
    width: max-content;
}

.supply-card.breached .code-reveal {
    opacity: 1;
    pointer-events: all;
}

.code-reveal:hover {
    background: rgba(241, 196, 15, 0.2);
    transform: translateX(-50%) scale(1.05);
}

/* Ember particles */
.ember-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--rust);
    border-radius: 50%;
    pointer-events: none;
    box-shadow: 0 0 8px var(--rust);
}

/* SCAVENGING GRID */
.scavenge-section {
    padding: 60px 20px 100px;
}

.scavenge-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.scavenge-card {
    width: 200px;
    background: #eee;
    padding: 15px;
    box-shadow: 
        5px 5px 20px rgba(0,0,0,0.6),
        0 0 0 1px rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    position: relative;
}

.scavenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    pointer-events: none;
}

.scavenge-card:hover {
    transform: scale(1.05) rotate(0deg) !important;
}

.scavenge-image {
    width: 100%;
    height: 160px;
    object-fit: contain;
    background: white;
    margin-bottom: 12px;
    filter: sepia(30%);
}

.scavenge-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: #222;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.scavenge-price {
    font-size: 1.3rem;
    color: var(--rust);
    font-weight: 700;
}

.scavenge-link {
    display: block;
    width: 100%;
    padding: 10px;
    background: #222;
    color: #eee;
    text-decoration: none;
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.scavenge-link:hover {
    background: var(--rust);
}

/* SCREEN SHAKE */
body.screen-shake {
    animation: shake 0.5s;
}

@keyframes shake {
    0% { transform: translate(0, 0); }
    10% { transform: translate(-12px, 12px); }
    20% { transform: translate(12px, -12px); }
    30% { transform: translate(-12px, -12px); }
    40% { transform: translate(12px, 12px); }
    50% { transform: translate(-12px, 12px); }
    60% { transform: translate(12px, -12px); }
    70% { transform: translate(-12px, -12px); }
    80% { transform: translate(12px, 12px); }
    90% { transform: translate(-12px, 12px); }
    100% { transform: translate(0, 0); }
}

/* FOOTER */
.wasteland-footer {
    background: #1a1a1a;
    padding: 30px 20px;
    text-align: center;
    border-top: 3px solid var(--rust);
}

.footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.footer-link {
    background: none;
    border: none;
    font-family: 'Rajdhani', sans-serif;
    color: var(--hazard);
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 0.9rem;
    cursor: pointer;
}

.footer-link:hover {
    color: var(--fallout);
}

.legal-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #cfcfcf;
    text-align: center;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    display: none;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px;
    z-index: 9999;
}

.modal-overlay.active {
    display: flex;
}

.modal-window {
    background: #111;
    border: 3px solid var(--hazard);
    border-radius: 16px;
    padding: 30px;
    max-width: 520px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    position: relative;
}

.modal-window[hidden] {
    display: none;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: 1px solid var(--hazard);
    color: var(--hazard);
    font-size: 1rem;
    padding: 4px 8px;
    cursor: pointer;
}

.wasteland-footer p {
    font-family: 'Rajdhani', sans-serif;
    color: #888;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .page-layout {
        flex-direction: column;
        padding: 0;
    }

    .vault-sidebar {
        position: static;
        max-width: 100%;
        flex: 1 1 auto;
    }

    .protocol-title {
        letter-spacing: 4px;
    }
    
    .vault-grid {
        gap: 40px;
    }
    
    .vault-wrapper {
        width: 220px;
        height: 220px;
    }
    
    .supply-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .scavenge-grid {
        gap: 20px;
    }
    
    .scavenge-card {
        width: 160px;
    }
    
    .section-header::before,
    .section-header::after {
        display: none;
    }
}
