/* ============================================================================
 * AMZL WHS QUEST - GAME STYLES
 * Extracted from main HTML for better organization
 * ============================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

:root {
    --bg-color: #0a0a12;
    --accent-gold: #ffd700;
    --accent-cyan: #00ffff;
    --accent-orange: #ff9900;
}

html, body {
    overflow-x: hidden;
}

body {
    margin: 0; padding: 0;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a12 50%, #000 100%);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    min-height: 100vh;
    font-family: 'Press Start 2P', monospace; color: white; user-select: none;
}

#game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

#game-wrapper {
    position: relative; width: 768px; height: 672px;
    background: linear-gradient(135deg, #0f0f1a 0%, #000 100%);
    border: 4px solid #333;
    border-radius: 24px;
    box-shadow:
        0 0 60px rgba(255, 153, 0, 0.15),
        0 0 120px rgba(0, 255, 255, 0.08),
        inset 0 0 60px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

#game-wrapper::before {
    content: '';
    position: absolute;
    top: -4px; left: -4px; right: -4px; bottom: -4px;
    background: linear-gradient(45deg, #ff9900, #00ffff, #ff00ff, #ff9900);
    background-size: 400% 400%;
    animation: borderGlow 8s ease infinite;
    border-radius: 28px;
    z-index: -1;
    opacity: 0.5;
}

@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

canvas {
    display: block;
    width: 100%;
    height: 100%;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
    font-smooth: never;
}

#crt-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background:
        linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.15) 50%),
        linear-gradient(90deg, rgba(255, 100, 0, 0.03), rgba(0, 255, 100, 0.02), rgba(100, 0, 255, 0.03));
    background-size: 100% 3px, 4px 100%; pointer-events: none; z-index: 900;
    animation: flicker 0.08s infinite, scanline 10s linear infinite;
}

@keyframes scanline {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 0 100%, 0 0; }
}

#vignette {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0) 50%, rgba(0,0,0,0.5) 80%, rgba(0,0,0,0.8) 100%);
    pointer-events: none; z-index: 901; border-radius: 20px;
}

@keyframes flicker {
    0%, 100% { opacity: 0.97; }
    50% { opacity: 1; }
}

#ui-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; display: flex; flex-direction: column;
    justify-content: flex-end; padding: 20px; box-sizing: border-box; z-index: 1000;
}

#dialog-box {
    width: 100%; min-height: 140px;
    background: linear-gradient(180deg, #0a1628 0%, #061020 100%);
    border: 3px solid #3b82f6;
    border-radius: 12px; display: none;
    flex-direction: row; padding: 16px; box-sizing: border-box;
    box-shadow:
        0 0 20px rgba(59, 130, 246, 0.4),
        6px 6px 0px rgba(0,0,0,0.6),
        inset 0 0 30px rgba(59, 130, 246, 0.1);
    pointer-events: auto;
}

#portrait {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a14 100%);
    border: 3px solid #ffd700;
    border-radius: 8px;
    margin-right: 20px; flex-shrink: 0; image-rendering: pixelated;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

#text-content {
    flex-grow: 1; font-size: 13px; line-height: 1.7; color: #f0f0ff;
    font-family: 'Press Start 2P', monospace;
    text-shadow: 2px 2px 4px #000, 0 0 10px rgba(255, 255, 255, 0.1);
    white-space: pre-wrap;
}

#press-space-hint {
    font-size: 10px; color: #ffd700; margin-top: 10px;
    animation: blink 0.8s ease-in-out infinite; display: block;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.gemini-badge {
    font-size: 11px; color: #ffd700; margin-bottom: 8px; display: none;
    text-transform: uppercase; text-shadow: 0 0 10px #ffd700, 0 0 20px rgba(255, 215, 0, 0.5);
    letter-spacing: 2px; font-weight: bold;
}

.loading-dots::after {
    content: ' .';
    animation: dots 1.5s steps(5, end) infinite;
}
@keyframes dots {
    0%, 20% { content: ' .'; }
    40% { content: ' ..'; }
    60% { content: ' ...'; }
    80%, 100% { content: ''; }
}

/* INTRO CONVERSATION CENTERED PORTRAIT WINDOW */
#intro-portrait-window {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(180deg, #0a1628 0%, #061020 100%);
    border: 3px solid #ffd700;
    border-radius: 12px;
    padding: 12px;
    box-shadow:
        0 0 20px rgba(255, 215, 0, 0.6),
        4px 4px 0px rgba(0,0,0,0.8),
        inset 0 0 20px rgba(255, 215, 0, 0.15);
    z-index: 1000;
    width: 70%;
    max-width: 450px;
    max-height: 90%;
    pointer-events: auto;
    animation: intro-window-appear 0.3s ease-out;
    overflow: hidden;
    box-sizing: border-box;
}

@keyframes intro-window-appear {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

#intro-portrait-frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 8px;
}

#intro-portrait {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a14 100%);
    border: 2px solid #ffd700;
    border-radius: 8px;
    image-rendering: pixelated;
    box-shadow:
        0 0 10px rgba(255, 215, 0, 0.4),
        inset 0 0 10px rgba(255, 215, 0, 0.1);
    margin-bottom: 6px;
}

#intro-speaker-name {
    font-size: 10px;
    font-weight: bold;
    color: #ffd700;
    text-shadow:
        2px 2px 4px #000,
        0 0 15px rgba(255, 215, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

#intro-dialog-content {
    display: flex;
    flex-direction: column;
    max-height: 220px;
    overflow: hidden;
}

#intro-text-content {
    flex-grow: 1;
    font-size: 11px;
    line-height: 1.5;
    color: #f0f0ff;
    text-shadow: 1px 1px 2px #000;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    white-space: pre-wrap;
    text-align: center;
    padding: 0 20px;
    word-break: break-word;
    overflow-wrap: break-word;
}

#intro-press-space-hint {
    font-size: 9px;
    color: #ffd700;
    margin-top: 8px;
    animation: blink 0.8s ease-in-out infinite;
    text-align: center;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

#intro-gemini-badge {
    display: none; /* Hide - intro uses dedicated name element */
}

/* Banner hidden as requested */
#slogan-display {
    display: none;
}

@keyframes blink { 50% { opacity: 0; } }

.hud-text {
    position: absolute; top: 12px; right: 12px; color: white;
    text-align: right; text-shadow: 0 0 8px rgba(0,0,0,0.8), 2px 2px 4px black; font-size: 11px;
    font-family: 'Press Start 2P', monospace;
    background: linear-gradient(135deg, rgba(10, 15, 30, 0.95) 0%, rgba(5, 8, 20, 0.98) 100%);
    padding: 10px 14px; border: 2px solid #fbbf24; border-radius: 6px;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.4), inset 0 0 15px rgba(0, 0, 0, 0.6), 0 4px 12px rgba(0, 0, 0, 0.5);
}
.hud-text div:first-child { color: #ef4444; margin-bottom: 6px; letter-spacing: 1px; }
.hud-text div:last-child { color: #22c55e; letter-spacing: 1px; }

#boss-hud {
    position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
    width: 65%; display: none;
    background: linear-gradient(180deg, rgba(40, 10, 10, 0.9) 0%, rgba(20, 5, 5, 0.95) 100%);
    padding: 10px 16px; border-radius: 10px;
    border: 2px solid #dc2626;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.4);
}

.boss-bar-bg {
    width: 100%; height: 14px;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid #444; border-radius: 4px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
}
.boss-bar-fill {
    width: 100%; height: 100%;
    background: linear-gradient(180deg, #ff4444 0%, #cc0000 50%, #aa0000 100%);
    transition: width 0.3s ease-out;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.2);
}
.boss-name {
    color: #ff4444; text-align: center; font-size: 11px; margin-bottom: 6px;
    text-shadow: 2px 2px 4px black, 0 0 10px rgba(255, 0, 0, 0.5);
    letter-spacing: 2px;
}

#ai-status {
    display: none !important;
    position: absolute; top: 10px; left: 10px; font-size: 10px; color: #00ffff;
    background: rgba(0,0,0,0.8); padding: 4px; border: 1px solid #00ffff; pointer-events: none;
    z-index: 2000;
}

/* MOBILE CONTROLS - Hidden by default, shown on touch devices */
#mobile-controls {
    display: none;
    width: 768px;
    padding: 15px 20px;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    background: linear-gradient(180deg, rgba(10, 10, 20, 0.9) 0%, rgba(5, 5, 15, 0.95) 100%);
    border: 3px solid #333;
    border-top: none;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

/* Show on touch/mobile devices */
@media (hover: none) and (pointer: coarse) {
    #mobile-controls {
        display: flex;
    }
}

/* D-PAD CONTAINER */
.dpad-container {
    position: relative;
    width: 120px;
    height: 120px;
}

.dpad-btn {
    position: absolute;
    width: 48px;
    height: 48px;
    background: linear-gradient(145deg, rgba(40, 40, 60, 0.95) 0%, rgba(20, 20, 35, 0.98) 100%);
    border: 3px solid #ffd700;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #ffd700;
    box-shadow:
        0 0 15px rgba(255, 215, 0, 0.3),
        inset 0 0 10px rgba(0, 0, 0, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.5);
    transition: all 0.1s ease;
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;
}

.dpad-btn:active, .dpad-btn.pressed {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.3) 0%, rgba(200, 160, 0, 0.4) 100%);
    transform: scale(0.92);
    box-shadow:
        0 0 25px rgba(255, 215, 0, 0.6),
        inset 0 0 15px rgba(255, 215, 0, 0.3);
}

#dpad-up {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

#dpad-down {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

#dpad-left {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

#dpad-right {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.dpad-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(145deg, #1a1a2e 0%, #0a0a14 100%);
    border: 2px solid #444;
    border-radius: 50%;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
}

/* ACTION BUTTON */
.action-container {
    display: flex;
    align-items: center;
}

#action-btn {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, rgba(255, 50, 50, 0.9) 0%, rgba(180, 30, 30, 0.95) 100%);
    border: 4px solid #ff4444;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Press Start 2P', monospace;
    font-size: 12px;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    box-shadow:
        0 0 20px rgba(255, 68, 68, 0.5),
        inset 0 0 15px rgba(0, 0, 0, 0.3),
        0 6px 12px rgba(0, 0, 0, 0.5);
    transition: all 0.1s ease;
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;
}

#action-btn:active, #action-btn.pressed {
    background: linear-gradient(145deg, rgba(255, 100, 100, 0.95) 0%, rgba(255, 68, 68, 0.98) 100%);
    transform: scale(0.92);
    box-shadow:
        0 0 35px rgba(255, 68, 68, 0.8),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
}

/* CONTROL MODE TOGGLE BUTTON */
#control-mode-toggle {
    position: relative;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: linear-gradient(145deg, rgba(0, 200, 200, 0.9) 0%, rgba(0, 150, 150, 0.95) 100%);
    border: 3px solid #00ffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    box-shadow:
        0 0 15px rgba(0, 255, 255, 0.5),
        inset 0 0 10px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.5);
    transition: all 0.15s ease;
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;
    z-index: 10;
}

#control-mode-toggle .mode-icon {
    font-size: 16px;
    margin-bottom: 2px;
}

#control-mode-toggle .mode-label {
    font-size: 6px;
    letter-spacing: 0.5px;
}

#control-mode-toggle:active, #control-mode-toggle.pressed {
    background: linear-gradient(145deg, rgba(0, 255, 255, 0.95) 0%, rgba(0, 200, 200, 0.98) 100%);
    transform: scale(0.92);
    box-shadow:
        0 0 25px rgba(0, 255, 255, 0.8),
        inset 0 0 15px rgba(255, 255, 255, 0.2);
}

#control-mode-toggle.gyro-active {
    background: linear-gradient(145deg, rgba(200, 100, 255, 0.9) 0%, rgba(150, 50, 200, 0.95) 100%);
    border-color: #cc66ff;
    box-shadow:
        0 0 15px rgba(200, 100, 255, 0.5),
        inset 0 0 10px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.5);
    animation: gyro-pulse 1.5s ease-in-out infinite;
}

@keyframes gyro-pulse {
    0%, 100% { box-shadow: 0 0 15px rgba(200, 100, 255, 0.5), inset 0 0 10px rgba(0, 0, 0, 0.3); }
    50% { box-shadow: 0 0 25px rgba(200, 100, 255, 0.8), inset 0 0 10px rgba(0, 0, 0, 0.3); }
}

/* GYRO INDICATOR - shows tilt direction */
#gyro-indicator {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border: 2px dashed rgba(200, 100, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
}

#gyro-indicator .gyro-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: radial-gradient(circle, #cc66ff 0%, #9933cc 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    box-shadow: 0 0 10px rgba(200, 100, 255, 0.8);
    transition: left 0.05s ease-out, top 0.05s ease-out;
}

.gyro-mode #gyro-indicator {
    display: block;
}

.gyro-mode .dpad-btn {
    opacity: 0.3;
    pointer-events: none;
}

/* AUTO-SHOOT INDICATOR */
#auto-shoot-indicator {
    display: none;
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 7px;
    color: #ff4444;
    text-shadow: 0 0 5px rgba(255, 68, 68, 0.8);
    animation: blink 0.5s ease-in-out infinite;
    white-space: nowrap;
}

.gyro-mode #auto-shoot-indicator {
    display: block;
}

/* Responsive adjustments for mobile */
@media (max-width: 900px) {
    body {
        justify-content: flex-start;
        padding-top: 10px;
    }

    #game-wrapper {
        width: 95vw;
        max-width: 768px;
        height: auto;
        aspect-ratio: 768 / 672;
        border-radius: 16px 16px 0 0;
    }

    #game-wrapper::before {
        border-radius: 20px 20px 0 0;
    }

    #mobile-controls {
        width: 95vw;
        max-width: 768px;
        padding: 12px 20px;
        border-radius: 0 0 16px 16px;
    }

    .dpad-container {
        width: 110px;
        height: 110px;
    }

    .dpad-btn {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .dpad-center {
        width: 30px;
        height: 30px;
    }

    #action-btn {
        width: 70px;
        height: 70px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 5px;
    }

    #game-wrapper {
        width: 100vw;
        border-radius: 0;
    }

    #game-wrapper::before {
        border-radius: 0;
    }

    #mobile-controls {
        width: 100vw;
        max-width: none;
        padding: 10px 15px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .dpad-container {
        width: 100px;
        height: 100px;
    }

    .dpad-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
        border-width: 2px;
    }

    .dpad-center {
        width: 26px;
        height: 26px;
    }

    #action-btn {
        width: 60px;
        height: 60px;
        font-size: 10px;
        border-width: 3px;
    }

    /* Intro portrait window - constrain to game area */
    #intro-portrait-window {
        max-width: 90%;
        max-height: 85%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #intro-dialog-content {
        max-height: 150px;
        overflow-y: auto;
    }
}

/* Extra small screens (Galaxy Fold folded, narrow phones) */
@media (max-width: 380px) {
    /* Intro portrait window - optimized for Fold5, constrained to game area */
    #intro-portrait-window {
        max-width: 95%;
        width: calc(100% - 16px);
        max-height: 80%;
        padding: 10px;
        border-width: 2px;
        border-radius: 8px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #intro-portrait {
        width: 64px;
        height: 64px;
        border-width: 2px;
        margin-bottom: 6px;
    }

    #intro-speaker-name {
        font-size: 10px;
        letter-spacing: 0.5px;
    }

    #intro-portrait-frame {
        margin-bottom: 10px;
    }

    #intro-text-content {
        font-size: 9px;
        line-height: 1.4;
        padding: 0 4px;
        word-break: break-word;
        hyphens: auto;
    }

    #intro-dialog-content {
        min-height: 70px;
        max-height: 120px;
        overflow-y: auto;
    }

    #intro-press-space-hint {
        font-size: 8px;
        margin-top: 8px;
    }

    /* Bottom dialog box - Fold5 optimized */
    #dialog-box {
        min-height: 90px;
        padding: 8px;
        border-width: 2px;
        flex-direction: column;
        align-items: center;
    }

    #portrait {
        width: 40px;
        height: 40px;
        margin-right: 0;
        margin-bottom: 6px;
        border-width: 2px;
    }

    #text-content {
        font-size: 8px;
        line-height: 1.4;
        text-align: center;
    }

    #press-space-hint {
        font-size: 7px;
        margin-top: 5px;
    }

    /* HUD elements */
    .hud-text {
        font-size: 7px;
        padding: 5px 6px;
    }

    .boss-name {
        font-size: 7px;
    }

    #boss-hud {
        width: 75%;
        padding: 6px 10px;
    }

    /* Mobile controls for narrow screens */
    .dpad-container {
        width: 80px;
        height: 80px;
    }

    .dpad-btn {
        width: 30px;
        height: 30px;
        font-size: 11px;
        border-width: 2px;
    }

    .dpad-center {
        width: 20px;
        height: 20px;
    }

    #action-btn {
        width: 48px;
        height: 48px;
        font-size: 8px;
        border-width: 2px;
    }

    #control-mode-toggle {
        width: 42px;
        height: 42px;
        border-width: 2px;
    }

    #control-mode-toggle .mode-icon {
        font-size: 12px;
    }

    #control-mode-toggle .mode-label {
        font-size: 5px;
    }

    #gyro-indicator {
        width: 70px;
        height: 70px;
    }

    #auto-shoot-indicator {
        font-size: 6px;
        bottom: -20px;
    }

    #mobile-controls {
        padding: 6px 8px;
    }
}

/* Very narrow screens (Galaxy Fold5 folded ~280px) */
@media (max-width: 300px) {
    #intro-portrait-window {
        padding: 6px;
        max-height: 75%;
        border-width: 2px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #intro-portrait {
        width: 48px;
        height: 48px;
    }

    #intro-speaker-name {
        font-size: 8px;
    }

    #intro-text-content {
        font-size: 7px;
        line-height: 1.3;
    }

    #intro-dialog-content {
        max-height: 100px;
    }

    #intro-press-space-hint {
        font-size: 6px;
    }

    #dialog-box {
        min-height: 80px;
        padding: 6px;
    }

    #portrait {
        width: 32px;
        height: 32px;
    }

    #text-content {
        font-size: 7px;
    }

    #press-space-hint {
        font-size: 6px;
    }

    .hud-text {
        font-size: 6px;
        padding: 4px 5px;
    }

    .boss-name {
        font-size: 6px;
    }

    .dpad-container {
        width: 70px;
        height: 70px;
    }

    .dpad-btn {
        width: 26px;
        height: 26px;
        font-size: 9px;
    }

    .dpad-center {
        width: 18px;
        height: 18px;
    }

    #action-btn {
        width: 42px;
        height: 42px;
        font-size: 7px;
    }

    #control-mode-toggle {
        width: 36px;
        height: 36px;
    }

    #control-mode-toggle .mode-icon {
        font-size: 10px;
    }

    #control-mode-toggle .mode-label {
        display: none;
    }

    #gyro-indicator {
        width: 60px;
        height: 60px;
    }

    #auto-shoot-indicator {
        font-size: 5px;
        bottom: -18px;
    }

    #mobile-controls {
        padding: 5px 6px;
    }
}
