:root {
    --color-black: #050505;
    --color-dark-grey: #111111;
    --color-white: #F0F0F0;
    --color-wiwo-red: #e30613;
    --color-wiwo-red-hover: #c00510;
    --color-accent: #C5A059;
    --color-accent-hover: #E5C079;
    --font-main: 'Mote', Arial, sans-serif;
    --font-serif: 'Blanco', Georgia, serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    overflow: hidden;
    background-color: var(--color-black);
    font-family: var(--font-main);
    color: var(--color-white);
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

canvas {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1 !important;
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    max-width: 300px;
    width: 70%;
    height: auto;
    margin-bottom: 50px;
    animation: fadeIn 1.5s ease-in-out;
    filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.3));
}

.loading-spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 30px;
    border: 2px solid rgba(197, 160, 89, 0.1);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    animation: spin 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.loading-text {
    font-size: 1.1rem;
    color: var(--color-accent);
    letter-spacing: 3px;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

#ui-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: none;
}

#ui-layer.hidden {
    opacity: 0;
    pointer-events: none;
}

#info-panel {
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-left: 2px solid var(--color-accent);
    max-width: 350px;
    pointer-events: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

#info-panel wiwo-headline {
    letter-spacing: 1.5px;
    display: block;
}

#info-panel p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
    color: #ccc;
}

#info-panel strong {
    color: var(--color-accent);
    font-weight: 700;
}

#stats-panel {
    align-self: flex-end;
    background: rgba(5, 5, 5, 0.7);
    padding: 2rem;
    border-right: 2px solid var(--color-accent);
    min-width: 280px;
    pointer-events: auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.stat-label,
#stats-panel wiwo-headline {
    margin-bottom: 0.8rem;
    color: #aaa;
    display: block;
}

.stat-value {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--color-accent);
    margin-bottom: 1.2rem;
    line-height: 1;
}

.progress-bar {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--color-accent);
    width: 0%;
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 0 10px var(--color-accent);
}

#cover-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    isolation: isolate;
    will-change: transform;
    transform: translateZ(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: none;
}

#cover-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.overlay-content {
    display: flex;
    flex-direction: row;
    width: 90%;
    max-width: 1400px;
    height: 80vh;
    background: #050505;
    border: 1px solid #222;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    position: relative;
}

#overlay-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    padding: 20px;
}

#overlay-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

#overlay-info {
    flex: 1;
    color: #fff;
    text-align: left;
    padding: 20px;
    overflow-y: auto;
}

#overlay-title {
    margin-bottom: 30px;
}

#overlay-desc {
    margin-bottom: 40px;
}

#close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 48px;
    cursor: pointer;
    z-index: 21;
    transition: transform 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

#close-btn:hover {
    transform: scale(1.1);
}

#video-close-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    font-size: 48px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

#video-close-btn:hover {
    background: var(--color-accent);
    color: #000;
    transform: scale(1.1);
}

#video-close-btn.hidden {
    visibility: hidden;
}

#interaction-prompt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: auto;
    font-family: 'ReaderPro', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: 1px solid #fff;
    border-radius: 0px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

#interaction-prompt:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: var(--color-accent);
    color: var(--color-accent);
}

#interaction-prompt.hidden {
    display: none;
}

#interaction-prompt::after {
    content: '→';
    font-size: 18px;
    line-height: 1;
}

#mobile-controls {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 160px;
    z-index: 100000;
    display: none;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.joystick-zone {
    width: 160px;
    height: 160px;
    pointer-events: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.joystick-base {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    position: relative;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.joystick-stick {
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 40px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.welcome-content {
    text-align: center;
    max-width: 800px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.welcome-title {
    margin-bottom: 20px;
    line-height: 1.2;
}

.welcome-text {
    margin-bottom: 40px;
    line-height: 1.6;
}

.instruction-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.icon-box {
    margin-bottom: 15px;
}

.instruction-text {
    color: var(--color-accent);
}

wiwo-headline {
    display: block;
}

wiwo-lead-text {
    display: block;
}

wiwo-title {
    display: block;
    color: var(--color-accent);
}

wiwo-logo-wiwo {
    display: inline-block;
}

.welcome-content wiwo-headline {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 20px;
    text-align: center;
}

.welcome-content wiwo-lead-text {
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: 40px;
    line-height: 1.6;
    text-align: center;
    display: block;
}

#overlay-info wiwo-headline {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--color-accent);
    display: inline-block;
    padding-bottom: 15px;
    color: var(--color-white);
    line-height: 1.1;
}

#overlay-info wiwo-lead-text {
    line-height: 1.8;
    margin-bottom: 40px;
    color: #999;
    font-weight: 300;
    display: block;
}

.mobile-only {
    display: none;
}

.desktop-only {
    display: flex;
}

@media (pointer: coarse),
(max-width: 1366px) and (hover: none),
(max-width: 768px) {
    #mobile-controls {
        display: flex;
    }

    #info-panel {
        display: none;
    }

    #ui-layer {
        padding: 1rem;
    }

    #interaction-prompt {
        bottom: 30%;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    #interaction-prompt.hidden {
        display: none;
    }

    .overlay-content {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        width: 95vw;
        height: auto;
        max-height: 90vh;
        border: 1px solid #333;
        left: 50%;
        transform: translateX(-50%);
        align-self: unset;
        background: rgba(0, 0, 0, 0.6);
        padding: 10px 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 30px;
        min-width: auto;
        width: auto;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }

    #stats-panel .stat-label {
        margin-bottom: 2px;
        opacity: 0.7;
    }

    #stats-panel .stat-value {
        font-size: 1.4rem;
        margin-bottom: 0;
    }

    #stats-panel .progress-bar {
        display: none;
    }

    .welcome-title {
        font-size: 2rem;
    }

    .mobile-only {
        display: flex;
    }

    .desktop-only {
        display: none;
    }

    .welcome-content {
        padding: 20px;
        width: 90%;
    }

    .welcome-content wiwo-headline {
        font-size: 2rem;
    }

    .welcome-content wiwo-lead-text {
        font-size: 1rem;
    }
}

/* Achievements */
.achievements {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.4;
    transition: all 0.5s ease;
}

.achievement.unlocked {
    opacity: 1;
}

.achievement-check {
    font-size: 1.2rem;
    color: var(--color-accent);
    width: 20px;
    text-align: center;
}

.achievement-text {
    font-family: var(--font-main);
    font-size: 0.85rem;
    color: #fff;
}

/* Achievement Notification Toast - Welcome Screen Style */
.achievement-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
    padding: 40px 50px;
    border-radius: 0px;
    border: 2px solid var(--color-accent);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 20px rgba(197, 160, 89, 0.3);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-align: center;
    max-width: 500px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.achievement-notification.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.achievement-notification-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 0.6s ease;
    filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.5));
}

.achievement-notification-title {
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.achievement-notification-text {
    font-family: var(--font-main);
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Mobile Overlay Improvements */
@media (max-width: 768px),
(pointer: coarse),
(max-width: 1366px) and (hover: none) {
    #cover-overlay {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .overlay-content {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        padding: 60px 20px 120px 20px !important;
        overflow-y: auto;
    }

    #overlay-image-container {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 300px;
        max-height: 50vh;
        margin-bottom: 20px;
        flex-shrink: 0;
    }

    #overlay-image-container img {
        width: 100%;
        height: auto;
        max-height: 50vh;
        object-fit: contain;
    }

    #overlay-info {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        overflow-y: auto;
        flex-grow: 1;
    }

    #close-btn {
        position: fixed !important;
        top: 10px !important;
        right: 10px !important;
        z-index: 10001 !important;
        width: 44px !important;
        height: 44px !important;
        font-size: 2rem !important;
        background: rgba(197, 160, 89, 0.95) !important;
        border-radius: 50% !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .achievement-notification {
        max-width: 90%;
        padding: 30px 35px;
    }

    .achievement-notification-icon {
        font-size: 3rem;
    }

    .achievement-notification-title {
        font-size: 1.3rem;
    }

    .achievement-notification-text {
        font-size: 1rem;
    }

    #stats-panel .progress-bar {
        display: none;
    }

    .welcome-title {
        font-size: 2rem;
    }

    .mobile-only {
        display: flex;
    }

    .desktop-only {
        display: none;
    }

    .welcome-content {
        padding: 20px;
        width: 90%;
    }

    .welcome-content wiwo-headline {
        font-size: 2rem;
    }

    .welcome-content wiwo-lead-text {
        font-size: 1rem;
    }
}

#welcome-screen,
#first-success-screen,
#achievement-screen,
#light-success-screen,
#five-covers-screen,
#floor-success-screen,
#treasure-screen,
#final-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9990;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#welcome-screen.hidden,
#first-success-screen.hidden,
#achievement-screen.hidden,
#light-success-screen.hidden,
#five-covers-screen.hidden,
#floor-success-screen.hidden,
#treasure-screen.hidden,
#final-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Treasure Screen Buttons */
.treasure-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Mobile Overlay & Treasure Buttons */
@media (max-width: 768px),
(pointer: coarse),
(max-width: 1366px) and (hover: none) {
    .treasure-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .treasure-buttons wiwo-button {
        width: 100%;
    }

    /* Mobile Overlay Improvements */
    #cover-overlay .overlay-content {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        width: 95vw;
        height: auto;
        max-height: 90vh;
        overflow-y: auto;
    }

    #overlay-image-container {
        width: 100%;
        height: auto;
        max-height: 40vh;
        /* Reduced height */
        margin-top: 40px;
        /* Space for close button */
        flex-shrink: 0;
    }

    #overlay-info {
        width: 100%;
        padding: 15px 5px;
        overflow-y: auto;
        flex-grow: 1;
        max-height: calc(50vh - 60px);
    }

    #close-btn {
        position: fixed;
        top: 10px;
        right: 10px;
        z-index: 10001;
        background: rgba(0, 0, 0, 0.6);
        border: 2px solid rgba(255, 255, 255, 0.2);
        width: 44px;
        height: 44px;
    }
}

/* Joystick Styles */
#mobile-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100000;
    display: none;
}

@media (max-width: 768px),
(pointer: coarse),
(max-width: 1366px) and (hover: none) {
    #mobile-controls {
        display: block;
    }
}

.joystick-zone {
    width: 120px;
    height: 120px;
    position: relative;
}

.joystick-base {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(197, 160, 89, 0.5);
    /* Golden border */
    position: relative;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.2);
}

.joystick-stick {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.8);
    /* Golden stick */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Mobile Optimizations for Achievements */
@media (max-width: 768px),
(pointer: coarse),
(max-width: 1366px) and (hover: none) {
    .achievements {
        margin-top: 5px;
        gap: 2px;
        padding-top: 5px;
        max-height: 150px;
        overflow-y: auto;
    }

    .achievement {
        gap: 6px;
        padding: 2px 0;
    }

    .achievement-text {
        font-size: 0.75rem;
        line-height: 1.1;
    }

    .achievement-check {
        font-size: 1rem;
        width: 16px;
    }

    /* Adjust UI layer padding on mobile */
    #ui-layer {
        padding: 15px;
    }
}

.force-visible {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 100001 !important;
    pointer-events: auto !important;
}

/* Treasure screen buttons - side by side on desktop, stacked on mobile */
#treasure-screen wiwo-button {
    margin: 5px;
}

@media (min-width: 769px) {
    #treasure-screen wiwo-button {
        display: inline-block;
        min-width: 180px;
    }
}

@media (max-width: 768px),
(pointer: coarse),
(max-width: 1366px) and (hover: none) {
    #treasure-screen wiwo-button {
        display: block;
        width: 100%;
        margin: 8px 0;
    }

    /* Even more compact achievement tracker on mobile */
    .achievements {
        margin-top: 8px !important;
        gap: 4px !important;
        padding-top: 8px !important;
        max-height: 140px;
    }

    .achievement {
        gap: 6px !important;
        font-size: 10px !important;
        padding: 3px 0;
    }

    .achievement-check {
        font-size: 12px !important;
        width: 14px !important;
    }
}

/* Keyboard focus styling for treasure buttons */
#treasure-bonus-btn:focus,
#treasure-continue-btn:focus {
    outline: 3px solid #C5A059 !important;
    outline-offset: 2px;
}

/* Show only 3 achievements on mobile with scrolling */
@media (max-width: 768px),
(pointer: coarse),
(max-width: 1366px) and (hover: none) {
    .achievements {
        max-height: 75px !important;
        /* 3 items visible */
        overflow-y: auto !important;
        overflow-x: hidden;
        scrollbar-width: thin;
        scrollbar-color: #C5A059 #1a1a1a;
    }

    /* Webkit scrollbar styling */
    .achievements::-webkit-scrollbar {
        width: 4px;
    }

    .achievements::-webkit-scrollbar-track {
        background: #1a1a1a;
    }

    .achievements::-webkit-scrollbar-thumb {
        background: #C5A059;
        border-radius: 2px;
    }
}

/* Mobile Overlay - Perfect Layout (No Overlap) */
@media (max-width: 768px),
(pointer: coarse),
(max-width: 1366px) and (hover: none) {
    #cover-overlay {
        padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
    }

    #cover-overlay .overlay-content {
        flex-direction: column !important;
        padding: 75px 15px 220px 15px !important;
        gap: 20px !important;
        width: 100% !important;
        height: 100vh !important;
        max-height: 100vh !important;
        overflow-y: auto !important;
        justify-content: flex-start !important;
        box-sizing: border-box !important;
    }

    #overlay-image-container {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: 40vh !important;
        min-height: 200px !important;
        margin: 0 0 15px 0 !important;
        padding: 0 !important;
        flex-shrink: 0 !important;
        order: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    #overlay-image-container img {
        width: 100% !important;
        height: auto !important;
        max-height: 40vh !important;
        object-fit: contain !important;
    }

    #overlay-info {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 10px 20px 10px !important;
        overflow-y: visible !important;
        flex-grow: 0 !important;
        flex-shrink: 1 !important;
        max-height: none !important;
        order: 2 !important;
        box-sizing: border-box !important;
    }

    #close-btn {
        position: fixed !important;
        top: max(20px, env(safe-area-inset-top, 20px)) !important;
        right: max(20px, env(safe-area-inset-right, 20px)) !important;
        z-index: 100002 !important;
        background: rgba(197, 160, 89, 0.98) !important;
        border: 2px solid rgba(0, 0, 0, 0.3) !important;
        color: #000 !important;
        width: 54px !important;
        height: 54px !important;
        font-size: 32px !important;
        line-height: 50px !important;
        text-align: center !important;
        border-radius: 50% !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}
