 :root {
            /* --- BRAND COLORS (Your Royal Blue Theme) --- */
            --bs-primary: #5d87ff;       /* Royal Blue */
            --bs-secondary: #49beff;     /* Sky Blue */
            --bs-dark: #2a3547;          /* Dark Text */
            --bs-light-blue: #ecf2ff;    /* Very Light Blue for backgrounds */
            
            /* --- THEME VARIABLES (LIGHT MODE) --- */
            --bg-body: #f4f7fb;          /* Professional Light Grey */
            --bg-white: #ffffff;         /* Pure White */
            --text-main: #2a3547;        /* Deep Navy for headings */
            --text-body: #5a6a85;        /* Soft Grey for paragraphs */
            --border-light: #e5eaef;     /* Subtle borders */
            
            /* Shadows for Depth (Not Glow) */
            --shadow-card: 0px 4px 20px rgba(0, 0, 0, 0.05);
            --shadow-hover: 0px 10px 30px rgba(93, 135, 255, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Outfit', sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-body);
            color: var(--text-main);
            overflow-x: hidden;
        }

        /* --- 1. NAVIGATION (White Glass) --- */
        nav {
            position: fixed;
            top: 0; width: 100%;
            padding: 15px 50px;
            display: flex; justify-content: space-between; align-items: center;
            z-index: 1000;
            backdrop-filter: blur(12px);
            background: rgba(255, 255, 255, 0.9);
            border-bottom: 1px solid var(--border-light);
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
        }

        .logo { font-size: 24px; font-weight: 900; color: var(--bs-primary); }
        .logo span { color: var(--bs-dark); }

        .nav-links a {
            color: var(--text-body);
            text-decoration: none; margin-left: 30px;
            font-size: 0.95rem; font-weight: 600;
            transition: 0.3s;
        }
        .nav-links a:hover { color: var(--bs-primary); }

        .cta-btn {
            padding: 10px 25px;
            background: var(--bs-primary);
            color: #fff;
            border-radius: 6px;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            transition: 0.3s;
            box-shadow: 0 4px 10px rgba(93, 135, 255, 0.3);
        }
        .cta-btn:hover { 
            background: #4570ff; 
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(93, 135, 255, 0.4); 
        }

        /* Mobile Menu */
        .hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
        .hamburger .bar { width: 25px; height: 3px; background-color: var(--bs-primary); transition: 0.3s; }
        .mobile-only-btn { display: none; }
        .nav-extras { display: flex; align-items: center; gap: 20px; }

        @media (max-width: 968px) {
            .nav-links { display: none; }
            .hamburger { display: flex; }
            .desktop-only { display: none; }
            .nav-links.active {
                display: flex; position: fixed; top: 0; right: 0;
                height: 100vh; width: 75%;
                background: #fff;
                flex-direction: column;
                justify-content: center; align-items: center;
                box-shadow: -10px 0 30px rgba(0,0,0,0.1);
                z-index: 999;
            }
            .nav-links a { margin: 20px 0; font-size: 1.2rem; }
            .mobile-only-btn { display: inline-block; padding: 10px 30px; background: var(--bs-primary); color: #fff; border-radius: 5px; margin-top: 20px; text-decoration: none;}
        }

        /* --- 2. HERO SECTION (Kept Dark for Impact, but cleaner) --- */
        .hero {
            height: 90vh; /* Slightly shorter for modern look */
            width: 100%;
            display: flex; align-items: center;
            padding: 0 10%; position: relative;
            background: #000; overflow: hidden;
        }

        .video-bg {
            position: absolute; top: 0; left: 0;
            width: 100%; height: 100%;
            object-fit: cover; opacity: 0.4; z-index: 0;
            /* Blue filter overlay */
            filter: saturate(1.2) hue-rotate(10deg); 
        }

        .hero-overlay {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(45deg, rgba(5, 12, 24, 0.9), rgba(93, 135, 255, 0.2));
            z-index: 1;
        }

        .hero-content { position: relative; z-index: 10; max-width: 800px; }

        h1 { font-size: 4.5rem; line-height: 1.1; margin-bottom: 20px; color: #fff; font-weight: 800; }
        .typing-text { color: var(--bs-secondary); }
        p.hero-sub { font-size: 1.25rem; color: #e5eaef; margin-bottom: 40px; max-width: 500px; }

        .stats-container {
            position: absolute; right: 10%; top: 50%;
            transform: translateY(-50%);
            display: flex; flex-direction: column; gap: 20px; z-index: 10;
        }
        .stat-card {
            background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px);
            padding: 20px; border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2); width: 220px;
            animation: float 6s ease-in-out infinite;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        .stat-card h3 { font-size: 2rem; color: #fff; margin-bottom: 0; }
        .stat-card span { font-size: 0.9rem; color: var(--bs-secondary); font-weight: 500;}

        /* Marquee on Light Background */
        .marquee {
            position: absolute; bottom: 0; left: 0; width: 100%;
            background: #fff; padding: 20px 0;
            border-top: none;
            overflow: hidden; white-space: nowrap; z-index: 20;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
        }
        .marquee-content { display: inline-block; animation: scroll 20s linear infinite; }
        .marquee-content span { font-size: 1.2rem; font-weight: 700; color: var(--bs-dark); margin: 0 50px; text-transform: uppercase; opacity: 0.6; }

        /* --- 3. UPDATES SECTION (Light Grey BG) --- */
        .updates-section { padding: 80px 10%; background: var(--bg-body); }
        .updates-container { display: flex; gap: 50px; max-width: 1400px; margin: 0 auto; }
        .section-heading { font-size: 2rem; color: var(--text-main); margin-bottom: 30px; border-left: 5px solid var(--bs-primary); padding-left: 15px; font-weight: 800; }
        .section-heading span, .anno-header span { color: var(--bs-primary); }
        
        .achievements-col { flex: 1.5; }
        .news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
        .news-card {
            display: flex; align-items: center; background: var(--bg-white);
            border: 1px solid var(--border-light); border-radius: 12px;
            overflow: hidden; text-decoration: none; transition: 0.3s; height: 100px;
            box-shadow: var(--shadow-card);
        }
        .news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: var(--bs-primary); }
        .news-card img { width: 100px; height: 100%; object-fit: cover; }
        .news-info { padding: 15px; }
        .news-info .date { font-size: 0.75rem; color: var(--bs-primary); display: block; margin-bottom: 5px; font-weight: 700; text-transform: uppercase; }
        .news-info h4 { font-size: 0.95rem; color: var(--text-main); font-weight: 600; line-height: 1.4; }

        .announcements-col { 
            flex: 1; background: var(--bg-white); border-radius: 12px; padding: 25px; 
            border: 1px solid var(--border-light); height: 450px; 
            display: flex; flex-direction: column;
            box-shadow: var(--shadow-card);
        }
        .anno-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 2px solid var(--bg-body); padding-bottom: 10px; }
        .anno-header h3 { font-size: 1.5rem; color: var(--text-main); font-weight: 700; }
        .live-dot { width: 8px; height: 8px; background: #ff4b4b; border-radius: 50%; box-shadow: 0 0 0 3px rgba(255, 75, 75, 0.2); animation: blink 1s infinite; }
        .scrolling-box { overflow: hidden; flex-grow: 1; position: relative; }
        .anno-list { list-style: none; animation: scrollUp 15s linear infinite; }
        .scrolling-box:hover .anno-list { animation-play-state: paused; }
        .anno-list li { padding: 15px 0; border-bottom: 1px dashed var(--border-light); }
        .anno-date { display: inline-block; background: var(--bs-light-blue); color: var(--bs-primary); padding: 3px 8px; border-radius: 4px; font-size: 0.75rem; font-weight: 700; margin-right: 10px; }
        .anno-list li a { color: var(--text-main); text-decoration: none; font-size: 0.95rem; transition: 0.2s; font-weight: 500;}
        .anno-list li a:hover { color: var(--bs-primary); }

        /* --- 4. COURSES SECTION (White BG) --- */
        .courses-section { padding: 100px 10%; background: var(--bg-white); }
        .section-header-center { text-align: center; margin-bottom: 60px; }
        .section-title { font-size: 2.5rem; color: var(--text-main); font-weight: 800; }
        .section-title span { color: var(--bs-primary); }
        .section-subtitle { color: var(--text-body); margin-top: 10px; font-size: 1.1rem; }
        
        .course-tabs { display: flex; justify-content: center; gap: 15px; margin-bottom: 50px; flex-wrap: wrap; }
        .tab-btn { background: var(--bg-body); border: 1px solid var(--border-light); color: var(--text-body); padding: 12px 30px; border-radius: 30px; cursor: pointer; font-size: 1rem; font-weight: 600; transition: 0.3s; }
        .tab-btn:hover, .tab-btn.active { background: var(--bs-primary); border-color: var(--bs-primary); color: #fff; box-shadow: 0 5px 15px rgba(93, 135, 255, 0.3); }
        
        .courses-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
        .course-card { 
            background: var(--bg-white); padding: 30px; border-radius: 16px; 
            transition: 0.3s; border: 1px solid var(--border-light); 
            overflow: hidden; position: relative;
            box-shadow: var(--shadow-card);
        }
        .course-card:hover { transform: translateY(-8px); border-color: var(--bs-primary); box-shadow: var(--shadow-hover); }

        /* Icons on White */
        .tech-icon { width: 60px; height: 60px; background: var(--bs-light-blue); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; transition: 0.3s ease; }
        .tech-icon svg { width: 32px; height: 32px; color: var(--bs-primary); stroke-width: 1.5px; transition: 0.3s ease; }
        .course-card:hover .tech-icon { background: var(--bs-primary); }
        .course-card:hover .tech-icon svg { color: #fff; }
        
        .course-card h3 { color: var(--text-main); font-size: 1.4rem; margin-bottom: 10px; font-weight: 700; }
        .course-card h3 .code { font-size: 0.9rem; color: var(--text-body); font-weight: 400; margin-left: 5px; }
        .course-card p { color: var(--text-body); font-size: 0.95rem; margin-bottom: 25px; line-height: 1.6; }
        
        .course-meta { display: flex; justify-content: space-between; margin-bottom: 25px; border-top: 1px solid var(--border-light); padding-top: 15px; }
        .course-meta span { font-size: 0.85rem; color: var(--bs-primary); font-family: monospace; font-weight: 600; background: var(--bs-light-blue); padding: 4px 8px; border-radius: 4px; }
        
        .course-link { color: var(--text-main); text-decoration: none; font-weight: 700; font-size: 0.9rem; display: inline-flex; align-items: center; transition: 0.3s; }
        .course-link:hover { color: var(--bs-primary); transform: translateX(5px); }

        /* --- 5. ABOUT SECTION (Light Grey BG) --- */
        .about-section { padding: 100px 10%; background: var(--bg-body); display: flex; align-items: center; justify-content: space-between; gap: 50px; position: relative; }
        .chairman-image-wrapper { flex: 1; position: relative; z-index: 2; }
        .chairman-img { width: 100%; max-width: 450px; height: auto; border-radius: 12px; box-shadow: -20px 20px 0px var(--bs-light-blue); transition: 0.3s; }
        .chairman-img:hover { transform: translateY(-5px); box-shadow: -25px 25px 0px var(--bs-primary); }
        .about-content { flex: 1.2; z-index: 2; }
        .section-label { color: var(--bs-primary); font-family: monospace; font-size: 1rem; margin-bottom: 10px; display: block; letter-spacing: 1px; font-weight: 600; }
        .about-content h2 { font-size: 2.5rem; color: var(--text-main); margin-bottom: 5px; font-weight: 800; }
        .about-content h4 { font-size: 1.1rem; color: var(--text-body); margin-bottom: 30px; font-weight: 500; }
        .about-content p { color: var(--text-body); line-height: 1.8; margin-bottom: 20px; font-size: 1.05rem; }
        .highlight { color: var(--bs-primary); font-weight: 700; background: var(--bs-light-blue); padding: 0 5px; }

        /* --- 6. TEAM SECTION (Compact Version) --- */
.team-section { 
    padding: 80px 10%; /* Slightly reduced padding */
    background: var(--bg-white); 
}

.team-grid { 
    display: grid; 
    /* Changed minmax from 300px to 220px to fit 4-5 items per row */
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
    gap: 25px; /* Reduced gap */
    max-width: 1200px; 
    margin: 0 auto; 
}

.team-card { 
    background: var(--bg-white); 
    border-radius: 12px; 
    overflow: hidden; 
    transition: 0.3s ease; 
    border: 1px solid var(--border-light); 
    box-shadow: var(--shadow-card); 
}

.team-card:hover { 
    transform: translateY(-5px); 
    border-color: var(--bs-primary); 
    box-shadow: var(--shadow-hover); 
}

.img-wrapper { 
    width: 100%; 
    /* Reduced height from 320px to 240px */
    height: 240px; 
    overflow: hidden; 
}

.img-wrapper img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    object-position: center top; 
    transition: 0.5s ease; 
    filter: grayscale(100%); 
}

.team-card:hover .img-wrapper img { 
    transform: scale(1.05); 
    filter: grayscale(0%); 
}

.team-info { 
    padding: 15px; /* Reduced padding */
    text-align: center; 
    border-top: 1px solid var(--border-light); 
}

.team-info h3 { 
    color: var(--text-main); 
    font-size: 1.1rem; /* Smaller Font */
    margin-bottom: 3px; 
    font-weight: 700; 
}

.team-info .designation { 
    color: var(--bs-primary); 
    font-size: 0.8rem; /* Smaller Font */
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
}
        /* --- 7. ASSOCIATIONS SECTION (Dark Blue - For Contrast) --- */
        /* Note: Partners usually look better on white, but logos often have white backgrounds. 
           Let's use a VERY light grey grid to make logos pop. */
        .associations-section { padding: 100px 10%; background: var(--bg-body); text-align: center; }
        .logo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
        .partner-card { 
            background: #fff; border: 1px solid var(--border-light); 
            border-radius: 8px; padding: 30px 20px; cursor: pointer; 
            transition: all 0.3s; display: flex; flex-direction: column; 
            align-items: center; justify-content: center; height: 160px; 
            box-shadow: var(--shadow-card);
        }
        .partner-card:hover { transform: translateY(-5px); border-color: var(--bs-primary); box-shadow: var(--shadow-hover); }
        .partner-logo { max-width: 80%; max-height: 60px; filter: grayscale(100%); opacity: 0.7; transition: 0.3s; }
        .partner-card:hover .partner-logo { filter: grayscale(0%); opacity: 1; }
        .click-hint { font-size: 0.75rem; color: var(--bs-primary); margin-top: 15px; opacity: 0; transform: translateY(10px); transition: 0.3s; font-weight: 600; }
        .partner-card:hover .click-hint { opacity: 1; transform: translateY(0); }

        /* --- 8. FOOTER (Dark for Professional Finish) --- */
        .footer-section { background: #050c18; padding: 80px 10% 20px; color: #fff; }
        .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 50px; }
        .footer-col h4 { color: #fff; margin-bottom: 20px; font-size: 1.2rem; font-weight: 700; }
        .footer-desc { color: #aeb9cc; line-height: 1.6; margin-top: 20px; font-size: 0.9rem; }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 10px; }
        .footer-col ul li a { color: #aeb9cc; text-decoration: none; transition: 0.3s; }
        .footer-col ul li a:hover { color: var(--bs-primary); padding-left: 5px; }
        .footer-col p { color: #aeb9cc; margin-bottom: 10px; }
        .copyright { text-align: center; border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 20px; color: #5a6a85; font-size: 0.8rem; }

        /* --- MODALS --- */
        .modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); z-index: 2000; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: 0.3s; backdrop-filter: blur(5px); }
        .modal-overlay.active { opacity: 1; visibility: visible; }
        .modal-content { background: #fff; width: 90%; max-width: 600px; padding: 40px; border-radius: 12px; position: relative; transform: translateY(50px); transition: 0.3s; box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
        .modal-overlay.active .modal-content { transform: translateY(0); }
        .close-btn { position: absolute; top: 20px; right: 20px; font-size: 1.5rem; color: var(--text-body); cursor: pointer; background: none; border: none; }
        .close-btn:hover { color: var(--bs-primary); }
        .modal-title { font-size: 2rem; color: var(--text-main); margin-bottom: 10px; font-weight: 800; }
        .modal-subtitle { color: var(--bs-primary); font-family: monospace; margin-bottom: 20px; display: block; font-weight: 600; }
        .value-list { list-style: none; text-align: left; }
        .value-list li { position: relative; padding-left: 25px; margin-bottom: 15px; color: var(--text-body); line-height: 1.6; }
        .value-list li::before { content: '▹'; position: absolute; left: 0; color: var(--bs-primary); font-weight: bold; }

        /* ANIMATIONS */
        @keyframes blink { 50% { border-color: transparent; } }
        @keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

        @media (max-width: 968px) {
            h1 { font-size: 3rem; }
            .about-section { flex-direction: column; padding: 60px 5%; }
            .stats-container { display: none; }
            .updates-container { flex-direction: column; }
            .announcements-col { height: 350px; }
        }


/* --- 4. PLACEMENTS SCROLLER (Fixed Horizontal Layout) --- */
.placements-section { 
    padding: 60px 0; 
    background: var(--bg-body); 
    position: relative; 
    overflow: hidden; /* Hides the long track that goes off-screen */
}

.placement-scroller {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* Optional: Fades edges for a smooth look */
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.placement-track {
    display: flex; /* Forces items side-by-side */
    gap: 20px;
    width: max-content; /* CRITICAL: Forces track to be as wide as all cards combined */
    flex-wrap: nowrap; /* CRITICAL: Strictly forbids stacking */
    animation: scrollLeft 40s linear infinite; 
}

/* Pause on Hover */
.placement-track:hover {
    animation-play-state: paused;
}

.poster-card { 
    /* FORCE SIZE: Do not grow, do not shrink */
    flex: 0 0 160px; /* CRITICAL: The '0 0' prevents shrinking */
    width: 160px;
    min-width: 160px;
    
    aspect-ratio: 4 / 5; 
    position: relative; 
    border-radius: 10px; 
    overflow: hidden; 
    border: 1px solid var(--border-light); 
    background: #fff;
    box-shadow: var(--shadow-card);
    transition: 0.3s ease;
}

.poster-card:hover { 
    transform: translateY(-5px); 
    border-color: var(--bs-primary); 
    box-shadow: 0 10px 25px rgba(93, 135, 255, 0.25);
    z-index: 2; 
}

.poster-card img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: 0.5s ease; 
}

.poster-card:hover img { transform: scale(1.1); }

/* Overlay Text */
.poster-overlay { 
    position: absolute; 
    bottom: 0; left: 0; width: 100%; 
    padding: 10px; 
    background: linear-gradient(to top, rgba(5, 12, 24, 0.95), transparent); 
    color: #fff; 
    transform: translateY(0); 
}

.poster-overlay h4 { 
    font-size: 0.85rem; 
    font-weight: 700; 
    margin-bottom: 2px; 
    color: #fff; 
}

.poster-overlay p { 
    font-size: 0.7rem; 
    margin-bottom: 5px; 
    color: rgba(255,255,255,0.8); 
}

.package { 
    display: inline-block; 
    background: var(--bs-primary); 
    padding: 2px 8px; 
    border-radius: 10px; 
    font-size: 0.65rem; 
    font-weight: 700; 
}

/* Scroll Animation */
@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

/* CAMPUS BADGES (No Background Version) */
.campus-badges {
    display: flex;
    gap: 8px;
    margin-top: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.campus-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-body);
    margin-right: 5px;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

.badge-campus {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    background: transparent; /* Removes the background color */
}

/* OUTLINE COLORS (Text & Border only) */
.bg-red { 
    color: #d32f2f; 
    border: 1px solid #d32f2f; 
}

.bg-green { 
    color: #00796b; 
    border: 1px solid #00796b; 
}

.bg-pink { 
    color: #c2185b; 
    border: 1px solid #c2185b; 
}


/* Add this to your CSS file */
.news-desc {
    font-size: 0.85rem;
    color: var(--text-body);
    margin-top: 4px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limits text to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Adjust card height slightly to fit description */
.news-card {
    height: 120px; /* Increased from 100px */
    align-items: flex-start; /* Aligns text to top */
}
.news-card img {
    height: 100%; /* Ensures image fills height */
}


/* --- MODAL POPUP STYLES --- */
.modal-overlay { 
    position: fixed; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    background: rgba(0, 0, 0, 0.6); 
    z-index: 2000; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    opacity: 0; 
    visibility: hidden; 
    transition: 0.3s; 
    backdrop-filter: blur(5px); 
}

/* This is the class Javascript adds to make it appear */
.modal-overlay.active { 
    opacity: 1; 
    visibility: visible; 
}

.modal-content { 
    background: #fff; 
    width: 90%; 
    max-width: 600px; 
    padding: 40px; 
    border-radius: 12px; 
    position: relative; 
    transform: translateY(50px); 
    transition: 0.3s; 
    box-shadow: 0 20px 60px rgba(0,0,0,0.2); 
}

.modal-overlay.active .modal-content { 
    transform: translateY(0); 
}

.close-btn { 
    position: absolute; 
    top: 20px; right: 20px; 
    font-size: 1.5rem; 
    color: var(--text-body); 
    cursor: pointer; 
    background: none; 
    border: none; 
}

.close-btn:hover { color: var(--bs-primary); }

.modal-title { 
    font-size: 2rem; 
    color: var(--text-main); 
    margin-bottom: 10px; 
    font-weight: 800; 
}

.modal-subtitle { 
    color: var(--bs-primary); 
    font-family: monospace; 
    margin-bottom: 20px; 
    display: block; 
    font-weight: 600; 
}

.value-list { list-style: none; text-align: left; padding: 0;}
.value-list li { 
    position: relative; 
    padding-left: 25px; 
    margin-bottom: 15px; 
    color: var(--text-body); 
    line-height: 1.6; 
}
.value-list li::before { 
    content: '▹'; 
    position: absolute; 
    left: 0; 
    color: var(--bs-primary); 
    font-weight: bold; 
}


