/* ============================================================
   Porsche Macan Video Training — Interactive Edition
   ============================================================ */

:root {
    --black: #000000;
    --dark: #0d0d0d;
    --card: #161616;
    --card-border: #2a2a2a;
    --text: #ffffff;
    --text-muted: #888888;
    --accent: #d50032;
    --accent-hover: #ff1a4a;
    --green: #22c55e;
    --red: #ef4444;
    --radius: 16px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: var(--black);
    color: var(--text);
    -webkit-user-select: none;
    -webkit-user-drag: none;
    overflow-x: hidden;
    min-height: 100vh;
}

#app {
    max-width: 800px;
    margin: 0 auto;
}

/* ==================== HEADER ==================== */
.app-header {
    display: flex;
    justify-content: center;
    padding: 1.2em 1em 0.5em;
}

/* ==================== HERO ==================== */
.app-hero {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.35) 50%,
        rgba(0, 0, 0, 0.15) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 1em;
}

.app-header {
    display: none;
}

/* ==================== LOGO ==================== */
.header-logo {
    max-width: 280px;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo svg {
    width: auto;
    height: 100%;
    max-width: 100%;
}

/* ==================== MAIN ==================== */
.app-main {
    padding: 1.5em 1.2em 2em;
}

.page-title {
    font-size: 1.35em;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 0.2em;
}

.page-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, rgba(213, 0, 50, 0.3) 0%, var(--accent) 100%);
    margin-top: 0.5em;
}

/* ==================== VIDEO LIST ==================== */
.video-list {
    list-style: none;
    margin-top: 1.2em;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.video-list li {
    cursor: pointer;
}

/* ==================== VIDEO CARD — Card Style ==================== */
.video-card {
    display: flex;
    flex-direction: column;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s var(--ease), transform 0.2s var(--ease);
}

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

.video-card:active {
    transform: scale(0.98);
}

.video-card-thumb {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
    background-color: var(--dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px 16px 0 0;
}

.video-card:hover .video-card-thumb {
    transform: scale(1.02);
}

.video-card-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1em 1.2em;
    gap: 0.5em;
}

.video-card-title-wrap {
    display: flex;
    align-items: center;
    gap: 0.5em;
    flex: 1;
}

.video-card-title {
    font-size: 1.05em;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    margin: 0;
    padding: 0;
}

.video-card-arrow {
    font-size: 1.6em;
    color: var(--text-muted);
    transition: color 0.3s ease;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.video-card:hover .video-card-arrow {
    color: var(--accent);
}

.video-card-arrow svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ==================== VIDEO CARD BADGE ==================== */
.video-card-badge {
    display: inline-block;
    margin-left: 0.4em;
    font-size: 0.7em;
    color: var(--accent);
    background: rgba(213, 0, 50, 0.12);
    border: 1px solid rgba(213, 0, 50, 0.3);
    border-radius: 4px;
    padding: 0.1em 0.35em;
    font-weight: 600;
}

.demo-badge {
    font-size: 0.7em;
    color: var(--text-muted);
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--card-border);
    border-radius: 4px;
    padding: 0.1em 0.35em;
    margin-left: 0.4em;
    font-weight: 400;
}

/* ==================== FOOTER ==================== */
.app-footer {
    padding: 2em 1em;
    text-align: center;
    border-top: 1px solid var(--card-border);
}

.app-footer p {
    font-size: 0.75em;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* ==================== VIDEO MODAL ==================== */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.video-modal[style*="flex"] { display: flex !important; }

.modal-backdrop {
    position: absolute;
    inset: 0;
    cursor: pointer;
}

.modal-player {
    position: relative;
    width: 92%;
    max-width: 880px;
    background: var(--dark);
    border: 1px solid var(--card-border);
    box-shadow: 0 24px 80px rgba(0,0,0,0.7);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.modal-close:hover { background: linear-gradient(90deg, rgba(213, 0, 50, 0.3) 0%, var(--accent) 100%); }

.modal-title {
    padding: 1.2em 1.2em 0.4em;
    font-size: 1em;
    font-weight: 600;
    position: relative;
    z-index: 5;
}

.modal-video-wrap {
    width: 100%;
    background: #000;
    position: relative;
}

.modal-video-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

.modal-video-wrap video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

/* ==================== VIDEO PROGRESS BAR ==================== */

/* ==================== VIDEO TIME DISPLAY ==================== */
.video-time-display {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    user-select: none;
    z-index: 25;
    white-space: nowrap;
    margin-left: auto;
    padding-right: 10px;
}

.video-time-display .time-current {
    color: #ffffff;
}

.video-time-display .time-duration {
    color: rgba(255,255,255,0.8);
    margin-left: 2px;
}


/* ==================== VIDEO TIME DISPLAY ==================== */
.video-time-display {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    user-select: none;
    z-index: 25;
    white-space: nowrap;
    margin-left: auto;
    padding-right: 10px;
}

.video-time-display .time-current {
    color: #ffffff;
}

.video-time-display .time-duration {
    color: rgba(255,255,255,0.8);
    margin-left: 2px;
}



/* ==================== VIDEO TIME DISPLAY ==================== */
.video-time-display {
    position: absolute;
    bottom: 8px;
    right: 10px;
    z-index: 25;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    user-select: none;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}


/* ==================== VIDEO TIME DISPLAY ==================== */
.video-time-wrap {
    position: absolute;
    bottom: 8px;
    right: 10px;
    z-index: 25;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    user-select: none;
    letter-spacing: 0.5px;
}

.video-time-wrap .time-current,
.video-time-wrap .time-duration {
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    user-select: none;
}

.video-time-wrap .time-duration {
    color: rgba(255,255,255,0.8);
    margin-left: 2px;
}

.video-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 28px;
    background: rgba(0, 0, 0, 0.5);
    z-index: 20;
    cursor: pointer;
    transition: height 0.2s ease, opacity 0.5s ease;
    opacity: 0.85;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.video-progress-bar:hover {
    height: 32px;
    background: rgba(0, 0, 0, 0.7);
    opacity: 1;
}

.video-progress-bar:hover {
    height: 32px;
    background: rgba(0, 0, 0, 0.7);
}

.video-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(213, 0, 50, 0.3) 0%, var(--accent) 100%);
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 0 3px 3px 0;
    z-index: 2;
}

.video-progress-markers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 21;
    pointer-events: none;
}



.video-time-display {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    user-select: none;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
    margin-left: auto;
    padding-right: 10px;
}

.video-time-display span {
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

.video-time-display span[style*="opacity"] {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
}

.video-progress-marker {
    position: absolute;
    left: 0;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.9);
    cursor: pointer;
    pointer-events: auto;
    z-index: 22;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* 红点内的小白点图标 */
.video-progress-marker::after {
    content: '';
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    display: block;
}

.video-progress-marker:hover {
    transform: scale(1.4);
    box-shadow: 0 0 8px rgba(213, 0, 50, 0.6);
}

.video-progress-marker .marker-tooltip {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.9);
    color: #fff;
    font-size: 0.65em;
    font-weight: 600;
    padding: 0.3em 0.6em;
    border-radius: 6px;
    white-space: nowrap;
    pointer-events: none;
    border: 1px solid rgba(255,255,255,0.15);
}

.video-progress-marker:hover .marker-tooltip {
    display: block;
}

.video-progress-marker .marker-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: rgba(0,0,0,0.9);
}

/* ==================== CHAPTER SELECTOR ==================== */
.chapter-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 20000;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.chapter-overlay[style*="flex"] {
    display: flex !important;
}

.chapter-panel-inner {
    width: 100%;
    max-width: 520px;
    max-height: 80vh;
    background: var(--dark);
    border-radius: 20px;
    padding: 2em 1.5em;
    border: 1px solid var(--card-border);
    box-shadow: 0 24px 80px rgba(0,0,0,0.7);
    overflow-y: auto;
    margin: auto;
}

.chapter-panel-title {
    font-size: 1.3em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.2em;
}

.chapter-panel-subtitle {
    font-size: 0.82em;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 1.5em;
}

.chapter-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8em;
}

.chapter-chip {
    display: flex;
    align-items: center;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s ease, transform 0.2s ease;
}

.chapter-chip:hover {
    border-color: var(--accent);
    transform: translateX(4px);
}

.chapter-chip:active { transform: scale(0.98); }

.chip-thumb {
    width: 140px;
    height: 90px;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--dark);
}

.chip-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chip-info {
    flex: 1;
    padding: 1em 1.2em 1em 1em;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chip-title {
    font-size: 1.05em;
    font-weight: 500;
    color: var(--text);
    margin: 0;
}

.chip-arrow {
    font-size: 1.2em;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.chapter-chip:hover .chip-arrow {
    color: var(--accent);
}

.chapter-hint {
    text-align: center;
    font-size: 0.72em;
    color: var(--text-muted);
    margin-top: 1.2em;
}

/* ==================== QUIZ OVERLAY ==================== */
.quiz-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 25000;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.quiz-overlay[style*="flex"] {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.quiz-panel-inner {
    width: 92%;
    max-width: 520px;
    background: var(--dark);
    border-radius: 20px;
    border: 1px solid var(--card-border);
    box-shadow: 0 24px 80px rgba(0,0,0,0.7);
    overflow: hidden;
    animation: panelIn 0.35s var(--ease);
}

@keyframes panelIn {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.quiz-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1em 1.2em;
    border-bottom: 1px solid var(--card-border);
}

.quiz-badge {
    display: inline-block;
    background: linear-gradient(90deg, rgba(213, 0, 50, 0.3) 0%, var(--accent) 100%);
    color: #fff;
    font-size: 0.7em;
    font-weight: 700;
    padding: 0.2em 0.8em;
    border-radius: 20px;
    letter-spacing: 1px;
}

.quiz-question-text {
    font-size: 1.02em;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text);
    padding: 1.2em 1.2em 0.8em;
}

.quiz-options {
    padding: 0.5em 1.2em 1.2em;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.quiz-option {
    display: flex;
    align-items: center;
    background: var(--card);
    border: 2px solid var(--card-border);
    border-radius: 12px;
    padding: 0.8em 1em;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease;
    font-size: 0.9em;
    color: var(--text);
    user-select: none;
}

.quiz-option:hover:not(.disabled) {
    border-color: var(--accent);
}

.quiz-option:active:not(.disabled) { transform: scale(0.98); }

.option-marker {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
    font-weight: 600;
    margin-right: 0.8em;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.quiz-option.correct {
    border-color: var(--green);
}

.quiz-option.wrong {
    border-color: var(--red);
}

.quiz-option.disabled {
    opacity: 0.4;
    pointer-events: none;
}

.option-marker.correct-marker {
    border-color: var(--green);
    background: var(--green);
    color: #fff;
}

.option-marker.wrong-marker {
    border-color: var(--red);
    background: var(--red);
    color: #fff;
}

.quiz-result-bar {
    padding: 0 1.2em;
    font-size: 0.9em;
    font-weight: 500;
    min-height: 2em;
    transition: opacity 0.3s ease;
}

.quiz-result-bar.show {
    animation: fadeIn 0.3s ease;
}

.quiz-result-bar.correct-msg {
    color: var(--green);
}

.quiz-result-bar.wrong-msg {
    color: var(--red);
}

.quiz-next-bar {
    padding: 1.2em 1.2em 1.2em;
    display: flex;
    justify-content: center;
}

.quiz-next-btn {
    background: linear-gradient(90deg, rgba(213, 0, 50, 0.3) 0%, var(--accent) 100%);
    color: #fff;
    border: none;
    padding: 0.7em 2em;
    border-radius: 12px;
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.quiz-next-btn:hover {
    background: var(--accent-hover);
}

/* ==================== VIDEO DESCRIPTION SECTION ==================== */
.intro-section {
    padding: 1em 1.2em 1.5em;
}

.intro-card {
    text-align: center;
}

.intro-title {
    font-size: 1em;
    font-weight: 600;
    margin-bottom: 0.3em;
    color: var(--text-muted);
}

.intro-desc {
    font-size: 0.78em;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 400px;
    margin: 0 auto;
}

.intro-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3em;
    margin-top: 1em;
    flex-wrap: wrap;
}

.intro-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2em;
}

.step-num {
    width: 26px;
    height: 26px;
    background: linear-gradient(90deg, rgba(213, 0, 50, 0.3) 0%, var(--accent) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75em;
    font-weight: 700;
}

.step-text {
    font-size: 0.68em;
    color: var(--text-muted);
}

.intro-arrow {
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.intro-tip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3em;
    margin-top: 1em;
    padding: 0.4em 0.8em;
    background: rgba(213, 0, 50, 0.08);
    border-radius: 8px;
    font-size: 0.75em;
    color: var(--text-muted);
}

.tip-badge {
    color: var(--accent);
    font-weight: 600;
    background: rgba(213, 0, 50, 0.12);
    border: 1px solid rgba(213, 0, 50, 0.3);
    border-radius: 4px;
    padding: 0.05em 0.3em;
    font-size: 0.9em;
}

/* ==================== DEMO HINT ==================== */
.demo-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 30000;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.demo-panel {
    width: 90%;
    max-width: 480px;
    background: var(--dark);
    border-radius: 20px;
    border: 1px solid var(--card-border);
    box-shadow: 0 24px 80px rgba(0,0,0,0.7);
    padding: 2em 1.5em;
    text-align: center;
    animation: panelIn 0.35s var(--ease);
}

.demo-icon { font-size: 3em; margin-bottom: 0.5em; }
.demo-title { font-size: 1.2em; font-weight: 700; margin-bottom: 0.8em; }
.demo-desc { font-size: 0.9em; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.5em; }

.demo-close-btn {
    background: linear-gradient(90deg, rgba(213, 0, 50, 0.3) 0%, var(--accent) 100%);
    color: #fff;
    border: none;
    padding: 0.7em 2em;
    border-radius: 12px;
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.demo-close-btn:hover { background: var(--accent-hover); }

/* ==================== HIDE NATIVE VIDEO CONTROLS ==================== */
.modal-video-wrap video {
    pointer-events: none;
}


/* ==================== PLAY/PAUSE BUTTON ==================== */
.play-pause-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.6);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    padding: 0;
    margin: 0;
}

/* 视频区域 hover 时才显示按钮 */
.modal-video-wrap:hover .play-pause-btn {
    opacity: 1;
    visibility: visible;
}

.play-pause-btn:hover {
    background: rgba(0,0,0,0.85);
    border-color: var(--accent);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-pause-btn svg {
    width: 36px;
    height: 36px;
}

/* ==================== FADE IN ==================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 480px) {
    .chip-thumb {
        width: 100px;
        min-width: 100px;
        height: 60px;
    }
    
    .video-card-title {
        font-size: 0.85em;
    }
    
    .chapter-panel-inner {
        width: 95%;
        padding: 1.5em 1em;
    }
    
    .quiz-panel-inner {
        width: 96%;
    }

    /* 手机端视频撑满 */
    .modal-player {
        width: 100% !important;
        max-width: none !important;
    }

    .modal-video-wrap {
        width: 100% !important;
    }

    .modal-video-wrap video {
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
    }
}

