        }
        .mission-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }

        .mission-card {
            cursor: pointer;
            background: #151515;
            border: 1px solid #333;
            border-radius: 4px;
            padding: 15px;
            transition: transform 0.2s ease, border-color 0.2s ease;
            display: flex;
            flex-direction: column;
        }
        .mission-card:hover {
            transform: translateY(-5px);
            border-color: #ffd700;
        }
        .mission-card img {
            width: 100%;
            height: 180px;
            object-fit: cover; /* Ensures images don't stretch weirdly */
            border-radius: 4px;
            margin-bottom: 15px;
        }
        .mission-card h4 {
            color: #ffd700;
            margin: 0 0 10px 0;
            font-size: 1.2rem;
        }
        .mission-card p {
            margin: 0;
            color: #aaa;
            font-size: 0.95rem;
            line-height: 1.4;
        }

        /* --- MODAL CSS (Copy this to your main CSS later) --- */
        .modal-overlay {
            display: none; /* Hidden by default */
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(5px);
            align-items: center;
            justify-content: center;
        }
        .modal-content {
            background-color: #1a1a1a;
            border: 1px solid #444;
            border-radius: 8px;
            padding: 30px;
            width: 90%;
            max-width: 650px;
            position: relative;
            color: #eee;
            box-shadow: 0 10px 40px rgba(0,0,0,0.8);
            animation: modalFadeIn 0.3s ease-out;
        }
        @keyframes modalFadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .close-modal {
            color: #888;
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.2s;
            line-height: 1;
        }
        .close-modal:hover {
            color: #ff4d4d;
        }
        #modal-img {
            width: 100%;
            max-height: 300px;
            object-fit: cover;
            border-radius: 4px;
            margin-bottom: 20px;
            border: 1px solid #333;
        }
        #modal-title {
            color: #ffd700;
            margin: 0 0 15px 0;
            font-size: 1.5rem;
        }
        #modal-long-desc {
            line-height: 1.7;
            margin-bottom: 25px;
            color: #ccc;
        }
        #modal-img-two {
            width: 100%;
            max-height: 300px;
            object-fit: cover;
            border-radius: 4px;
            margin-bottom: 20px;
            border: 1px solid #333;
        }
        .action-btn {
            display: inline-block;
            padding: 10px 24px;
            background-color: #222;
            color: #ffd700;
            text-decoration: none;
            border: 1px solid #ffd700;
            border-radius: 4px;
            font-weight: bold;
            transition: all 0.2s;
        }
        .action-btn:hover {
            background-color: #ffd700;
            color: #000;
        }