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

:root {
    --bg-dark: #121212;
    --bg-card: #1E1E1E;
    --accent: #FF3B3F;
    --text-main: #EDEDED;
    --text-muted: #A0A0A0;
    --nav-bg: #000000;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Archivo', sans-serif;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

header {
    padding: 20px 40px;
    background-color: var(--nav-bg);
    width: 100%;
    flex-shrink: 0;
    z-index: 100;
    border-bottom: 1px solid #333;
}

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

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-nav {
    text-decoration: none;
    background-color: transparent;
    border: 2px solid var(--accent);
    color: var(--text-main);
    padding: 8px 25px;
    border-radius: 25px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-nav:hover, .btn-nav.active {
    background-color: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 59, 63, 0.4);
}

.search-container svg {
    cursor: pointer;
    stroke: var(--text-main);
    width: 30px;
    height: 30px;
    margin-left: 10px;
    transition: transform 0.2s, stroke 0.2s;
}

.search-container:hover svg {
    transform: scale(1.1);
    stroke: var(--accent);
}

.hero {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 40px;
    width: 100%;
    overflow: hidden;
    background: radial-gradient(circle at center, #1a1a1a 0%, #121212 100%);
}

.title-block {
    display: flex;
    flex-direction: column;
    line-height: 0.9;
}

h1 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 7rem;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0px 0px 20px rgba(0,0,0,0.5);
    color: white;
}

.text-motion {
    color: #8ECAE6;
    transform: rotate(-2deg);
}

.text-designer {
    color: var(--accent);
    transform: rotate(2deg);
}

.btn-cta {
    text-decoration: none;
    background-color: var(--accent);
    color: white;
    padding: 15px 50px;
    border-radius: 5px;
    font-family: 'Archivo Black', sans-serif;
    text-transform: uppercase;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(255, 59, 63, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-cta:hover {
    background-color: white;
    color: var(--accent);
    transform: translateY(-2px);
}

.split-layout, .interview-layout {
    display: flex;
    flex-grow: 1;
    height: 100%;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.content-left {
    flex: 60;
    background-color: var(--bg-dark);
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
    color: var(--text-main);
}

.page-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 3.5rem;
    text-transform: uppercase;
    color: var(--text-main);
    margin-bottom: 20px;
}

.text-block p {
    font-family: 'Archivo', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.text-block h3 {
    font-family: 'Archivo Black', sans-serif;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--accent);
    margin-top: 20px;
}

.sidebar-right {
    flex: 40;
    background-color: var(--bg-card);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    overflow-y: auto;
    color: var(--text-main);
    border-left: 1px solid #333;
}

.sidebar-right h2,
.credits-section h2,
.team-section h2,
.interview-section h2,
.contact-section h2 {
    font-family: 'Archivo Black', sans-serif;
    text-transform: uppercase;
    font-size: 1.4rem !important;
    margin-bottom: 15px;
    border-left: 4px solid var(--accent);
    padding-left: 15px;
    color: white;
}

.sidebar-right p, .credits-section p {
    color: var(--text-muted);
    font-family: 'Archivo', sans-serif;
}

.member-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.member-list li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 30px;
}

.member-info {
    display: flex;
    flex-direction: column;
    flex-shrink: 0; 
    min-width: 200px;
}

.member-info strong {
    color: var(--text-main);
    font-size: 1.1rem;
    font-family: 'Archivo', sans-serif;
}

.member-role {
    color: var(--accent);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 2px;
}

.member-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.linkedin-icon {
    width: 24px;
    height: 24px;
    display: block;
    filter: invert(1) grayscale(100%) brightness(200%); 
    transition: transform 0.2s;
    opacity: 0.8;
}

.linkedin-icon:hover {
    transform: scale(1.2);
    opacity: 1;
}

.btn-mini-webdoc {
    display: inline-block;
    background-color: transparent;
    border: 1px solid var(--text-muted); 
    color: var(--text-muted); 
    text-decoration: none;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-family: 'Archivo Black', sans-serif;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap; 
}

.btn-mini-webdoc:hover {
    border-color: var(--accent); 
    color: var(--accent); 
    background-color: rgba(255, 59, 63, 0.1);
    transform: translateY(-2px);
}

.logos-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.logo-partner {
    height: 50px;
    width: auto;
    object-fit: contain;
    opacity: 1;
}

.interview-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    gap: 30px;
}

.chapter-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
    z-index: 10;
}

.btn-chapter {
    background: transparent;
    border: 1px solid #444;
    color: var(--text-muted);
    padding: 8px 20px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-chapter:hover, .btn-chapter.active {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(255, 59, 63, 0.1);
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 1px solid #333;
    padding-bottom: 0; 
    height: auto;
}

.video-container iframe, 
#player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-responsive-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    width: 100%;
}

.video-responsive-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

video {
    display: block;
    width: 100%;
}

.custom-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s;
}

.control-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    font-family: 'Archivo Black';
}

.control-btn:hover {
    color: var(--accent);
}

.progress-container {
    flex-grow: 1;
    height: 6px;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    position: relative;
    border-radius: 3px;
}

.progress-bar {
    height: 100%;
    background-color: var(--accent);
    width: 0%;
    border-radius: 3px;
    position: relative;
}

.hotspot-marker {
    position: absolute;
    top: -4px;
    width: 4px;
    height: 14px;
    background-color: #fff;
    cursor: pointer;
    z-index: 20;
    transition: transform 0.2s;
}

.hotspot-marker:hover {
    transform: scaleY(1.5);
    background-color: var(--accent);
}

.hotspot-marker::after {
    content: attr(data-title);
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: black;
    color: white;
    padding: 4px 8px;
    font-size: 0.7rem;
    white-space: nowrap;
    border-radius: 4px;
    display: none;
}

.hotspot-marker:hover::after { 
    display: block; 
}

.questions-section, .podcast-description {
    width: 100%;
    max-width: 800px;
    background-color: var(--bg-card);
    padding: 20px;
    border-radius: 4px;
    border-left: 4px solid var(--accent);
    max-height: none;
    overflow-y: visible;
}

.questions-section h2, .podcast-description h2 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 15px;
    font-family: 'Archivo Black';
    text-transform: uppercase;
}

.questions-list {
    list-style: none;
    padding: 0;
}

.questions-list li {
    background: #2A2A2A;
    margin-bottom: 5px;
    padding: 10px 15px;
    cursor: pointer;
    font-family: 'Archivo', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: all 0.2s;
    border-left: 2px solid transparent;
}

.questions-list li:hover {
    background: #333;
    color: white;
    border-left-color: var(--accent);
}

.time-tag {
    color: var(--accent);
    font-weight: bold;
    margin-right: 10px;
    font-family: monospace;
}

.podcast-description .text-content p {
    color: var(--text-muted);
    margin-bottom: 10px;
    font-size: 1rem;
}

.mindmap-layout {
    flex-grow: 1;
    padding: 40px;
    overflow-y: auto;
    background-color: var(--bg-dark);
}

.mindmap-section {
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Archivo Black';
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 4px solid white;
    text-transform: uppercase;
}

.mindmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.map-card {
    background: var(--bg-card);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 25px;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 150px;
}

.map-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.map-card h3 {
    font-family: 'Archivo Black';
    color: white;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.map-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.chapter-card {
    border-top: 4px solid var(--accent);
    justify-content: flex-start;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.chapter-num {
    font-family: 'Archivo Black';
    font-size: 2rem;
    color: #333;
}

.chapter-card h3 {
    font-size: 1.1rem;
    margin: 0;
}

.mindmap-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.mindmap-list li {
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    padding-left: 15px;
}

.mindmap-list li::before {
    content: "•";
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 5px;
}

.podcast-card {
    border-top-color: #4CAF50;
}
.podcast-card .chapter-num {
    font-size: 1.5rem;
}

.visit-btn, .visit-btn-mini {
    display: inline-block;
    background-color: #333;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    text-align: center;
    transition: background 0.2s;
    text-transform: uppercase;
    font-family: 'Archivo Black';
    margin-top: auto;
}

.visit-btn:hover, .visit-btn-mini:hover {
    background-color: var(--accent);
}

.podcast-card .visit-btn-mini:hover {
    background-color: #4CAF50;
}

.check-visited {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #4CAF50;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    z-index: 10;
}

.map-card.is-visited .check-visited {
    display: flex;
}

.reset-section {
    text-align: center;
    margin-top: 40px;
}

.btn-reset {
    background-color: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 10px 20px;
    cursor: pointer;
    font-family: 'Archivo Black';
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-reset:hover {
    background: var(--accent);
    color: #fff;
}

.webdoc-footer {
    background-color: var(--nav-bg);
    border-top: 1px solid #333;
    height: auto;
    min-height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    font-size: 0.8rem;
    flex-shrink: 0;
    width: 100%;
    z-index: 100;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Archivo Black', sans-serif;
    transition: color 0.3s;
}

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

.footer-right {
    display: flex;
    gap: 20px;
}

.footer-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Archivo', sans-serif;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.75rem;
    transition: color 0.3s;
}

.footer-tools {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

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

.footer-btn .icon {
    font-size: 1.1rem;
}

.separator {
    color: #333;
    font-weight: bold;
}

.search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    justify-content: center;
    padding-top: 100px;
    backdrop-filter: blur(5px);
}

.search-box {
    width: 100%;
    max-width: 800px;
    position: relative;
}

.close-search {
    position: absolute;
    right: 0;
    top: -40px;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
}

.close-search:hover {
    color: white;
}

#searchInput {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--accent);
    color: white;
    font-size: 2rem;
    font-family: 'Archivo Black', sans-serif;
    padding: 10px;
    outline: none;
    text-transform: uppercase;
}

#searchInput::placeholder {
    color: #444;
}

.results-list {
    list-style: none;
    margin-top: 30px;
}

.result-item {
    background-color: #1a1a1a;
    padding: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    border-left: 4px solid transparent;
    color: var(--text-muted);
}

.result-item:hover {
    background-color: #252525;
    border-left-color: var(--accent);
    color: white;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 8px;
    width: 400px;
    position: relative;
    color: white;
    border: 1px solid #444;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-muted);
}

.close-modal:hover {
    color: white;
}

.modal-content input {
    background: #111;
    color: white;
    border: 1px solid #444;
    padding: 8px;
    width: 100%;
    margin-bottom: 20px;
    font-family: monospace;
}

.btn-linkedin-big {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #0077b5;
    color: white;
    text-decoration: none;
    font-family: 'Archivo Black', sans-serif;
    text-transform: uppercase;
    padding: 15px 20px;
    border-radius: 5px;
    width: 100%;
    margin-top: 10px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-linkedin-big:hover {
    background-color: #005582;
    transform: translateY(-2px);
}

.btn-linkedin-big svg {
    fill: white;
}

.fb { background-color: #3b5998; }
.x { background-color: #000; border: 1px solid #333; }
.insta { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.tiktok { background-color: #000; border: 1px solid #333; }
.linkedin { background-color: #0077b5; }

.video-container:fullscreen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: black;
    width: 100%;
    height: 100%;
}

.video-container:fullscreen video {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.video-container:fullscreen .custom-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2147483647;
    background-color: rgba(0, 0, 0, 0.9);
}

.video-container:hover .custom-controls {
    opacity: 1;
}

.burger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 200;
}

.burger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 3px;
    transition: all 0.3s;
}

.nav-links-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-right: 20px;
}

#soundBtn {
    position: relative; 
    overflow: visible;
}

.volume-popup {
    display: none;
    position: absolute;
    bottom: 140%;
    left: 50%;
    transform: translateX(-50%);
    
    background-color: #1E1E1E;
    border: 1px solid #333;
    padding: 15px 10px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    z-index: 1000;
    flex-direction: column;
    align-items: center;
    min-width: 40px;
    height: 120px;
}

.volume-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #1E1E1E transparent transparent transparent;
}

#volumeSlider {
    appearance: none;
    -webkit-appearance: none; 
    width: 100px;
    height: 4px;
    background: #444;
    outline: none;
    border-radius: 2px;
    cursor: pointer;
    transform: rotate(-90deg);
    margin-top: 50px; 
}

#volumeSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(255, 59, 63, 0.5);
    margin-top: 0px;
}

#volumeSlider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: var(--accent);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(255, 59, 63, 0.5);
}

.questions-list li.viewed {
    color: var(--text-muted); 
    opacity: 1;
    transition: all 0.3s;
}

.questions-list li.viewed .time-tag {
    color: #4CAF50;
    border-color: #4CAF50;
    background-color: transparent;
    font-weight: bold;
}

.questions-list li.viewed::before {
    content: "✓";
    color: #4CAF50;
    margin-right: 10px;
    font-weight: bold;
    display: inline-block;
}

.btn-chapter.completed {
    border-color: #4CAF50;
    color: #4CAF50;
    position: relative;
}

.btn-chapter.completed::after {
    content: "✓";
    position: absolute;
    top: -5px;
    right: -5px;
    background: #4CAF50;
    color: white;
    font-size: 0.7rem;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-chapter.active.completed {
    background-color: #4CAF50;
    color: white;
}

/* Responsive */
@media (max-width: 900px) {
    body {
        min-height: 100vh;
        height: auto;
        overflow-y: auto;
    }
    h1 {
        font-size: 3.5rem;
        line-height: 1;
    }
    .page-title {
        font-size: 2.2rem;
    }
    header {
        padding: 15px 20px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    nav {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }
    .nav-left, .nav-right {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        align-items: center;
    }
    .btn-nav {
        width: 80%;
        text-align: center;
    }
    .search-container {
        display: none;
    }
    .webdoc-footer {
        position: relative;
        height: auto;
        padding: 20px;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
        margin-top: auto;
    }
    .footer-nav {
        justify-content: center;
        gap: 15px;
        line-height: 1.5;
    }
    .footer-tools {
        justify-content: center;
        width: 100%;
        border-top: 1px solid #333;
        padding-top: 15px;
    }
    .separator { 
        display: none; 
    }
    .split-layout, .interview-layout, .hero, .mindmap-container {
        flex-direction: column;
        height: auto;
        overflow: visible;
        flex-grow: 1;
    }
    .hero {
        padding: 40px 20px;
        min-height: auto;
        gap: 30px;
    }
    .interview-layout {
        padding: 20px;
        padding-bottom: 40px;
        margin-bottom: 20px;
    }
    .mindmap-container {
        padding: 20px;
        padding-bottom: 60px !important;
    }
    .content-left, .sidebar-right {
        flex: none;
        padding: 30px 20px;
        border: none;
    }
    .sidebar-right {
        border-top: 1px solid #333;
    }
    .btn-chapter {
        width: 48%;
        text-align: center;
    }
    .questions-list {
        max-height: none;
        overflow: visible;
    }
    .mindmap-grid {
        grid-template-columns: 1fr;
    }
    .logos-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .logo-partner {
        max-width: 100%;
        height: auto;
        max-height: 50px;
    }
    .burger-menu {
        display: flex;
    }
    .search-container {
        display: block; margin-left: auto;
    }
    .nav-links-wrapper {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--nav-bg);
        flex-direction: column;
        align-items: center;
        padding: 0;
        gap: 20px;
        border-bottom: 1px solid #333;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.4s ease-out, opacity 0.3s ease-out, padding 0.3s;
        margin-right: 0;
        z-index: 150;
    }
    .nav-links-wrapper.open {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        padding: 20px 0 30px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }
    .burger-menu.toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
        background-color: var(--accent);
    }
    .burger-menu.toggle span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
        background-color: var(--accent);
    }
    .member-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .member-info {
        min-width: auto;
    }
    .member-actions {
        width: 100%;
        justify-content: flex-start;
    }
}