:root{--primary-color: #e82127;--secondary-color: #2c3038;--background: #1a1d23;--panel-bg: #242831;--text-color: #ffffff;--text-muted: #d1d5db;--border-color: #374151;--success-color: #10b981;--danger-color: #ef4444;--ai-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);--featured-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);--card-hover-glow: 0 8px 32px rgba(232, 33, 39, .3);--font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;--font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif}*{box-sizing:border-box;margin:0;padding:0}body{font-family:var(--font-sans);background-color:var(--background);color:var(--text-color);overflow:hidden;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#app{display:flex;flex-direction:column;height:100vh}.app-header{background-color:var(--secondary-color);padding:1rem 2rem;border-bottom:2px solid var(--primary-color);box-shadow:0 4px 12px #00000026}.header-content{display:flex;justify-content:space-between;align-items:center;gap:2rem}.header-title h1{font-size:1.5rem;font-weight:700;margin-bottom:.25rem;letter-spacing:-.02em}.header-menu-bar{display:flex;gap:.5rem;align-items:center;flex:1;justify-content:center}.menu-dropdown{position:relative}.menu-btn{display:flex;align-items:center;gap:.375rem;padding:.5rem 1rem;background:var(--secondary-color);border:1px solid var(--border-color);border-radius:8px;color:var(--text-color);font-size:.875rem;font-weight:500;cursor:pointer;transition:all .2s ease;white-space:nowrap}.menu-btn:hover{background:#ffffff1a;border-color:var(--primary-color);transform:translateY(-1px)}.menu-btn:disabled,.menu-btn.disabled{opacity:.5;cursor:not-allowed;background:var(--secondary-color);border-color:var(--border-color)}.menu-btn:disabled:hover,.menu-btn.disabled:hover{background:var(--secondary-color);border-color:var(--border-color);transform:none}.menu-btn-special{background:var(--ai-gradient);border-color:transparent;color:#fff;position:relative;overflow:hidden}.menu-btn-special:before{content:"";position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.3),transparent);transition:left .5s}.menu-btn-special:hover:before{left:100%}.menu-btn-special:hover{transform:translateY(-1px) scale(1.05);box-shadow:0 4px 20px #667eea80}.menu-btn-featured{background:var(--featured-gradient);border-color:transparent;color:#fff;position:relative;overflow:hidden}.menu-btn-featured:before{content:"";position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.3),transparent);transition:left .5s}.menu-btn-featured:hover:before{left:100%}.menu-btn-featured:hover{transform:translateY(-1px) scale(1.05);box-shadow:0 4px 20px #f5576c80}.menu-icon{font-size:1rem}.menu-caret{font-size:.625rem;opacity:.7}.menu-content{position:absolute;top:100%;left:0;margin-top:.5rem;min-width:220px;background-color:var(--panel-bg);border:1px solid var(--border-color);border-radius:12px;box-shadow:0 8px 32px #00000080;z-index:1001;opacity:0;visibility:hidden;transform:translateY(-10px);transition:all .2s ease;overflow:hidden}.menu-dropdown:hover .menu-content{opacity:1;visibility:visible;transform:translateY(0)}.menu-item{display:flex;align-items:center;gap:.75rem;width:100%;padding:.875rem 1.25rem;background:none;border:none;color:var(--text-color);font-size:.875rem;font-weight:500;text-align:left;cursor:pointer;transition:background-color .15s ease}.menu-item:first-child{border-radius:12px 12px 0 0}.menu-item:last-child{border-radius:0 0 12px 12px}.menu-item:hover{background-color:var(--secondary-color)}.menu-item-danger:hover{background-color:var(--danger-color);color:#fff}.menu-divider{height:1px;background-color:var(--border-color);margin:.25rem 0}@media(max-width:1024px){.header-menu-bar{flex-wrap:wrap;justify-content:flex-start}}@media(max-width:768px){.header-menu-bar{display:none}}.subtitle{font-size:.875rem;font-weight:500;color:var(--text-muted);letter-spacing:.02em}.app-container{display:flex;flex:1;overflow:hidden}.sidebar,.right-panel{width:280px;background-color:var(--panel-bg);overflow-y:auto;border-right:1px solid var(--border-color);box-shadow:2px 0 12px #0000001a}.right-panel{display:none;border-right:none;border-left:1px solid var(--border-color)}.panel{padding:1.25rem;border-bottom:1px solid var(--border-color)}.panel.hidden{display:none}.panel h2{font-size:1rem;font-weight:600;margin-bottom:1rem;color:var(--primary-color);letter-spacing:-.01em}.canvas-container{flex:1;display:flex;align-items:center;justify-content:center;position:relative;background-color:var(--background);background-image:linear-gradient(45deg,#2a2a2a 25%,transparent 25%),linear-gradient(-45deg,#2a2a2a 25%,transparent 25%),linear-gradient(45deg,transparent 75%,#2a2a2a 75%),linear-gradient(-45deg,transparent 75%,#2a2a2a 75%);background-size:20px 20px;background-position:0 0,0 10px,10px -10px,-10px 0px}#main-canvas{border:2px solid var(--border-color);background-color:transparent;cursor:crosshair;max-width:100%;max-height:100%}.btn{width:100%;padding:.75rem;margin-bottom:.5rem;background-color:var(--secondary-color);color:var(--text-color);border:1px solid var(--border-color);border-radius:8px;cursor:pointer;font-size:.875rem;font-weight:500;transition:all .2s ease;letter-spacing:.01em}.btn:hover{background-color:#3a3f47;transform:translateY(-1px);box-shadow:0 4px 12px #0003}.btn-primary{background-color:var(--primary-color);border-color:var(--primary-color)}.btn-primary:hover{background-color:#c71e24}.btn-success{background-color:var(--success-color);border-color:var(--success-color)}.btn-success:hover{background-color:#45a049}.btn-danger{background-color:var(--danger-color);border-color:var(--danger-color)}.btn-danger:hover{background-color:#da190b}.tool-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:.5rem;margin-bottom:1rem}.tool-btn{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.25rem;padding:.5rem;background-color:var(--secondary-color);border:2px solid var(--border-color);border-radius:8px;cursor:pointer;transition:all .2s}.tool-btn .tool-icon{font-size:1.5rem;line-height:1}.tool-btn .tool-label{font-size:.65rem;color:#fff;text-transform:uppercase;letter-spacing:.5px}.tool-btn:hover{background-color:#4a4a4a;transform:translateY(-1px)}.tool-btn.active{border-color:var(--primary-color);background-color:#3a3a3a;box-shadow:0 0 8px #e821274d}.tool-btn.active .tool-label{color:var(--primary-color)}.brush-style-section{margin-bottom:1rem}.brush-style-section label{display:block;margin-bottom:.5rem;font-size:.875rem}.brush-style-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:.375rem}.control-group{margin-bottom:1.5rem}.control-label{display:flex;justify-content:space-between;align-items:center;margin-bottom:.5rem;font-size:.875rem;font-weight:500}.label-text{color:var(--text-color);font-weight:600}.label-hint{font-size:.75rem;color:var(--text-muted);font-weight:400}.label-value{font-size:.75rem;color:var(--primary-color);font-weight:600;min-width:45px;text-align:right}.control-hint{display:block;margin-top:.375rem;font-size:.7rem;color:var(--text-muted);font-style:italic}.color-input{width:100%;height:50px;border:2px solid var(--border-color);border-radius:8px;cursor:pointer;background:none;padding:4px;transition:all .2s ease}.color-input:hover{border-color:var(--primary-color);box-shadow:0 0 12px #e821274d}.range-input{width:100%;height:6px;background:var(--border-color);border-radius:3px;outline:none;cursor:pointer;-webkit-appearance:none;appearance:none}.range-input::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:18px;height:18px;background:var(--primary-color);border-radius:50%;cursor:pointer;transition:all .2s;box-shadow:0 2px 4px #0003}.range-input::-webkit-slider-thumb:hover{transform:scale(1.2);box-shadow:0 0 12px #e8212799}.range-input::-moz-range-thumb{width:18px;height:18px;background:var(--primary-color);border-radius:50%;border:none;cursor:pointer;transition:all .2s;box-shadow:0 2px 4px #0003}.range-input::-moz-range-thumb:hover{transform:scale(1.2);box-shadow:0 0 12px #e8212799}.select-input{width:100%;padding:.75rem 1rem;background-color:var(--secondary-color);color:var(--text-color);border:1px solid var(--border-color);border-radius:8px;font-size:.875rem;font-weight:500;cursor:pointer;transition:all .2s ease}.select-input:hover{background-color:#3a3f47;border-color:var(--primary-color)}.select-input:focus{outline:none;border-color:var(--primary-color);box-shadow:0 0 0 3px #e821271a}.texture-preview{display:flex;flex-direction:column;align-items:center;gap:.5rem;padding:1rem;background-color:var(--background);border:2px solid var(--primary-color);border-radius:10px;box-shadow:0 0 16px #e821274d}.texture-preview img{width:80px;height:80px;border-radius:6px;object-fit:cover;border:1px solid var(--border-color)}.texture-preview .texture-name{font-size:.75rem;font-weight:600;color:var(--text-color);text-align:center;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.texture-preview-empty{display:flex;flex-direction:column;align-items:center;gap:.5rem;padding:2rem 1rem;background-color:var(--background);border:2px dashed var(--border-color);border-radius:10px;opacity:.6}.texture-preview-empty .empty-icon{font-size:2rem;opacity:.5}.texture-preview-empty .empty-text{font-size:.75rem;color:var(--text-muted);text-align:center}.status-display{display:flex;align-items:center;gap:.75rem;padding:.875rem;background-color:var(--background);border-radius:8px;border:1px solid var(--border-color)}.status-icon{font-size:1.25rem}.status-text{flex:1;font-size:.875rem;font-weight:500;color:var(--text-color)}.panel-toolbox,.panel-shared-controls,.panel-pencil-settings,.panel-texture-brush-settings,.panel-text-settings{border-bottom:2px solid var(--border-color)}.texture-selection-section{margin-bottom:1.5rem}.btn-texture-select{width:100%;padding:0;background:var(--secondary-color);border:2px solid var(--border-color);border-radius:12px;cursor:pointer;transition:all .3s ease;overflow:hidden}.btn-texture-select:hover{border-color:var(--primary-color);transform:translateY(-2px);box-shadow:0 8px 24px #e821274d}.texture-select-content{display:flex;align-items:center;justify-content:center;min-height:120px;padding:1rem}.texture-preview-large{width:100%;height:120px;border-radius:8px;background-size:cover;background-position:center;background-repeat:no-repeat}.texture-select-placeholder{display:flex;flex-direction:column;align-items:center;gap:.75rem;text-align:center;padding:1rem}.texture-select-icon{font-size:3rem;line-height:1;filter:drop-shadow(0 2px 4px rgba(0,0,0,.3))}.texture-select-text{display:flex;flex-direction:column;gap:.25rem}.texture-select-text strong{font-size:1.1rem;color:var(--text-color);font-weight:600}.texture-select-hint{font-size:.875rem;color:var(--text-muted);font-weight:400}.texture-brush-tips{margin-top:1.5rem;padding:1rem;background:#e821271a;border-left:3px solid var(--primary-color);border-radius:6px}.tip-text{font-size:.875rem;line-height:1.5;color:var(--text-muted);margin:0}.panel-status{margin-top:auto;border-top:2px solid var(--primary-color)}.brush-style-btn{display:flex;flex-direction:column;align-items:center;gap:.25rem;padding:.5rem .25rem;background-color:var(--secondary-color);border:2px solid var(--border-color);border-radius:6px;font-size:.6rem;color:var(--text-secondary);cursor:pointer;transition:all .2s}.brush-style-btn:hover{background-color:#4a4a4a}.brush-style-btn.active{border-color:var(--primary-color);background-color:#3a3a3a;color:var(--text-color)}.style-preview{width:20px;height:20px;border-radius:50%}.style-normal{background:var(--text-color)}.style-soft{background:radial-gradient(circle,var(--text-color) 0%,transparent 70%)}.style-splatter{position:relative;background:transparent}.style-splatter:before,.style-splatter:after{content:"";position:absolute;background:var(--text-color);border-radius:50%}.style-splatter:before{width:8px;height:8px;top:2px;left:6px}.style-splatter:after{width:5px;height:5px;bottom:4px;right:2px}.opacity-section{margin-bottom:1rem}.opacity-section label{display:block;margin-bottom:.5rem;font-size:.875rem}#brush-opacity{width:100%}.color-picker-section,.brush-size-section,.ppf-texture-section{margin-bottom:1rem}.color-picker-section label,.brush-size-section label,.ppf-texture-section label{display:block;margin-bottom:.5rem;font-size:.875rem}#color-picker{width:100%;height:40px;border:1px solid var(--border-color);border-radius:4px;cursor:pointer}#brush-size{width:100%}.ppf-texture-select{width:100%;padding:.625rem .75rem;background-color:var(--secondary-color);color:var(--text-color);border:1px solid var(--border-color);border-radius:8px;font-size:.875rem;font-weight:500;cursor:pointer;transition:all .2s ease}.ppf-texture-select:hover{background-color:#3a3f47;border-color:var(--primary-color)}.ppf-texture-select:focus{outline:none;border-color:var(--primary-color);box-shadow:0 0 0 3px #e821271a}.ppf-hint{font-size:.7rem;color:#888;margin-top:.5rem;font-style:italic}.text-controls-section{margin:1.5rem 0;padding:1rem;background-color:#ffffff0d;border-radius:8px;border:1px solid var(--border-color)}.text-controls-section h3{margin:0 0 1rem;font-size:1rem;color:var(--text-color)}.text-font-section,.text-size-section,.text-style-section{margin-bottom:1rem}.text-font-section label,.text-size-section label,.text-style-section label{display:block;margin-bottom:.5rem;font-size:.875rem}.text-font-select{width:100%;padding:.625rem .75rem;background-color:var(--secondary-color);color:var(--text-color);border:1px solid var(--border-color);border-radius:8px;font-size:.875rem;font-weight:500;cursor:pointer;transition:all .2s ease}.text-font-select:hover{background-color:#3a3f47;border-color:var(--primary-color)}.text-font-select:focus{outline:none;border-color:var(--primary-color);box-shadow:0 0 0 3px #e821271a}#text-size{width:100%}.text-style-buttons{display:flex;gap:.5rem}.text-style-btn{flex:1;padding:.5rem;background-color:var(--secondary-color);color:var(--text-color);border:1px solid var(--border-color);border-radius:4px;font-size:1.25rem;cursor:pointer;transition:all .2s ease}.text-style-btn:hover{background-color:#3a3a3a;transform:translateY(-2px)}.text-style-btn.active{background-color:var(--primary-color);border-color:var(--primary-color);color:#fff}.modal{display:none;position:fixed;z-index:1000;left:0;top:0;width:100%;height:100%;background-color:#000000d9;animation:fadeIn .2s ease-in}.modal.show{display:flex;align-items:center;justify-content:center}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.modal-content{background-color:var(--panel-bg);border:2px solid var(--primary-color);border-radius:16px;width:90%;max-width:600px;max-height:80vh;overflow:hidden;display:flex;flex-direction:column;animation:slideIn .3s ease-out;box-shadow:0 20px 60px #00000080}@keyframes slideIn{0%{transform:translateY(-50px);opacity:0}to{transform:translateY(0);opacity:1}}.modal-header{display:flex;justify-content:space-between;align-items:center;padding:1.5rem;border-bottom:1px solid var(--border-color);background-color:var(--secondary-color)}.modal-header h2{margin:0;color:var(--primary-color);font-size:1.25rem;font-weight:600;letter-spacing:-.02em}.modal-close{background:none;border:none;color:var(--text-color);font-size:2rem;cursor:pointer;padding:0;width:40px;height:40px;display:flex;align-items:center;justify-content:center;border-radius:4px;transition:all .2s}.modal-close:hover{background-color:var(--danger-color);transform:rotate(90deg)}.modal-body{padding:1.5rem;overflow-y:auto}.modal-body #template-list{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;margin-top:1rem}#template-list,#texture-list{min-height:100px;margin-bottom:1rem}#texture-list{display:grid;grid-template-columns:repeat(2,1fr);gap:.75rem}#texture-list .texture-grid{display:contents}.panel-hint{font-size:.75rem;color:#888;margin-bottom:.75rem}.section-info{font-size:.75rem;color:var(--success-color);margin-top:.5rem;padding:.5rem;background:#4caf501a;border-radius:4px;text-align:center}.loading-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background-color:#000000b3;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);display:flex;align-items:center;justify-content:center;z-index:9999;opacity:1;transition:opacity .2s ease-in-out}.loading-overlay.hidden{opacity:0;pointer-events:none}.loading-overlay-content{display:flex;flex-direction:column;align-items:center;gap:1rem;padding:2rem;background-color:var(--panel-bg);border-radius:12px;border:2px solid var(--primary-color);box-shadow:0 10px 40px #00000080}.loading-spinner-large{width:48px;height:48px;border:4px solid rgba(232,33,39,.2);border-radius:50%;border-top-color:var(--primary-color);animation:spin .8s linear infinite}.loading-overlay-text{color:var(--text-color);font-size:1rem;font-weight:500}.color-modal-content{max-width:500px}#color-picker-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;margin-top:1rem}.color-option{display:flex;flex-direction:column;align-items:center;padding:1rem;background-color:var(--secondary-color);border:3px solid transparent;border-radius:8px;cursor:pointer;transition:all .2s}.color-option:hover{border-color:var(--primary-color);transform:translateY(-2px);box-shadow:0 4px 8px #e821274d}.color-option-swatch{width:80px;height:80px;border-radius:50%;margin-bottom:.75rem;border:2px solid var(--border-color);box-shadow:0 2px 8px #0000004d}.color-option-name{font-size:.875rem;text-align:center;font-weight:500}.texture-section{margin-bottom:1rem}.texture-section-label{display:block;font-size:.75rem;color:var(--text-secondary);text-transform:uppercase;letter-spacing:.5px;margin-bottom:.5rem;padding-bottom:.25rem;border-bottom:1px solid var(--border-color)}.texture-item{padding:.5rem;background-color:var(--secondary-color);border:2px solid var(--border-color);border-radius:8px;cursor:pointer;transition:all .2s ease;display:flex;flex-direction:column;align-items:center;gap:.25rem;position:relative}.texture-item:hover{background-color:#3a3f47;transform:translateY(-2px);box-shadow:0 4px 12px #0003}.texture-item.selected{border-color:var(--primary-color);background-color:#3a3f47;box-shadow:0 0 16px #e8212780}.texture-thumbnail{width:64px;height:64px;border-radius:4px;border:1px solid var(--border-color);object-fit:cover}.texture-name{font-size:.7rem;font-weight:500;text-align:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.remove-texture-btn{position:absolute;top:2px;right:2px;width:18px;height:18px;background:var(--danger-color);border:none;border-radius:50%;color:#fff;font-size:12px;line-height:1;cursor:pointer;opacity:0;transition:opacity .2s}.texture-item:hover .remove-texture-btn{opacity:1}.remove-texture-btn:hover{background:#da190b}.texture-badge{position:absolute;bottom:22px;right:2px;font-size:10px;background:#0009;border-radius:3px;padding:1px 3px;line-height:1}.community-badge{background:#3b82f6cc}.template-item{padding:.75rem;margin-bottom:.5rem;background-color:var(--secondary-color);border:1px solid var(--border-color);border-radius:12px;cursor:pointer;transition:all .2s ease;display:flex;flex-direction:column;align-items:stretch}.template-info{display:flex;flex-direction:column;gap:.5rem}.template-name{font-size:.875rem;font-weight:600}.template-thumbnail{width:100%;height:auto;border-radius:8px;border:1px solid var(--border-color);object-fit:cover}.template-item:hover{background-color:#3a3f47;transform:translateY(-2px);box-shadow:0 4px 12px #0003}.template-item.active{border-color:var(--success-color);background-color:#10b9811a;box-shadow:0 0 16px #10b9814d}#info-panel p{margin-bottom:.5rem;font-size:.875rem}#info-panel span{color:var(--primary-color);font-weight:600}.help-text{margin-top:1rem;padding-top:1rem;border-top:1px solid var(--border-color);font-size:.75rem;color:#aaa}.help-text ul{margin-top:.5rem;padding-left:1.25rem}.help-text li{margin-bottom:.25rem}.mobile-actions-fab{display:none;position:fixed;bottom:20px;right:20px;width:56px;height:56px;border-radius:50%;background:var(--primary-color);color:#fff;border:none;font-size:1.5rem;box-shadow:0 4px 12px #0006;cursor:pointer;z-index:999;transition:all .2s}.mobile-actions-fab:hover{transform:scale(1.1);box-shadow:0 6px 16px #e8212799}@media(max-width:1200px){.mobile-actions-fab{display:flex;align-items:center;justify-content:center}}.texture-scale-fab{display:none;position:fixed;bottom:86px;right:20px;width:56px;height:56px;border-radius:50%;background:var(--secondary-color);color:#fff;border:2px solid var(--border-color);font-size:1.5rem;box-shadow:0 4px 12px #0006;cursor:pointer;z-index:998;transition:all .2s}.texture-scale-fab:hover{transform:scale(1.1);border-color:var(--primary-color);box-shadow:0 6px 16px #e8212766}.texture-scale-fab.active{background:var(--primary-color);border-color:var(--primary-color)}@media(max-width:1200px){.texture-scale-fab{display:flex;align-items:center;justify-content:center}}.texture-scale-modal{background:#0006}.texture-scale-modal .texture-scale-content{width:90%;max-width:300px;background:var(--panel-bg);border-radius:12px;padding:1.5rem;box-shadow:0 8px 24px #00000080}.texture-scale-content h2{font-size:1.125rem;margin-bottom:1.25rem;color:var(--text-color);text-align:center}.texture-scale-control{display:flex;flex-direction:column;gap:1rem;margin-bottom:1.5rem}.texture-scale-control input[type=range]{width:100%;height:6px;background:var(--border-color);border-radius:3px;outline:none;cursor:pointer;-webkit-appearance:none;appearance:none}.texture-scale-control input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:24px;height:24px;background:var(--primary-color);border-radius:50%;cursor:pointer;transition:all .2s}.texture-scale-control input[type=range]::-webkit-slider-thumb:hover{transform:scale(1.2);box-shadow:0 0 8px #e8212780}.texture-scale-control input[type=range]::-moz-range-thumb{width:24px;height:24px;background:var(--primary-color);border-radius:50%;border:none;cursor:pointer;transition:all .2s}.texture-scale-control input[type=range]::-moz-range-thumb:hover{transform:scale(1.2);box-shadow:0 0 8px #e8212780}.texture-scale-value{font-size:1.25rem;font-weight:600;color:var(--primary-color);text-align:center}.texture-scale-modal .modal-footer{display:flex;justify-content:center}.texture-scale-modal .modal-footer .btn{min-width:120px}.mobile-actions-modal .mobile-actions-content{width:90%;max-width:400px;max-height:85vh;overflow-y:auto}.mobile-tools-section{margin-bottom:1.5rem;padding-bottom:1rem;border-bottom:1px solid var(--border-color)}.mobile-tools-section h3{font-size:1rem;margin-bottom:.75rem;color:var(--primary-color)}.mobile-controls-section{margin-bottom:1.5rem;padding-bottom:1rem;border-bottom:1px solid var(--border-color)}.mobile-controls-section h3{font-size:1rem;margin-bottom:.75rem;color:var(--primary-color)}.mobile-control{margin-bottom:1rem}.mobile-control label{display:block;font-size:.875rem;margin-bottom:.5rem;color:var(--text-color)}.mobile-control input[type=color]{width:100%;height:50px;border:2px solid var(--border-color);border-radius:8px;cursor:pointer;background:none;padding:0}.mobile-control input[type=color]:hover{border-color:var(--primary-color)}.mobile-control input[type=range]{width:100%;height:6px;background:var(--border-color);border-radius:3px;outline:none;cursor:pointer}.mobile-control input[type=range]::-webkit-slider-thumb{appearance:none;width:18px;height:18px;background:var(--primary-color);border-radius:50%;cursor:pointer;transition:all .2s}.mobile-control input[type=range]::-webkit-slider-thumb:hover{transform:scale(1.2);box-shadow:0 0 8px #e8212780}.mobile-control input[type=range]::-moz-range-thumb{width:18px;height:18px;background:var(--primary-color);border-radius:50%;border:none;cursor:pointer;transition:all .2s}.mobile-control input[type=range]::-moz-range-thumb:hover{transform:scale(1.2);box-shadow:0 0 8px #e8212780}.mobile-tools-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:.5rem}.mobile-tool-btn{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.25rem;padding:.75rem .5rem;background-color:var(--secondary-color);border:2px solid var(--border-color);border-radius:8px;cursor:pointer;transition:all .2s;font-size:1.5rem}.mobile-tool-btn .tool-label{font-size:.7rem;color:#fff;text-transform:uppercase;letter-spacing:.5px}.mobile-tool-btn:hover{background-color:#4a4a4a;transform:translateY(-1px)}.mobile-tool-btn.active{border-color:var(--primary-color);background-color:#3a3a3a;box-shadow:0 0 8px #e821274d}.mobile-tool-btn.active .tool-label{color:var(--primary-color)}.mobile-actions-grid{display:flex;flex-direction:column;gap:.5rem;margin-bottom:1.5rem}.mobile-actions-grid .btn{margin-bottom:0}.mobile-info-section{padding-top:1rem;border-top:1px solid var(--border-color)}.mobile-info-section h3{font-size:1rem;margin-bottom:.5rem;color:var(--primary-color)}@media(max-width:768px){.app-container{flex-direction:column}.sidebar{width:100%;height:auto;border-right:none;border-bottom:1px solid var(--border-color)}.canvas-container{flex:1}.header-title h1{font-size:1.1rem}.header-title .subtitle{display:none}.header-btn{width:36px;height:36px;font-size:1rem}}.ai-texture-panel{position:fixed;top:0;right:-400px;width:380px;height:100vh;background-color:var(--panel-bg);border-left:2px solid var(--primary-color);box-shadow:-8px 0 32px #0009;z-index:1000;display:flex;flex-direction:column;transition:right .3s ease-in-out;overflow:hidden}.ai-texture-panel.show{right:0}.ai-texture-header{display:flex;justify-content:space-between;align-items:center;padding:1rem 1.25rem;background-color:var(--secondary-color);border-bottom:1px solid var(--border-color)}.ai-texture-header h2{font-size:1.125rem;font-weight:600;margin:0;color:var(--text-color);letter-spacing:-.01em}.ai-texture-header .btn-close{background:none;border:none;color:var(--text-color);font-size:1.5rem;cursor:pointer;padding:0;line-height:1;opacity:.7;transition:opacity .2s}.ai-texture-header .btn-close:hover{opacity:1;color:var(--primary-color)}.ai-texture-content{flex:1;overflow-y:auto;padding:0;display:flex;flex-direction:column;gap:0}.texture-tabs{display:flex;gap:0;background-color:var(--secondary-color);border-bottom:2px solid var(--border-color);padding:0}.texture-tab{flex:1;padding:.875rem 1rem;background:none;border:none;color:var(--text-color);font-size:.875rem;font-weight:500;cursor:pointer;opacity:.6;transition:all .2s ease;border-bottom:3px solid transparent}.texture-tab:hover{opacity:.8;background-color:#ffffff0d}.texture-tab.active{opacity:1;color:var(--primary-color);border-bottom-color:var(--primary-color);background-color:#e821271a}.texture-tab-content{display:none;flex:1;overflow-y:auto;padding:1.25rem;flex-direction:column;gap:1.25rem}.texture-tab-content.active{display:flex}.import-section{display:flex;flex-direction:column;gap:1rem}.import-section h3{font-size:1rem;font-weight:600;margin:0;color:var(--text-color)}.import-hint{font-size:.875rem;color:#aaa;margin:0}.import-drop-zone{border:2px dashed var(--border-color);border-radius:12px;padding:2rem;text-align:center;cursor:pointer;transition:all .2s ease;background-color:var(--background)}.import-drop-zone:hover,.import-drop-zone.drag-over{border-color:var(--primary-color);background-color:#e821270d}.drop-zone-content{display:flex;flex-direction:column;align-items:center;gap:.75rem}.drop-zone-icon{font-size:3rem}.drop-zone-content p{margin:0;font-size:.875rem;color:var(--text-color)}.file-types{font-size:.75rem;color:#888}.import-preview{display:flex;flex-direction:column;gap:1rem;margin-top:1rem}.import-preview label{display:block;font-size:.875rem;color:#aaa;margin-bottom:.5rem}.import-preview img{width:100%;max-height:200px;object-fit:contain;border-radius:8px;background-color:var(--background);border:1px solid var(--border-color)}.ai-texture-input-section label,.ai-texture-style-section label,.ai-texture-presets label,.ai-texture-preview label,.ai-texture-history label{display:block;font-size:.875rem;color:#aaa;margin-bottom:.5rem}.prompt-helper-text{display:block;font-size:.8rem;color:var(--text-muted);background:#667eea1a;border-left:3px solid #667eea;padding:.75rem;margin-bottom:.75rem;border-radius:6px;line-height:1.5}.ai-texture-input-section textarea{width:100%;padding:.875rem;background-color:var(--background);border:1px solid var(--border-color);border-radius:10px;color:var(--text-color);font-family:inherit;font-size:.9rem;font-weight:400;line-height:1.5;resize:vertical;min-height:80px;transition:border-color .2s ease,box-shadow .2s ease}.ai-texture-input-section textarea:focus{outline:none;border-color:var(--primary-color);box-shadow:0 0 0 3px #e821271a}.ai-texture-input-section textarea::placeholder{color:#666}.input-controls{display:flex;justify-content:space-between;align-items:center;margin-top:.25rem}.char-count{font-size:.75rem;color:#666}.btn-clear{padding:.3rem .6rem;background-color:transparent;border:1px solid var(--border-color);border-radius:4px;color:#aaa;font-size:.7rem;cursor:pointer;transition:all .2s}.btn-clear:hover{background-color:var(--danger-color);border-color:var(--danger-color);color:#fff}.ai-texture-style-section select{width:100%;padding:.75rem;background-color:var(--background);border:1px solid var(--border-color);border-radius:10px;color:var(--text-color);font-size:.9rem;font-weight:500;cursor:pointer;transition:border-color .2s ease,box-shadow .2s ease}.ai-texture-style-section select:focus{outline:none;border-color:var(--primary-color);box-shadow:0 0 0 3px #e821271a}.preset-select{width:100%;padding:.6rem .75rem;background-color:var(--background);border:1px solid var(--border-color);border-radius:6px;color:var(--text-color);font-size:.9rem;cursor:pointer}.preset-select:focus{outline:none;border-color:var(--primary-color)}.preset-select optgroup{color:var(--primary-color);font-weight:600;background-color:var(--background)}.preset-select option{color:var(--text-color);background-color:var(--background);padding:.5rem}.ai-texture-actions{padding-top:.5rem}.ai-texture-actions .btn{width:100%;padding:.875rem;font-size:1rem}.ai-texture-actions .btn-loading{display:inline-flex;align-items:center;gap:.5rem}.spinner{display:inline-block;width:16px;height:16px;border:2px solid rgba(255,255,255,.3);border-radius:50%;border-top-color:#fff;animation:spin 1s linear infinite}@keyframes spin{to{transform:rotate(360deg)}}.ai-texture-preview{padding:1rem;background-color:var(--background);border-radius:8px;border:1px solid var(--border-color)}.preview-image-container{margin-bottom:1rem;border-radius:6px;overflow:hidden;background:repeating-conic-gradient(#2a2a2a 0% 25%,#333 0% 50%) 50% / 20px 20px}.preview-image-container img{width:100%;height:auto;display:block}.preview-actions{display:flex;gap:.75rem}.preview-actions .btn{flex:1;padding:.6rem;font-size:.875rem}.ai-texture-history{border-top:1px solid var(--border-color);padding-top:1rem}.history-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:.75rem}.history-item{aspect-ratio:1;border-radius:6px;overflow:hidden;cursor:pointer;border:2px solid transparent;transition:border-color .2s,transform .2s}.history-item:hover{border-color:var(--primary-color);transform:scale(1.05)}.history-item img{width:100%;height:100%;object-fit:cover}.history-item-info{display:none}.no-history{color:#666;font-size:.875rem;text-align:center;padding:1rem}.ai-texture-toast{position:fixed;bottom:20px;left:50%;transform:translate(-50%) translateY(100px);padding:.875rem 1.5rem;border-radius:8px;font-size:.9rem;z-index:2000;opacity:0;transition:transform .3s ease,opacity .3s ease;box-shadow:0 4px 12px #0000004d}.ai-texture-toast.show{transform:translate(-50%) translateY(0);opacity:1}.ai-texture-toast.error{background-color:var(--danger-color);color:#fff}.ai-texture-toast.success{background-color:var(--success-color);color:#fff}.ai-texture-library{border-top:1px solid var(--border-color);padding-top:1rem;margin-top:1rem}.library-tabs{display:flex;gap:.5rem;margin-bottom:.75rem}.library-tab{flex:1;padding:.6rem 1rem;background:var(--background);border:1px solid var(--border-color);border-radius:6px;color:var(--text-muted);cursor:pointer;font-size:.85rem;font-weight:500;transition:all .2s}.library-tab:hover{border-color:var(--primary-color);color:var(--text-color)}.library-tab.active{background:var(--primary-color);border-color:var(--primary-color);color:#fff}.tab-count{opacity:.7;font-weight:400;font-size:.8rem}.library-sync-status{display:flex;align-items:center;justify-content:space-between;margin-bottom:.75rem;padding:.5rem .75rem;background:#0003;border-radius:4px;font-size:.75rem}.sync-text{color:var(--text-muted)}.btn-sync{background:none;border:none;font-size:1rem;cursor:pointer;padding:.25rem;border-radius:4px;transition:background-color .2s,transform .2s}.btn-sync:hover{background:#ffffff1a;transform:rotate(180deg)}.library-tab-content{min-height:150px}.texture-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:.75rem}.texture-item{position:relative;aspect-ratio:1;border-radius:6px;overflow:hidden;cursor:pointer;border:2px solid transparent;transition:border-color .2s,transform .2s;background:var(--background)}.texture-item:hover{border-color:var(--primary-color);transform:scale(1.05)}.texture-item img{width:100%;height:100%;object-fit:cover}.texture-placeholder{width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;background:linear-gradient(135deg,var(--bg-dark) 0%,var(--accent-gradient-end) 100%);color:var(--text-muted)}.texture-placeholder .placeholder-icon{font-size:1.5rem;margin-bottom:.25rem}.texture-placeholder .placeholder-text{font-size:.6rem;text-align:center}.texture-item-info{position:absolute;bottom:0;left:0;right:0;padding:.5rem;background:linear-gradient(transparent,#000000e6);opacity:0;transition:opacity .2s}.texture-item:hover .texture-item-info{opacity:1}.texture-prompt{font-size:.7rem;color:#fff;line-height:1.3;margin-bottom:.25rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.texture-meta{font-size:.65rem;color:var(--text-muted);display:flex;justify-content:space-between;align-items:center}.popularity{background:#ff64004d;padding:.1rem .3rem;border-radius:3px;font-size:.6rem}.community-filters{display:flex;gap:.5rem;margin-bottom:.75rem}.community-search-input{flex:1;padding:.5rem .75rem;background:var(--background);border:1px solid var(--border-color);border-radius:4px;color:var(--text-color);font-size:.85rem}.community-search-input::placeholder{color:var(--text-muted)}.community-search-input:focus{outline:none;border-color:var(--primary-color)}.community-sort-select{padding:.5rem;background:var(--background);border:1px solid var(--border-color);border-radius:4px;color:var(--text-color);font-size:.8rem;cursor:pointer}.community-sort-select:focus{outline:none;border-color:var(--primary-color)}.load-more-container{display:flex;justify-content:center;margin-top:1rem}.loading-spinner{text-align:center;padding:2rem;color:var(--text-muted)}.btn-ai{background:linear-gradient(135deg,#667eea,#764ba2);border:none;position:relative;overflow:hidden}.btn-ai:before{content:"";position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.2),transparent);transition:left .5s}.btn-ai:hover:before{left:100%}.btn-ai:hover{background:linear-gradient(135deg,#764ba2,#667eea)}@media(max-width:480px){.ai-texture-panel{width:100%;right:-100%}.history-grid{grid-template-columns:repeat(4,1fr)}}.help-modal-content,.about-modal-content{max-width:650px;max-height:85vh}.help-modal-content .modal-body,.about-modal-content .modal-body{padding:1.5rem 2rem}.help-section{margin-bottom:1.5rem}.help-section h3{font-size:1rem;font-weight:600;color:var(--primary-color);margin-bottom:.75rem;display:flex;align-items:center;gap:.5rem;letter-spacing:-.01em}.help-steps{padding-left:1.25rem;line-height:1.7}.help-steps li{margin-bottom:.5rem;font-size:.9rem;font-weight:400;line-height:1.5}.help-steps strong{color:var(--text-color);font-weight:600}.tools-help-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:.75rem}.tool-help-item{display:flex;align-items:flex-start;gap:.75rem;padding:.75rem;background-color:var(--background);border-radius:6px;border:1px solid var(--border-color)}.tool-help-item .tool-icon{font-size:1.5rem}.tool-help-item strong{display:block;font-size:.875rem;margin-bottom:.25rem}.tool-help-item p{font-size:.75rem;color:#aaa;margin:0}.tips-list{padding-left:1.25rem;line-height:1.6}.tips-list li{margin-bottom:.4rem;font-size:.875rem;color:#ccc}.requirements-list{padding-left:1.25rem;line-height:1.6;list-style:none}.requirements-list li{margin-bottom:.5rem;font-size:.875rem;color:#ccc;padding-left:.5rem;border-left:2px solid var(--primary-color)}.requirements-list code{background-color:var(--background);padding:.125rem .375rem;border-radius:3px;font-family:Courier New,monospace;font-size:.85em;color:var(--primary-color)}.help-text-important{font-size:.875rem;line-height:1.6;color:#fff;margin-bottom:.75rem;font-weight:500}.help-divider{border:none;border-top:1px solid var(--border-color);margin:1.5rem 0}.about-section{background-color:var(--background);padding:1rem;border-radius:8px;border:1px solid var(--border-color)}.about-text{font-size:.875rem;line-height:1.6;color:#ccc;margin-bottom:.75rem}.about-text:last-child{margin-bottom:0}.project-links{display:flex;flex-direction:column;gap:.75rem;margin-top:.75rem}.project-link{display:flex;align-items:flex-start;gap:.75rem;padding:.875rem;background-color:var(--secondary-color);border:1px solid var(--border-color);border-radius:6px;text-decoration:none;color:var(--text-color);transition:all .2s}.project-link:hover{border-color:var(--primary-color);background-color:#3a3a3a;transform:translateY(-2px);box-shadow:0 4px 12px #e8212733}.project-link .project-emoji{font-size:1.5rem}.project-link strong{display:block;color:var(--primary-color);margin-bottom:.25rem}.project-link p{font-size:.75rem;color:#aaa;margin:0}.support-section{text-align:center;padding:1.25rem;background:linear-gradient(135deg,#ffdd001a,#ffa0001a);border:1px solid rgba(255,200,0,.3);border-radius:8px}.support-section h3{justify-content:center}.support-section .about-text{text-align:center}.coffee-btn{display:inline-block;padding:.75rem 1.5rem;background:linear-gradient(135deg,#fd0,#ffa000);color:#000;font-weight:600;font-size:.9rem;text-decoration:none;border-radius:30px;transition:all .2s;box-shadow:0 2px 8px #ffc8004d}.coffee-btn:hover{transform:translateY(-2px);box-shadow:0 4px 16px #ffc80066;background:linear-gradient(135deg,#ffa000,#fd0)}.build-info-section{background:#3b82f61a;border:1px solid rgba(59,130,246,.3);border-radius:8px;padding:1rem;margin:.5rem 0}.build-info-section h3{color:#60a5fa;margin-bottom:.75rem;font-size:1rem}.build-info-display{display:flex;flex-direction:column;gap:.5rem;font-size:.85rem}.build-info-item{display:flex;justify-content:space-between;align-items:center;padding:.5rem 0;border-bottom:1px solid rgba(59,130,246,.2)}.build-info-item:last-child{border-bottom:none}.build-label{font-weight:500;color:#93c5fd;min-width:100px;text-align:left}.build-value{font-family:Courier New,monospace;color:var(--text-color);text-align:right;flex:1}@media(max-width:600px){.help-modal-content,.about-modal-content{max-width:95%;max-height:90vh}.help-modal-content .modal-body,.about-modal-content .modal-body{padding:1rem}.tools-help-grid{grid-template-columns:1fr}.project-link{padding:.75rem}}.admin-modal .modal-content,.admin-modal-content{max-width:400px}.admin-form-group{margin-bottom:1rem}.admin-form-group label{display:block;margin-bottom:.5rem;font-weight:500;font-size:.9rem}.admin-password-input{width:100%;padding:.75rem 1rem;font-size:1rem;border:2px solid var(--border-color);border-radius:8px;background-color:var(--background);color:var(--text-color);transition:border-color .2s,box-shadow .2s}.admin-password-input:focus{outline:none;border-color:var(--primary-color);box-shadow:0 0 0 3px #e8212733}.admin-error{padding:.75rem;margin-bottom:1rem;background-color:#ef44441a;border:1px solid var(--danger-color);border-radius:6px;color:var(--danger-color);font-size:.875rem;text-align:center}.admin-form-actions{display:flex;gap:.75rem;justify-content:flex-end}.admin-form-actions .btn{min-width:100px}@keyframes shake{0%,to{transform:translate(0)}10%,30%,50%,70%,90%{transform:translate(-5px)}20%,40%,60%,80%{transform:translate(5px)}}.modal-content.shake{animation:shake .5s ease-in-out}body.admin-mode .app-header:after{content:"🔓 Admin";position:absolute;top:50%;right:1rem;transform:translateY(-50%);background:var(--danger-color);color:#fff;padding:.25rem .5rem;border-radius:4px;font-size:.75rem;font-weight:600}body.admin-mode .app-header{position:relative}.admin-delete-btn{position:absolute;top:4px;right:4px;width:28px;height:28px;padding:0;background-color:var(--danger-color);border:none;border-radius:6px;cursor:pointer;font-size:.875rem;display:flex;align-items:center;justify-content:center;opacity:0;transition:opacity .2s,transform .2s,background-color .2s;z-index:10}.texture-item{position:relative}.texture-item:hover .admin-delete-btn{opacity:1}.admin-delete-btn:hover{background-color:#dc2626;transform:scale(1.1)}.admin-delete-btn:active{transform:scale(.95)}.admin-delete-btn:disabled{cursor:not-allowed;opacity:.5}.header-title{cursor:default;-webkit-user-select:none;user-select:none}.godot-viewer{position:fixed;inset:0;z-index:200;pointer-events:none;opacity:0;visibility:hidden;transition:opacity .3s ease,visibility .3s ease}.godot-viewer.show{pointer-events:auto;opacity:1;visibility:visible}.godot-viewer-backdrop{position:absolute;inset:0;background:#000000e6;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px)}.godot-viewer-modal{position:absolute;inset:0;display:flex;flex-direction:column;background:#0a0a0b;background:linear-gradient(180deg,#0f0f10,#0a0a0b,#050506)}.godot-viewer-topbar{position:absolute;top:0;left:0;right:0;z-index:50;display:flex;justify-content:space-between;align-items:center;padding:.75rem 1rem;pointer-events:auto}.godot-viewer-logo{display:flex;align-items:center;gap:.5rem}.godot-viewer-logo .logo-text{font-size:1.25rem;font-weight:700;color:#fff;letter-spacing:-.02em}.godot-viewer-logo .logo-badge{font-size:.65rem;font-weight:600;background:var(--primary-color);color:#fff;padding:.125rem .375rem;border-radius:4px;text-transform:uppercase;letter-spacing:.05em}.godot-viewer-topbar-actions{display:flex;align-items:center;gap:.5rem}.godot-viewer-btn{width:36px;height:36px;display:flex;align-items:center;justify-content:center;background:#0006;border:1px solid rgba(255,255,255,.2);border-radius:50%;color:#fffc;font-size:1rem;cursor:pointer;transition:all .2s ease;-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px)}.godot-viewer-btn:hover{background:#0009;color:#fff}.godot-viewer-close-btn{font-size:1.25rem}.godot-viewer-help-btn{font-size:.75rem;font-weight:700}.godot-viewer-help-btn.active{background:#0009;color:#fff}.godot-viewer-viewport{flex:1;position:relative;overflow:hidden}.godot-viewer-iframe-container{position:absolute;inset:0}.godot-viewer-iframe{width:100%;height:100%;border:none;display:block}.godot-viewer-loading{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;background:#0a0a0b;z-index:10}.godot-loading-content{text-align:center}.godot-loading-ring{position:relative;width:8rem;height:8rem;margin:0 auto 2rem}.godot-loading-glow{position:absolute;inset:0;border-radius:50%;background:conic-gradient(from 0deg,transparent,rgba(232,33,39,.4),transparent);animation:godot-spin 2s linear infinite}@keyframes godot-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.godot-loading-inner{position:absolute;inset:.5rem;border-radius:50%;background:#0a0a0b;display:flex;align-items:center;justify-content:center}.godot-loading-car{font-size:2.5rem;opacity:.2}.godot-loading-progress{position:absolute;inset:0;width:100%;height:100%;transform:rotate(-90deg)}.godot-loading-track{fill:none;stroke:#ffffff0d;stroke-width:3}.godot-loading-fill{fill:none;stroke:url(#godotLoadingGradient);stroke-width:3;stroke-linecap:round;stroke-dasharray:0 289;transition:stroke-dasharray .4s cubic-bezier(.4,0,.2,1)}.godot-loading-text{text-align:center}.godot-loading-percent{font-size:1.125rem;font-weight:500;color:#ffffffe6;letter-spacing:.05em}.godot-loading-stage{font-size:.875rem;color:#fff6;margin-top:.25rem}.godot-viewer-error{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;background:#0a0a0b;z-index:10}.godot-error-content{text-align:center;max-width:24rem;padding:1.5rem}.godot-error-icon{width:4rem;height:4rem;margin:0 auto 1rem;border-radius:50%;background:#ef44441a;display:flex;align-items:center;justify-content:center;font-size:2rem;color:#ef4444}.godot-error-title{font-size:1.125rem;font-weight:500;color:#fca5a5}.godot-error-message{font-size:.875rem;color:#fff6;margin-top:.5rem}.godot-error-close-btn{margin-top:1.5rem;padding:.625rem 1.5rem;background:#ffffff1a;border:none;border-radius:9999px;color:#fff;font-size:.875rem;cursor:pointer;transition:background .2s ease}.godot-error-close-btn:hover{background:#ffffff26}.godot-viewer-hints{position:absolute;inset:0;background:#0009;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);display:flex;align-items:center;justify-content:center;z-index:10;animation:godotFadeIn .2s ease}@keyframes godotFadeIn{0%{opacity:0}to{opacity:1}}.godot-hints-content{background:#1a1a1ce6;-webkit-backdrop-filter:blur(16px);backdrop-filter:blur(16px);border-radius:1rem;padding:2rem;border:1px solid rgba(255,255,255,.1);max-width:28rem;margin:1rem;box-shadow:0 25px 50px -12px #00000080}.godot-hints-header{display:flex;align-items:center;gap:.75rem;margin-bottom:1.5rem}.godot-hints-icon{width:2.5rem;height:2.5rem;border-radius:.75rem;background:linear-gradient(135deg,var(--primary-color),#b91c1c);display:flex;align-items:center;justify-content:center;font-size:1.25rem}.godot-hints-header h3{font-size:1rem;font-weight:600;color:#fff;margin:0}.godot-hints-subtitle{font-size:.75rem;color:#ffffff80;margin:0}.godot-hints-list{display:flex;flex-direction:column;gap:.75rem}.godot-hint-item{display:flex;align-items:center;gap:1rem}.godot-hint-icon{width:2.5rem;height:2.5rem;border-radius:.5rem;background:#ffffff0d;display:flex;align-items:center;justify-content:center;font-size:1.25rem;color:#fff9;flex-shrink:0}.godot-hint-title{font-size:.875rem;font-weight:500;color:#ffffffe6;margin:0}.godot-hint-desc{font-size:.75rem;color:#fff6;margin:0}.godot-hints-shortcuts{margin-top:1rem;padding-top:1rem;border-top:1px solid rgba(255,255,255,.1)}.godot-hints-shortcuts-title{font-size:.65rem;color:#ffffff80;text-transform:uppercase;letter-spacing:.1em;margin-bottom:.75rem}.godot-shortcuts-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:.5rem;font-size:.75rem}.godot-shortcut{display:flex;align-items:center;gap:.5rem}.godot-shortcut kbd{padding:.25rem .5rem;background:#ffffff1a;border-radius:4px;color:#ffffffb3;font-family:var(--font-sans);font-size:.65rem}.godot-shortcut span{color:#ffffff80}.godot-hints-close-btn{width:100%;margin-top:1.5rem;padding:.625rem 1rem;background:var(--primary-color);border:none;border-radius:.75rem;color:#fff;font-size:.875rem;font-weight:500;cursor:pointer;transition:background .2s ease}.godot-hints-close-btn:hover{background:#c71e24}.godot-viewer-toolbar{position:absolute;bottom:1.5rem;left:50%;transform:translate(-50%);z-index:50;display:flex;align-items:center;gap:.25rem;background:#1a1a1ce6;-webkit-backdrop-filter:blur(16px);backdrop-filter:blur(16px);border-radius:1rem;padding:.375rem;border:1px solid rgba(255,255,255,.1);box-shadow:0 25px 50px -12px #00000080;pointer-events:auto}.godot-toolbar-group{display:flex;align-items:center;gap:.125rem;padding:0 .25rem}.godot-toolbar-divider{width:1px;height:1.5rem;background:#ffffff1a}.godot-toolbar-btn{display:flex;align-items:center;justify-content:center;padding:.5rem .75rem;background:transparent;border:none;border-radius:.75rem;color:#fff9;font-size:.75rem;font-weight:500;cursor:pointer;transition:all .2s ease}.godot-toolbar-btn:hover{background:#ffffff1a;color:#fff}.godot-toolbar-btn.active{background:var(--primary-color);color:#fff}.godot-preset-btn{min-width:3rem}.godot-rotate-btn{padding:.625rem}.godot-rotate-btn .rotate-pause,.godot-rotate-btn.active .rotate-play{display:none}.godot-rotate-btn.active .rotate-pause{display:inline}.godot-zoom-btn{padding:.5rem;font-size:1rem;font-weight:600}.godot-plate-group{display:flex;align-items:center;gap:.25rem}.godot-plate-label{font-size:.625rem;color:#fff6;margin-right:.125rem}.godot-plate-btn{padding:.375rem .5rem;font-size:.875rem;border-radius:.5rem}.godot-plate-btn.active{background:#ffffff26}@media(max-width:768px){.godot-viewer-topbar{padding:.5rem}.godot-viewer-logo .logo-text{font-size:1rem}.godot-viewer-btn{width:32px;height:32px}.godot-viewer-toolbar{bottom:1rem;flex-wrap:wrap;justify-content:center;max-width:calc(100% - 2rem);gap:.125rem;padding:.25rem}.godot-toolbar-group{padding:0 .125rem}.godot-toolbar-btn{padding:.375rem .5rem;font-size:.7rem}.godot-preset-btn{min-width:2.5rem}.godot-hints-content{padding:1.5rem}.godot-shortcuts-grid{grid-template-columns:1fr}}.auth-section{display:flex;align-items:center;margin-left:auto}.auth-loading{padding:.5rem 1rem;color:var(--text-muted)}.auth-spinner{display:inline-block;animation:spin 1s linear infinite}.gsi-material-button{-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;-webkit-appearance:none;background-color:#fff;background-image:none;border:1px solid #747775;-webkit-border-radius:20px;border-radius:20px;-webkit-box-sizing:border-box;box-sizing:border-box;color:#1f1f1f;cursor:pointer;font-family:Roboto,arial,sans-serif;font-size:14px;height:40px;letter-spacing:.25px;outline:none;overflow:hidden;padding:0 12px;position:relative;text-align:center;-webkit-transition:background-color .218s,border-color .218s,box-shadow .218s;transition:background-color .218s,border-color .218s,box-shadow .218s;vertical-align:middle;white-space:nowrap;width:auto;max-width:400px;min-width:min-content}.gsi-material-button .gsi-material-button-icon{height:20px;margin-right:12px;min-width:20px;width:20px}.gsi-material-button .gsi-material-button-content-wrapper{-webkit-align-items:center;align-items:center;display:flex;-webkit-flex-direction:row;flex-direction:row;-webkit-flex-wrap:nowrap;flex-wrap:nowrap;height:100%;justify-content:space-between;position:relative;width:100%}.gsi-material-button .gsi-material-button-contents{-webkit-flex-grow:1;flex-grow:1;font-family:Roboto,arial,sans-serif;font-weight:500;overflow:hidden;text-overflow:ellipsis;vertical-align:top}.gsi-material-button .gsi-material-button-state{-webkit-transition:opacity .218s;transition:opacity .218s;inset:0;opacity:0;position:absolute}.gsi-material-button:disabled{cursor:default;background-color:#ffffff61;border-color:#1f1f1f1f}.gsi-material-button:disabled .gsi-material-button-contents{opacity:38%}.gsi-material-button:disabled .gsi-material-button-icon{opacity:38%}.gsi-material-button:not(:disabled):active .gsi-material-button-state,.gsi-material-button:not(:disabled):focus .gsi-material-button-state{background-color:#303030;opacity:12%}.gsi-material-button:not(:disabled):hover{-webkit-box-shadow:0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15);box-shadow:0 1px 2px #3c40434d,0 1px 3px 1px #3c404326}.gsi-material-button:not(:disabled):hover .gsi-material-button-state{background-color:#303030;opacity:8%}.button-text-wrapper{-webkit-align-items:center;align-items:center;display:flex;-webkit-justify-content:center;justify-content:center;width:100%}.button-text-wrapper span{font-size:14px;font-weight:500;font-family:Roboto,arial,sans-serif;letter-spacing:.25px}.user-menu-dropdown{position:relative}.user-menu-btn{display:flex;align-items:center;gap:.5rem;padding:.375rem .75rem}.user-avatar{width:28px;height:28px;border-radius:50%;border:2px solid var(--primary-color);object-fit:cover}.user-name{font-size:.875rem;font-weight:500;max-width:120px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.user-menu-content{min-width:280px;right:0}.user-menu-header{display:flex;align-items:center;gap:1rem;padding:1rem;background:#ffffff0d;border-radius:8px;margin-bottom:.5rem}.user-avatar-large{width:48px;height:48px;border-radius:50%;border:2px solid var(--primary-color);object-fit:cover}.user-info{flex:1;min-width:0}.user-name-full{font-size:.9375rem;font-weight:600;color:var(--text-color);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.user-email{font-size:.8125rem;color:var(--text-muted);overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin-top:.25rem}@media(max-width:768px){.user-name{display:none}.user-menu-btn{padding:.375rem}.auth-section{margin-left:.5rem}}.gallery-panel{position:fixed;inset:0;z-index:1000;display:none;align-items:center;justify-content:center}.gallery-panel.open{display:flex}.gallery-panel-backdrop{position:absolute;inset:0;background:#000000b3;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px)}.gallery-panel-content{position:relative;width:95%;max-width:1200px;max-height:90vh;background:var(--panel-bg);border-radius:16px;border:1px solid var(--border-color);display:flex;flex-direction:column;overflow:hidden;box-shadow:0 20px 60px #0006}.gallery-panel-header{display:flex;justify-content:space-between;align-items:center;padding:1.25rem 1.5rem;border-bottom:1px solid var(--border-color);background:linear-gradient(135deg,var(--secondary-color) 0%,var(--panel-bg) 100%)}.gallery-panel-header h2{font-size:1.25rem;font-weight:600;color:var(--text-color)}.gallery-close-btn{width:36px;height:36px;border:none;background:#ffffff1a;border-radius:8px;color:var(--text-color);font-size:1.5rem;cursor:pointer;transition:all .2s ease;display:flex;align-items:center;justify-content:center}.gallery-close-btn:hover{background:var(--danger-color);transform:scale(1.05)}.gallery-tabs{display:flex;gap:.5rem;padding:1rem 1.5rem;border-bottom:1px solid var(--border-color)}.gallery-tab{padding:.625rem 1.25rem;background:transparent;border:1px solid var(--border-color);border-radius:8px;color:var(--text-muted);font-size:.875rem;font-weight:500;cursor:pointer;transition:all .2s ease}.gallery-tab:hover{background:#ffffff0d;border-color:var(--primary-color);color:var(--text-color)}.gallery-tab.active{background:var(--primary-color);border-color:var(--primary-color);color:#fff}.gallery-toolbar{display:flex;justify-content:space-between;align-items:center;padding:.75rem 1.5rem;background:#0003}.gallery-sort{display:flex;align-items:center;gap:.5rem}.gallery-sort label{font-size:.8125rem;color:var(--text-muted)}.gallery-sort select{padding:.5rem .75rem;background:var(--secondary-color);border:1px solid var(--border-color);border-radius:6px;color:var(--text-color);font-size:.8125rem;cursor:pointer}.gallery-share-btn{padding:.625rem 1.25rem;background:var(--ai-gradient);border:none;border-radius:8px;color:#fff;font-size:.875rem;font-weight:600;cursor:pointer;transition:all .2s ease}.gallery-share-btn:hover{transform:translateY(-2px);box-shadow:0 4px 12px #667eea66}.gallery-grid-container{flex:1;overflow-y:auto;padding:1.5rem;min-height:300px}.gallery-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:1.25rem}.gallery-card{background:var(--secondary-color);border-radius:12px;border:1px solid var(--border-color);overflow:hidden;transition:all .2s ease}.gallery-card:hover{border-color:var(--primary-color);transform:translateY(-4px);box-shadow:var(--card-hover-glow)}.gallery-card-image{position:relative;aspect-ratio:1;background:var(--background);overflow:hidden}.gallery-card-image img{width:100%;height:100%;object-fit:cover;transition:transform .3s ease}.gallery-card:hover .gallery-card-image img{transform:scale(1.05)}.gallery-card-info{padding:.875rem}.gallery-card-title{font-size:.875rem;font-weight:600;color:var(--text-color);margin-bottom:.25rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.gallery-card-author{font-size:.75rem;color:var(--text-muted);margin-bottom:.5rem}.gallery-card-stats{display:flex;justify-content:space-between;font-size:.75rem;color:var(--text-muted)}.gallery-card-downloads{display:flex;align-items:center;gap:.25rem}.gallery-card-actions{display:flex;gap:.5rem;padding:.75rem;border-top:1px solid var(--border-color)}.gallery-card-use{flex:1;padding:.5rem;background:var(--primary-color);border:none;border-radius:6px;color:#fff;font-size:.8125rem;font-weight:500;cursor:pointer;transition:all .2s ease}.gallery-card-use:hover{background:#c91b1f;transform:translateY(-1px)}.gallery-card-delete{padding:.5rem .75rem;background:#ef44441a;border:1px solid var(--danger-color);border-radius:6px;font-size:.875rem;cursor:pointer;transition:all .2s ease}.gallery-card-delete:hover{background:var(--danger-color)}.gallery-loading,.gallery-empty{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:3rem;color:var(--text-muted)}.gallery-spinner{font-size:2rem;animation:spin 1s linear infinite}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.gallery-empty-icon{font-size:3rem;margin-bottom:1rem}.gallery-empty-text{font-size:1rem}.gallery-pagination{display:flex;justify-content:center;align-items:center;gap:1rem;padding:1rem;border-top:1px solid var(--border-color)}.gallery-page-btn{padding:.5rem 1rem;background:var(--secondary-color);border:1px solid var(--border-color);border-radius:6px;color:var(--text-color);font-size:.8125rem;cursor:pointer;transition:all .2s ease}.gallery-page-btn:hover:not(:disabled){background:#ffffff1a;border-color:var(--primary-color)}.gallery-page-btn:disabled{opacity:.5;cursor:not-allowed}#gallery-page-info{font-size:.875rem;color:var(--text-muted)}.share-modal{position:fixed;inset:0;z-index:1100;display:flex;align-items:center;justify-content:center;background:#000c;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px)}.share-modal-content{width:95%;max-width:500px;background:var(--panel-bg);border-radius:16px;border:1px solid var(--border-color);overflow:hidden;box-shadow:0 20px 60px #00000080}.share-modal-header{display:flex;justify-content:space-between;align-items:center;padding:1rem 1.25rem;border-bottom:1px solid var(--border-color);background:var(--secondary-color)}.share-modal-header h3{font-size:1.125rem;font-weight:600}.share-modal-close{width:32px;height:32px;border:none;background:#ffffff1a;border-radius:6px;color:var(--text-color);font-size:1.25rem;cursor:pointer;transition:all .2s ease;display:flex;align-items:center;justify-content:center}.share-modal-close:hover{background:var(--danger-color)}.share-modal-body{padding:1.5rem}.share-preview{display:flex;justify-content:center;margin-bottom:1.5rem}.share-preview canvas{width:200px;height:200px;border-radius:12px;border:2px solid var(--border-color);background:var(--background)}.share-form{display:flex;flex-direction:column;gap:1rem}.share-field{display:flex;flex-direction:column;gap:.375rem}.share-field label{font-size:.875rem;font-weight:500;color:var(--text-color)}.share-field input,.share-field textarea{padding:.75rem;background:var(--secondary-color);border:1px solid var(--border-color);border-radius:8px;color:var(--text-color);font-size:.875rem;font-family:var(--font-sans);transition:border-color .2s ease}.share-field input:focus,.share-field textarea:focus{outline:none;border-color:var(--primary-color)}.share-field textarea{resize:vertical;min-height:80px}.share-field-hint{font-size:.75rem;color:var(--text-muted)}.share-modal-footer{display:flex;justify-content:flex-end;gap:.75rem;padding:1rem 1.25rem;border-top:1px solid var(--border-color);background:#0003}.share-btn{padding:.625rem 1.25rem;border-radius:8px;font-size:.875rem;font-weight:500;cursor:pointer;transition:all .2s ease}.share-btn-secondary{background:transparent;border:1px solid var(--border-color);color:var(--text-color)}.share-btn-secondary:hover{background:#ffffff0d;border-color:var(--text-muted)}.share-btn-primary{background:var(--primary-color);border:none;color:#fff}.share-btn-primary:hover:not(:disabled){background:#c91b1f;transform:translateY(-1px)}.share-btn-primary:disabled{opacity:.7;cursor:not-allowed}@media(max-width:768px){.gallery-panel-content{width:100%;max-width:none;height:100%;max-height:none;border-radius:0}.gallery-toolbar{flex-direction:column;gap:.75rem}.gallery-grid{grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:1rem}.gallery-tabs{justify-content:center}.share-preview canvas{width:160px;height:160px}}
