@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Orbitron:wght@400;700;900&display=swap');

:root {
    --primary-bg: #121212;
    --secondary-bg: #1a1a1a;
    --accent-color: #FF6600; 
    --accent-glow: rgba(255, 102, 0, 0.6);
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --glass-bg: rgba(30, 30, 30, 0.8);
    --glass-border: rgba(255, 102, 0, 0.15);
    --neon-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
    --transition-ultra: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    --float-animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: var(--float-animation);
}

/* Custom Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 100000;
    box-shadow: 0 0 10px var(--accent-glow);
    transition: transform 0.1s ease-out;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.2s ease-out, opacity 0.3s;
}

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

/* Global Styles */
body {
    background: radial-gradient(circle at top center, #1a1a1a 0%, #121212 100%);
    background-color: var(--primary-bg);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Texture Overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Grainy noise texture - Data URI to avoid 404 */
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
    z-index: 9997;
}

h1, h2, h3, h4, .heading-font {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

span {
    color: var(--accent-color);
    text-shadow: 0 0 15px var(--accent-glow);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
    position: relative;
}

.section-padding::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.3;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition-ultra);
    padding: 20px 0;
}

header.scrolled {
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--accent-glow));
    transition: var(--transition-ultra);
}

header.scrolled .logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition-smooth);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-color);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    animation: zoomBackground 20s infinite alternate;
}

@keyframes zoomBackground {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero h1 span {
    color: var(--accent-color);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 600px;
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    background: var(--accent-color);
    color: #000;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 0; /* Sharp corners for HD look */
    transition: var(--transition-smooth);
    border: 2px solid var(--accent-color);
    cursor: pointer;
    letter-spacing: 2px;
}

.btn:hover {
    background: transparent;
    color: var(--accent-color);
    box-shadow: 0 0 20px var(--accent-glow);
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 380px);
    gap: 30px;
}

.bento-item {
    background: var(--secondary-bg);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-ultra);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-ultra);
    pointer-events: none;
    z-index: 1;
}

.bento-item:hover::before {
    opacity: 0.2;
}

.bento-item:hover {
    transform: scale(1.03) rotateZ(0.5deg);
    border-color: var(--accent-color);
    box-shadow: 0 30px 60px rgba(10, 10, 10, 0.9), 0 0 20px var(--accent-glow);
}

.bento-item h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    color: var(--text-primary);
    transition: var(--transition-ultra);
}

.bento-item:hover h3 {
    color: var(--accent-color);
    transform: translateX(10px);
}

.bento-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 2;
}

/* Glass Card & Components */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 4px;
    transition: var(--transition-ultra);
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 30px var(--accent-glow);
    transform: translateY(-5px) scale(1.02);
}

.glass-card h3 {
    color: var(--accent-color);
    text-shadow: 0 0 15px var(--accent-glow);
    margin-bottom: 20px;
}

a.glass-card {
    color: inherit;
    text-decoration: none;
    display: block;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Footer Section */
footer {
    background: var(--primary-bg);
    padding: 80px 0;
    border-top: 4px solid var(--accent-color);
}

/* Responsive */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .hero h1 {
        font-size: 3.5rem;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-large, .bento-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    .custom-cursor, .cursor-follower {
        display: none; /* Hide custom cursor on mobile */
    }
    body {
        cursor: auto;
    }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

@keyframes loading {
    0% { left: -50%; }
    100% { left: 100%; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -10px); }
    60% { transform: translate(-50%, -5px); }
}

@keyframes revealStagger {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal-stagger > * {
    animation: revealStagger 1.2s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.reveal-stagger h1 { animation-delay: 0.2s; }
.reveal-stagger p { animation-delay: 0.4s; }
.reveal-stagger .hero-btns { animation-delay: 0.6s; }
/* Cinematic Intro */
#cinematic-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 11000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.intro-logo-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.intro-logo {
    width: 500px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 102, 0, 0));
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    animation: logoEntrance 2.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.intro-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

.intro-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 10px;
    color: var(--text-primary);
    opacity: 0;
    transform: translateY(20px);
    animation: textEntrance 1.5s ease-out 1.5s forwards;
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(50px);
        filter: blur(20px) drop-shadow(0 0 0px rgba(255, 102, 0, 0));
    }
    40% {
        opacity: 1;
        filter: blur(0px) drop-shadow(0 0 20px rgba(255, 102, 0, 0.4));
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: drop-shadow(0 0 40px rgba(255, 102, 0, 0.6));
    }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(2); }
}

@keyframes textEntrance {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

#cinematic-intro.fade-out {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out, visibility 1.5s;
}

.main-content {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.main-content.visible {
    opacity: 1;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 25px;
    z-index: 12000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(150%);
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    flex: 1;
}

.cookie-content h4 {
    color: var(--accent-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.cookie-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 25px;
    border-radius: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cookie-btn-accept {
    background: var(--accent-color);
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.cookie-btn-accept:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.5);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
}

/* Footer Legal Links */
.footer-legal {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.footer-legal a:hover {
    color: var(--accent-color);
}

/* Premium Chatbot */
.chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 13000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.chat-bubble {
    width: 65px;
    height: 65px;
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 102, 0, 0.2);
    transition: var(--transition-smooth);
    position: relative;
    padding: 10px;
}

.chat-bubble:hover {
    transform: scale(1.1) rotate(5deg);
    background: rgba(25, 25, 25, 0.9);
    border-color: var(--accent-color);
}

.chat-bubble img {
    width: 100%;
    height: auto;
    filter: none; /* Removed silhouette filter */
}

.chat-window {
    width: 350px;
    height: 500px;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    margin-bottom: 20px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform-origin: bottom right;
    animation: chatOpen 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Legal Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 20000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: rgba(25, 25, 25, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    width: 100%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--accent-color);
}

.modal-body h2 {
    color: var(--accent-color);
    margin-bottom: 25px;
}

.modal-body p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.6;
}

@keyframes chatOpen {
    from { opacity: 0; transform: scale(0.8) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.chat-header {
    padding: 20px;
    background: linear-gradient(135deg, var(--accent-color), #cc5200);
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.chat-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    padding: 5px;
}

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-message {
    padding: 12px 16px;
    border-radius: 15px;
    font-size: 0.9rem;
    max-width: 85%;
}

.bot-msg {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.user-msg {
    background: var(--accent-color);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.faq-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.faq-btn {
    padding: 8px 12px;
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid var(--accent-color);
    border-radius: 20px;
    color: var(--accent-color);
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-btn:hover {
    background: var(--accent-color);
    color: white;
}

/* Cinematic Mosaic Gallery */
.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-auto-rows: 250px;
    gap: 20px;
    margin-bottom: 40px;
}

.mosaic-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    transition: var(--transition-ultra);
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-ultra);
}

.mosaic-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px var(--accent-glow);
    z-index: 5;
}

.mosaic-item:hover img {
    transform: scale(1.1);
}

/* Feature some items */
.mosaic-item.wide { grid-column: span 2; }
.mosaic-item.tall { grid-row: span 2; }
.mosaic-item.large { grid-column: span 2; grid-row: span 2; }

/* Phase Navigation */
.phase-nav {
    position: sticky;
    top: 100px;
    z-index: 100;
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    margin-bottom: 50px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: center;
    gap: 30px;
}

.phase-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.phase-nav a:hover, .phase-nav a.active {
    color: var(--accent-color);
}

/* Enhanced Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    z-index: 15000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    width: 90%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 50px rgba(255, 102, 0, 0.2);
    animation: zoomIn 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 2rem;
    transition: var(--transition-smooth);
    z-index: 10;
}

.lightbox-nav-btn:hover {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
}

.lightbox-prev { left: 40px; }
.lightbox-next { right: 40px; }

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 20;
    transition: var(--transition-smooth);
}

.lightbox-close:hover { color: var(--accent-color); transform: rotate(90deg); }

.lightbox-counter {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-secondary);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* Show More Button */
.btn-show-more {
    margin: 40px auto;
    display: block;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

.btn-show-more:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .mosaic-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 150px;
        gap: 10px;
    }
    .mosaic-item.wide, .mosaic-item.large { grid-column: span 2; }
    .lightbox-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .phase-nav {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 15px 20px;
        top: 60px;
    }
}


