.datapack-modal-content { background: #0f1115; border: 1px solid var(--border-color); width: 90%; max-width: 450px; border-radius: 12px; position: relative; padding: 25px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8); animation: modalSlideUp 0.3s ease-out; } .modal-header { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); } .modal-icon-big { width: 80px; height: 80px; background: rgba(0, 0, 0, 0.4); border: 1px solid var(--border-color); border-radius: 8px; display: flex; align-items: center; justify-content: center; } .modal-icon-big img { width: 60px; } .modal-title-group h3 { margin: 0; font-family: "Orbitron", sans-serif; color: var(--primary-color); font-size: 1.3rem; } .modal-raw-id { font-size: 0.75rem; color: var(--text-secondary); opacity: 0.6; } .details-description { font-size: 0.9rem; line-height: 1.5; color: #ccc; margin-bottom: 20px; font-style: italic; } .details-section h4 { font-size: 0.8rem; text-transform: uppercase; color: var(--text-secondary); letter-spacing: 1px; margin-bottom: 10px; border-left: 3px solid var(--primary-color); padding-left: 10px; } .stat-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.03); } .stat-label { color: #888; font-size: 0.85rem; } .stat-value { color: #fff; font-family: monospace; } @keyframes modalSlideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } } .loot-list-full { display: flex; flex-direction: column; gap: 10px; background: rgba(0, 0, 0, 0.2); padding: 12px; border-radius: 8px; } .loot-detail-item { display: flex; align-items: center; gap: 12px; padding: 8px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); } .loot-detail-item:last-child { border-bottom: none; } .loot-item-icon { width: 40px; height: 40px; background: rgba(255, 255, 255, 0.05); border-radius: 6px; display: flex; align-items: center; justify-content: center; } .loot-item-icon img { width: 32px; height: 32px; object-fit: contain; } .loot-item-info { display: flex; flex-direction: column; } .loot-item-name { font-weight: 600; color: #fff; font-size: 14px; } .loot-item-meta { font-size: 12px; color: #aaa; } .fallback-mini { color: #444; font-weight: bold; }