.modal-backdrop { position: fixed; inset: 0; z-index: 1040; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(4px); animation: fade-in 0.2s ease-out; } @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } .card-detail { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1050; background: var(--bg-surface); border: 1px solid var(--border); border-radius: 20px; padding: 0; max-width: 1100px; width: 95vw; height: 90vh; max-height: 95vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6); color: var(--text-primary); animation: detail-enter 0.25s ease-out; } @keyframes detail-enter { from { opacity: 0; transform: translate(-50%, -50%) scale(0.95); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } } .detail-close { position: absolute; top: 1rem; right: 1rem; z-index: 1; background: rgba(0, 0, 0, 0.3); border: 1px solid rgba(255, 255, 255, 0.1); color: var(--text-primary); width: 2.2rem; height: 2.2rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 0.9rem; transition: all var(--transition); } .detail-close:hover { background: rgba(255, 255, 255, 0.1); transform: rotate(90deg); } .detail-layout { display: flex; padding: 2.5rem 2rem 2rem; } .detail-info { flex: 1; min-width: 0; } .detail-header { text-align: center; margin-bottom: 2rem; } .syndicate-badges { display: flex; justify-content: center; gap: 0.75rem; margin-bottom: 1rem; } .syn-icon { width: 32px; height: 32px; border-radius: 50%; background: currentColor; box-shadow: 0 0 15px currentColor; border: 2px solid rgba(255, 255, 255, 0.2); } .detail-header h2 { margin: 0 0 0.5rem; font-size: 1.8rem; font-weight: 800; letter-spacing: -0.02em; background: linear-gradient(135deg, #fff 0%, #aaa 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .detail-meta { display: flex; justify-content: center; } .meta-badge { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 0.3rem 0.8rem; border-radius: 4px; background: rgba(255, 255, 255, 0.05); color: var(--text-muted); border: 1px solid var(--border); } .detail-field { margin-bottom: 1.5rem; } .detail-field .field-label { display: block; color: var(--text-muted); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; } .detail-field .field-value { color: var(--text-secondary); font-size: 1rem; line-height: 1.6; } .detail-field.description { padding: 0; border-radius: 0; border: none; } .detail-field.description .field-label { margin-bottom: 0.75rem; color: var(--accent); display: flex; align-items: center; gap: 0.5rem; } .detail-field.description .field-value { color: var(--text-primary); display: block; font-size: 1.1rem; white-space: pre-wrap; } /* Syndicate Colors */ .lifeblood { color: #ef5350; } .phasetide { color: #2196f3; } .silence { color: #9e9e9e; } .singularity { color: #ffffff; } .splintergleam { color: #4caf50; } .sungrace { color: #ffeb3b; } .inline-card-btn { background: none; border: none; padding: 0; font-family: inherit; font-size: inherit; font-weight: 600; color: var(--accent); cursor: pointer; text-decoration: underline; text-underline-offset: 2px; text-decoration-color: rgba(108, 99, 255, 0.3); transition: all var(--transition); } .inline-card-btn:hover { color: #7b73ff; text-decoration-color: #7b73ff; } .card-detail::-webkit-scrollbar { width: 6px; } .card-detail::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; } @media (max-width: 600px) { .card-detail { width: 95vw; max-height: 90vh; } .detail-layout { padding: 2rem 1.25rem; } }