/* Global Custom Styles */ /* Blinking effect for status badges */ .blink-effect { animation: blink 1s infinite; } @keyframes blink { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } } /* Modal Public Profile - Nexus Design */ .modal-nexus { background: radial-gradient(circle at top, #141e33 0%, #080c14 100%) !important; border: 1px solid rgba(136, 192, 208, 0.2) !important; border-radius: 8px !important; color: #fff !important; box-shadow: 0 0 40px rgba(0,0,0,0.8), inset 0 0 20px rgba(136, 192, 208, 0.05) !important; max-height: none !important; /* Remove fixed height constraint */ overflow: visible !important; /* Prevent internal scrollbars */ height: auto !important; } .modal-nexus .modal-header { background: rgba(15, 23, 42, 0.8) !important; border-bottom: 1px solid rgba(136, 192, 208, 0.15) !important; padding: 12px 20px !important; } .modal-nexus .modal-header h2 { font-size: 14px !important; text-transform: uppercase !important; letter-spacing: 2px !important; color: #88c0d0 !important; margin: 0 !important; } .modal-nexus .modal-body { padding: 0 !important; overflow: visible !important; /* Ensure content isn't clipped */ } .profile-top-section { padding: 25px 20px; text-align: center; background: url('https://www.transparenttextures.com/patterns/stardust.png'); border-bottom: 1px solid rgba(136, 192, 208, 0.15); } .profile-grade-img { width: 45px; height: 45px; object-fit: contain; vertical-align: middle; margin-right: 15px; filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2)); } .profile-username { font-size: 22px; font-weight: bold; color: #fff; vertical-align: middle; } .profile-title-text { font-size: 10px; color: #ebcb8b; text-transform: uppercase; letter-spacing: 3px; margin-top: 12px; display: block; } .profile-level-text { font-size: 12px; color: #88c0d0; opacity: 0.8; margin-top: 8px; display: block; } .profile-section-header { font-size: 10px; color: #ebcb8b; text-transform: uppercase; letter-spacing: 2px; padding: 15px 20px 8px 20px; display: flex; align-items: center; gap: 10px; } .profile-section-header::before { content: ''; display: inline-block; width: 10px; height: 3px; background: #ebcb8b; } .guild-info-box { padding: 10px 20px 15px 20px; border-bottom: 1px solid rgba(136, 192, 208, 0.15); } .guild-display { display: flex; align-items: center; gap: 12px; background: rgba(30, 41, 59, 0.4); padding: 10px 15px; border-radius: 4px; border: 1px solid rgba(136, 192, 208, 0.1); } .guild-icon-placeholder { width: 24px; height: 24px; background: #1e293b; border-radius: 4px; display: flex; align-items: center; justify-content: center; color: #88c0d0; font-size: 12px; } .guild-tag-display { color: #ebcb8b; font-weight: bold; font-size: 14px; } .guild-name-display { color: #fff; font-size: 14px; } .profile-bottom-grid { display: flex; min-height: 150px; /* Reduced slightly to keep it compact */ } .profile-left-col { flex: 1; border-right: 1px solid rgba(136, 192, 208, 0.15); padding: 20px; background: rgba(0,0,0,0.1); } .profile-right-col { width: 200px; padding: 0; } .badge-info-section { display: flex; flex-direction: column; align-items: center; justify-content: center; height: calc(100% - 40px); padding-bottom: 20px; } .badge-img-display { width: 70px; height: 70px; object-fit: contain; filter: drop-shadow(0 0 15px rgba(136, 192, 208, 0.3)); margin-bottom: 12px; } .badge-name-display { font-size: 11px; color: #fff; text-align: center; padding: 0 10px; }