        :root {
            --blood-red: #8a0303;
            --radioactive-green: #2aff00;
            --zombie-flesh: #c4b76b;
            --hazard-yellow: #ffd700;
            --apoc-grey: #3a3a3a;
            --cor-primaria: #4CAF50;
            --cor-secundaria: #FF5722;
            --cor-fundo: #0d0d0d;
            --cor-texto: #e0e0e0;
        }

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

        body {
            font-family: 'Oxanium', sans-serif;
            background: url('images/textura-concreto.png') #0a0a0a; /* Corrected path and extension */
            color: var(--cor-texto);
            display: grid;
            grid-template-rows: auto 1fr auto;
            min-height: 100vh;
            overflow-x: hidden;
        }

        header {
            background: linear-gradient(180deg, rgba(0,0,0,0.95), rgba(20,20,20,0.8)),
                        url('images/textura-metal-riscado.png'); /* Corrected path and extension */
            padding: 1rem;
            width: 100%;
            z-index: 1000;
            border-bottom: 4px solid var(--blood-red);
            box-shadow: 0 0 25px rgba(138,3,3,0.5);
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            align-items: center;
            gap: 1rem;
        }

        .header-marquee {
            grid-column: 1 / -1;
            position: relative;
            overflow: hidden;
            height: 40px;
            border: 2px solid var(--hazard-yellow);
            border-radius: 6px;
            background: linear-gradient(90deg, rgba(42, 255, 0, 0.15), rgba(255, 215, 0, 0.1));
            box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.6);
        }

        .header-marquee-track {
            position: absolute;
            display: flex;
            align-items: center;
            gap: 3rem;
            width: max-content;
            white-space: nowrap;
            animation: marqueeLoop 22s linear infinite;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-family: 'Orbitron', sans-serif;
            font-size: 1rem;
            color: var(--hazard-yellow);
            padding-left: 100%;
        }

        .header-marquee-track span {
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
        }

        @keyframes marqueeLoop {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-100%);
            }
        }

        .header-section {
            padding: 0.5rem;
            text-align: center;
        }

        .cidades {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            clip-path: polygon(0 0, 90% 0, 100% 100%, 10% 100%);
            border-right: 2px dashed var(--hazard-yellow);
            height: 50px;
        }

        .base-militar {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
            border-left: 2px dashed var(--hazard-yellow);
            height: 50px;
        }

        .header-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            color: #2a2a2a;
            text-shadow: 0 0 10px rgba(42,255,0,0.5);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .nav-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.8rem;
            color: var(--cor-primaria);
            text-shadow: 0 0 15px rgba(76,175,80,0.7);
            position: relative;
            padding-left: 60px;
        }

        .logo::before {
            content: '☣';
            position: absolute;
            left: 0;
            top: -5px;
            font-size: 3.5rem;
            color: var(--blood-red);
            animation: flicker 1.5s infinite;
        }

        .btn {
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
            border: 2px solid #4CAF50;
            background: linear-gradient(45deg, #1a1a1a 30%, #0d0d0d 100%);
            box-shadow: 0 0 15px rgba(76,175,80,0.3);
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 2px;
            padding: 0.8rem 1.5rem;
            color: var(--cor-texto);
            cursor: pointer;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(76,175,80,0.5),
                        inset 0 0 10px rgba(255,87,34,0.3);
        }

        .btn-primario {
            background: linear-gradient(45deg, 
                #4CAF50 0%, 
                #2d662f 30%, 
                #1a3d1b 100%
            );
            border: 2px solid #4CAF50;
            animation: btnPulse 2s infinite;
        }

        .cart-btn {
            position: relative;
            background: none;
            border: none;
            color: var(--radioactive-green);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 10px;
        }

        .cart-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background: var(--blood-red);
            color: white;
            border-radius: 50%;
            padding: 3px 8px;
            font-size: 0.8rem;
        }

        .cart-dropdown {
            position: fixed;
            top: 60px;
            right: 20px;
            background: rgba(0,0,0,0.95);
            border: 2px solid var(--hazard-yellow);
            padding: 1rem;
            min-width: 300px;
            max-height: 80vh;
            overflow-y: auto;
            display: none;
            z-index: 1000;
        }

        main {
            margin-top: 20px;
            padding: 2rem;
        }

        .store-grid {
            display: grid;
            grid-template-columns: 250px 1fr;
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .filter-sidebar {
            background: rgba(0,0,0,0.7);
            border-right: 2px dashed var(--radioactive-green);
            padding: 1rem;
            border-radius: 5px;
            height: fit-content;
        }

        .filter-toggle {
            background: var(--cor-primaria);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            cursor: pointer;
            width: 100%;
            text-align: left;
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .filter-content {
            display: block;
        }
        
        @media (max-width: 768px) {
            .filter-content {
                display: none;
            }
            
            .filter-content.active {
                display: block;
            }
        }

        .filter-category {
            color: var(--radioactive-green);
            border-left: 3px solid var(--blood-red);
            padding: 0.5rem;
            margin: 1rem 0;
        }

        .filter-option {
            padding: 0.5rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .filter-option:hover {
            background: rgba(42,255,0,0.1);
            transform: translateX(5px);
        }

        /* Novo Menu Horizontal */
        .products-area {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .category-menu-horizontal {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            padding: 0.5rem;
            background: rgba(0, 0, 0, 0.4);
            border-radius: 8px;
            border-bottom: 2px solid var(--radioactive-green);
        }

        .cat-btn {
            background: transparent;
            border: 2px solid var(--apoc-grey);
            color: var(--cor-texto);
            padding: 0.8rem 1.5rem;
            font-family: 'Orbitron', sans-serif;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            border-radius: 4px;
            white-space: nowrap;
        }

        .cat-btn:hover {
            border-color: var(--radioactive-green);
            background: rgba(42, 255, 0, 0.1);
            color: var(--radioactive-green);
            transform: translateY(-2px);
        }

        .cat-btn.active {
            background: var(--blood-red);
            border-color: var(--blood-red);
            color: white;
            box-shadow: 0 0 10px rgba(138, 3, 3, 0.6);
        }

        .item-gallery {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            padding: 1rem;
        }

        .item-card {
            background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
            border: 3px solid var(--hazard-yellow);
            clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
            padding: 1.5rem;
            position: relative;
            transition: all 0.3s;
            max-width: 100%;
        }

        .vip-locked {
            filter: grayscale(100%) opacity(0.4);
            pointer-events: none;
        }

        .vip-locked::after {
            content: 'BLOQUEADO';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0,0,0,0.7);
            color: #fff;
            padding: 0.3rem 0.6rem;
            font-family: 'Orbitron', sans-serif;
            z-index: 20;
        }

        .item-card:hover {
            transform: rotate(0.5deg) scale(1.02);
            box-shadow: 0 0 15px var(--radioactive-green);
        }

        .item-badge {
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--blood-red);
            padding: 0.3rem 1rem;
            clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
            font-size: 0.8rem;
            text-align: center;
        }
        
        .server-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            padding: 0.3rem 0.6rem;
            font-size: 0.7rem;
            font-weight: bold;
            text-align: center;
            border-radius: 3px;
            z-index: 10;
        }
        
        .server-tarkov {
            background: #ffd700;
            color: #000;
            box-shadow: 0 0 5px rgba(255, 215, 0, 0.7);
        }
        
        .server-dayz {
            background: var(--radioactive-green);
            color: #000;
            box-shadow: 0 0 5px rgba(42, 255, 0, 0.7);
        }

        .server-rivals {
            background: #00bfff;
            color: #000;
            box-shadow: 0 0 5px rgba(0, 191, 255, 0.7);
        }

        .item-image {
            width: 100%;
            height: auto;
            object-fit: contain;
            border: 2px solid var(--blood-red);
            margin-bottom: 1rem;
        }

        .zombie-warning {
            position: relative;
            background: rgba(42, 255, 0, 0.8);
            color: #2a2a2a;
            padding: 10px;
            border-radius: 5px;
            z-index: 10;
            margin-top: 10px;
            text-align: center;
            font-weight: bold;
            font-size: 1.5rem;
            transition: all 0.3s;
        }

        .zombie-warning:hover {
            background: rgba(42, 255, 0, 1);
            transform: translateY(5px) scale(1.05);
            filter: blur(1px);
        }

        .warning-tooltip {
            display: none;
            position: absolute;
            background: rgba(0,0,0,0.95);
            border: 2px dashed var(--zombie-flesh);
            padding: 1rem;
            max-width: 300px;
            width: max-content;
            z-index: 1000;
            top: calc(100% + 10px);
            right: 0;
            color: var(--cor-texto);
            box-shadow: 0 0 15px rgba(196,183,107,0.3);
            font-family: 'Oxanium', sans-serif;
            text-align: left;
        }

        .warning-tooltip.active {
            display: block;
        }

        .warning-tooltip::before {
            content: '';
            position: absolute;
            bottom: 100%;
            right: 10px;
            border-width: 8px;
            border-style: solid;
            border-color: transparent transparent var(--zombie-flesh) transparent;
        }

        @media (max-width: 768px) {
            .zombie-warning {
                font-size: 1rem;
                padding: 8px;
            }

            .warning-tooltip {
                position: static;
                max-width: none;
                width: 100%;
                margin-top: 0.5rem;
                font-size: 0.9rem;
                background: rgba(0, 0, 0, 0.85);
                border: 1px solid var(--zombie-flesh);
                box-shadow: none;
            }
        }

        .price-tag {
            font-family: 'Orbitron', sans-serif;
            color: var(--radioactive-green);
            font-size: 1.5rem;
            text-shadow: 0 0 5px rgba(42,255,0,0.5);
            margin: 0.5rem 0;
        }

        .item-details ul {
            list-style: none;
            margin: 1rem 0;
        }

        .item-details li {
            margin: 0.5rem 0;
            position: relative;
            padding-left: 1.5rem;
        }

        .item-details li::before {
            content: '☣';
            position: absolute;
            left: 0;
        }

        .item-lore {
            font-style: italic;
            color: var(--zombie-flesh);
            margin: 1rem 0;
            padding: 0.5rem;
            background: rgba(0,0,0,0.3);
            border-left: 2px solid var(--blood-red);
        }

        .cta-pulse {
            background: var(--blood-red);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
            clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
            animation: btnPulse 2s infinite;
        }

        .cta-pulse:hover {
            background: #b00404;
            transform: translateY(-2px);
        }

        footer {
            background: linear-gradient(to top, #000, #1a1a1a),
                        url('images/placa-metal.png'); /* Corrected path */
            padding: 4rem 2rem;
            border-top: 3px solid var(--cor-secundaria);
            position: relative;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-section h4 {
            font-family: 'Orbitron', sans-serif;
            color: var(--cor-primaria);
            margin-bottom: 1.5rem;
            position: relative;
        }

        .footer-section h4::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--cor-secundaria);
        }

        .mapa-link {
            display: block;
            padding: 1rem;
            background: rgba(255,255,255,0.05);
            margin: 0.5rem 0;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .mapa-link:hover {
            background: rgba(255,87,34,0.1);
            transform: translateX(10px);
        }

        .warning-bar {
            text-align: center;
            padding: 1rem;
            background: rgba(138,3,3,0.3);
            border-top: 1px solid var(--blood-red);
            border-bottom: 1px solid var(--blood-red);
            margin-top: 2rem;
            font-family: 'Orbitron', sans-serif;
            letter-spacing: 1px;
        }

        .zombie-popup {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #2a2a2a, #1a1a1a);
            border: 3px solid var(--blood-red);
            border-radius: 50%;
            cursor: pointer;
            z-index: 2000;
            transition: all 0.3s;
            box-shadow: 0 0 15px rgba(138,3,3,0.5);
        }

        .zombie-popup:hover {
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(138,3,3,0.8);
        }

        .zombie-popup::before {
            content: 'Z';
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%) rotate(-10deg);
            font-family: 'Bebas Neue', sans-serif;
            font-size: 4rem;
            color: var(--zombie-flesh);
            text-shadow: 0 0 15px rgba(138,3,3,0.8), 0 0 5px rgba(0,0,0,0.9);
        }

        .zombie-form {
            display: none;
            position: fixed;
            bottom: 120px;
            right: 30px;
            width: 350px;
            background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
            border: 3px solid var(--blood-red);
            padding: 1.5rem;
            z-index: 2000;
            box-shadow: 0 0 20px rgba(138,3,3,0.5);
            clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
        }

        .zombie-form h3 {
            font-family: 'Orbitron', sans-serif;
            color: var(--radioactive-green);
            text-shadow: 0 0 5px rgba(42,255,0,0.5);
            font-size: 2rem;
            margin-bottom: 1rem;
            text-align: center;
        }

        .zombie-form p {
            color: var(--zombie-flesh);
            font-family: 'Oxanium', sans-serif;
            margin-bottom: 1rem;
            text-align: center;
            background: rgba(0,0,0,0.5);
            padding: 0.5rem;
            border-left: 2px solid var(--blood-red);
            font-size: 1rem;
        }

        .zombie-form .close-btn {
            position: absolute;
            top: 5px;
            right: 5px;
            background: none;
            border: none;
            color: var(--blood-red);
            font-size: 1.5rem;
            cursor: pointer;
        }

        .item-description-popup {
            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;
        }

        .popup-content {
            background: #1a1a1a;
            padding: 2rem;
            border-radius: 10px;
            max-width: 600px;
            width: 90%;
            color: var(--cor-texto);
            position: relative;
            box-shadow: 0 0 25px rgba(0,0,0,0.5);
        }

        .close-popup {
            position: absolute;
            top: 10px;
            right: 10px;
            background: none;
            border: none;
            color: var(--blood-red);
            font-size: 1.8rem;
            cursor: pointer;
        }

        .finalization-popup {
            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;
        }

        .finalization-items {
            margin-bottom: 1.5rem;
        }

        .finalization-summary {
            margin-bottom: 1.5rem;
        }

        .finalization-form div {
            margin-bottom: 1rem;
        }

        input[type="text"],
        input[type="email"] {
            width: 100%;
            padding: 10px;
            border: 2px solid var(--hazard-yellow);
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--cor-texto);
            margin-bottom: 1rem;
            font-family: 'Oxanium', sans-serif;
        }

        input[type="text"]:focus,
        input[type="email"]:focus {
            outline: none;
            border-color: var(--radioactive-green);
            box-shadow: 0 0 5px var(--radioactive-green);
        }

        .terms-info {
            background: rgba(255, 255, 255, 0.1);
            padding: 10px;
            border-radius: 5px;
            margin-top: 5px;
            color: var(--cor-texto);
            font-size: 0.9rem;
        }

        .remove-btn {
            background: none;
            border: none;
            color: var(--radioactive-green);
            font-size: 1.2rem;
            cursor: pointer;
            padding: 0 5px;
            text-shadow: 0 0 5px rgba(42,255,0,0.5);
            transition: all 0.3s ease;
        }

        .remove-btn:hover {
            transform: scale(1.2);
            text-shadow: 0 0 10px rgba(42,255,0,0.8);
        }

        @media (max-width: 768px) {
            body {
                overflow-x: hidden;
                width: 100%;
                max-width: 100vw;
            }

            .header-marquee {
                height: 32px;
                margin-bottom: 0.5rem;
            }

            .header-marquee-track {
                font-size: 0.85rem;
                gap: 2rem;
            }

            .store-grid {
                grid-template-columns: 1fr;
            }
            
            .item-gallery {
                grid-template-columns: 1fr;
                padding: 0.5rem;
                width: 100%;
                overflow-x: hidden;
            }

            .item-card {
                position: relative;
                width: 100%;
                max-width: 100%;
                margin: 0 auto;
                padding: 1rem;
            }

            .zombie-warning {
                position: relative;
                bottom: auto;
                left: 0;
                background: rgba(42, 255, 0, 0.8);
                color: #2a2a2a;
                padding: 10px;
                border-radius: 5px;
                z-index: 10;
                margin-top: 10px;
                font-size: 1.2rem;
            }
            
            .filter-sidebar {
                width: 100%;
                border-right: none;
                border-bottom: 2px dashed var(--radioactive-green);
                margin-bottom: 1rem;
                padding: 0.5rem;
            }
            
            .filter-toggle {
                display: block;
                padding: 0.8rem;
                font-size: 1rem;
                text-align: center;
            }
            
            main {
                padding: 0.5rem;
                margin-top: 10px;
            }
            
            .header-section {
                display: none;
            }
            
            header {
                grid-template-columns: 1fr;
                padding: 0.5rem;
            }
            
            .nav-container {
                width: 100%;
                justify-content: space-between;
            }
            
            .logo {
                font-size: 2rem;
                padding-left: 40px;
            }
            
            .logo::before {
                font-size: 2.5rem;
                top: -2px;
            }
            
            .btn {
                padding: 0.5rem 0.8rem;
                font-size: 0.8rem;
            }
            
            .item-image {
                max-height: 200px;
                object-fit: contain;
            }
            
            .price-tag {
                font-size: 1.2rem;
            }
            
            .item-details li {
                font-size: 0.9rem;
            }
            
            .item-lore {
                font-size: 0.9rem;
            }
            
            .popup-content {
                width: 95%;
                padding: 1rem;
                max-height: 90vh;
                overflow-y: auto;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }

            /* Responsive Menu for Mobile */
            .category-menu-horizontal {
                overflow-x: auto;
                flex-wrap: nowrap;
                padding-bottom: 0.8rem;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: thin;
            }
            
            .category-menu-horizontal::-webkit-scrollbar {
                height: 4px;
            }
            
            .category-menu-horizontal::-webkit-scrollbar-thumb {
                background: var(--radioactive-green);
                border-radius: 2px;
            }

            .cat-btn {
                flex: 0 0 auto; /* Prevent shrinking */
                font-size: 0.9rem;
                padding: 0.6rem 1rem;
            }
        }

        @media (max-width: 480px) {
            .nav-container {
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.5rem;
            }

            .logo {
                font-size: 1.6rem;
                padding-left: 30px;
                flex-basis: 100%;
                text-align: center;
            }

            .logo::before {
                font-size: 2rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .zombie-form {
                width: 90%;
                left: 5%;
                right: 5%;
            }
        }

        .item-description-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border: 2px solid var(--blood-red);
            border-radius: 10px;
            margin-bottom: 1rem;
        }

        .vip-permanent-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: linear-gradient(45deg, #FFD700, #FFA500);
            color: #000;
            padding: 8px;
            border-radius: 4px;
            margin: 10px 0;
            font-weight: bold;
            font-family: 'Orbitron', sans-serif;
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
            border: 1px solid #FFD700;
            text-shadow: none;
            width: 100%;
        }

        .vip-permanent-badge .infinity-symbol {
            font-size: 1.4rem;
            line-height: 1;
        }

        .vip-permanent-badge .permanent-text {
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .btn-view-chest {
            background: linear-gradient(45deg, #8B4513, #A0522D);
            color: white;
            border: 2px solid #CD853F;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            font-family: 'Orbitron', sans-serif;
            margin-bottom: 10px;
            width: 100%;
            text-transform: uppercase;
            font-size: 0.9rem;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
            box-shadow: 0 4px 6px rgba(0,0,0,0.3);
        }
        
        .btn-view-chest:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(205, 133, 63, 0.4);
            background: linear-gradient(45deg, #A0522D, #8B4513);
            border-color: #FFD700;
        }

        .chest-modal {
            display: none;
            position: fixed;
            z-index: 3000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(5px);
        }
        
        .chest-modal-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .chest-modal-content img {
            max-width: 100%;
            max-height: 80vh;
            border: 3px solid #CD853F;
            border-radius: 10px;
            box-shadow: 0 0 30px rgba(205, 133, 63, 0.3);
            animation: zoomIn 0.3s ease-out;
        }
        
        @keyframes zoomIn {
            from { transform: scale(0.8); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }
        
        .close-chest {
            position: absolute;
            top: -40px;
            right: 0;
            color: #CD853F;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s;
            text-shadow: 0 0 10px rgba(0,0,0,0.5);
            z-index: 3001;
        }
        
        .close-chest:hover {
            color: #FFD700;
        }
