/* ========================================
   EarthOnline 登录系统 - 宏伟大气版
   ======================================== */

:root {
    /* 主色调 */
    --primary-earth: #1a5f7a;
    --primary-blue: #159895;
    --primary-cyan: #00d9ff;
    --primary-green: #00ff88;
    
    /* 渐变色 */
    --gradient-earth: linear-gradient(135deg, #1a5f7a 0%, #159895 50%, #00d9ff 100%);
    --gradient-space: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    --gradient-nebula: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    
    /* 发光效果 */
    --glow-blue: 0 0 20px rgba(0, 217, 255, 0.5);
    --glow-green: 0 0 20px rgba(0, 255, 136, 0.5);
    --glow-purple: 0 0 20px rgba(102, 126, 234, 0.5);
    
    /* 字体 */
    --font-title: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

/* ========================================
   基础样式
   ======================================== */

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

body {
    font-family: var(--font-body);
    background: var(--gradient-space);
    min-height: 100vh;
    overflow-x: hidden;
    color: #fff;
}

/* ========================================
   动态星空背景
   ======================================== */

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.stars, .stars2, .stars3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.stars {
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 40px 70px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 50px 160px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 90px 40px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 130px 80px, #fff, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: twinkle 5s ease-in-out infinite;
}

.stars2 {
    background-image: 
        radial-gradient(1px 1px at 30px 50px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 70px 120px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 110px 30px, #fff, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 150px 150px;
    animation: twinkle 7s ease-in-out infinite reverse;
}

.stars3 {
    background-image: 
        radial-gradient(1.5px 1.5px at 60px 90px, #00d9ff, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 100px 150px, #00ff88, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 180px 180px;
    animation: twinkle 6s ease-in-out infinite;
}

.nebula {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 40%);
    animation: nebulaFloat 20s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes nebulaFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(2%, 2%) rotate(5deg); }
}

/* ========================================
   主容器
   ======================================== */

.main-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* ========================================
   Logo 区域
   ======================================== */

.logo-section {
    text-align: center;
    margin-bottom: 40px;
}

.earth-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.earth-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: earthGlow 3s ease-in-out infinite;
}

@keyframes earthGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.earth-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 64px;
    color: #00d9ff;
    animation: earthRotate 20s linear infinite;
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.8));
}

@keyframes earthRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 50%;
    animation: orbitRotate 10s linear infinite;
}

.ring-1 { width: 160px; height: 160px; border-color: rgba(0, 217, 255, 0.2); }
.ring-2 { width: 180px; height: 180px; border-color: rgba(0, 255, 136, 0.2); animation-direction: reverse; }
.ring-3 { width: 200px; height: 200px; border-color: rgba(102, 126, 234, 0.2); }

@keyframes orbitRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.main-title {
    font-family: var(--font-title);
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.title-earth {
    background: linear-gradient(135deg, #00d9ff 0%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.5));
}

.title-online {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.5));
}

.tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.version-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 20px;
    font-size: 12px;
    color: #00d9ff;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* ========================================
   登录卡片容器
   ======================================== */

.login-card-wrapper {
    width: 100%;
    max-width: 480px;
    perspective: 1000px;
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
    overflow: hidden;
}

.login-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(0, 217, 255, 0.1),
        transparent 30%
    );
    animation: cardShine 8s linear infinite;
    pointer-events: none;
}

@keyframes cardShine {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 卡片顶部装饰条 */
.card-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    display: flex;
}

.bar-segment {
    flex: 1;
    height: 100%;
}

.segment-1 { background: linear-gradient(90deg, #00d9ff, #00ff88); }
.segment-2 { background: linear-gradient(90deg, #00ff88, #667eea); }
.segment-3 { background: linear-gradient(90deg, #667eea, #764ba2); }

/* ========================================
   EarthOnline 登录按钮
   ======================================== */

.btn-earthonline-login {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(17, 153, 142, 0.3);
}

.btn-earthonline-login:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(17, 153, 142, 0.4);
}

.btn-glow-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-earthonline-login:hover .btn-glow-effect {
    left: 100%;
}

.btn-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.btn-text {
    flex: 1;
    text-align: left;
    padding: 0 15px;
    color: #fff;
}

.btn-text strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.btn-text small {
    font-size: 12px;
    opacity: 0.9;
}

.btn-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    transition: transform 0.3s;
}

.btn-earthonline-login:hover .btn-arrow {
    transform: translateX(5px);
}

/* ========================================
   分割线
   ======================================== */

.divider-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.2), transparent);
}

.divider-text {
    color: rgba(0, 0, 0, 0.4);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

/* ========================================
   表单样式
   ======================================== */

.form-group-wrapper {
    margin-bottom: 25px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.form-label i {
    color: #00d9ff;
    font-size: 16px;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #00d9ff;
    font-size: 18px;
    z-index: 2;
    transition: color 0.3s;
}

.form-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 15px;
    font-family: var(--font-body);
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.9);
}

.form-input:focus {
    outline: none;
    border-color: #00d9ff;
    box-shadow: 0 0 0 4px rgba(0, 217, 255, 0.1);
}

.form-input:focus + .input-border {
    width: 100%;
}

.form-input::placeholder {
    color: #aaa;
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-earth);
    transition: width 0.3s;
    border-radius: 0 0 12px 12px;
}

.input-hint {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.4);
    padding-left: 10px;
}

/* ========================================
   登录按钮
   ======================================== */

.btn-local-login, .btn-register {
    width: 100%;
    padding: 16px;
    background: var(--gradient-earth);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.btn-local-login:hover, .btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.4);
}

.btn-icon-end {
    font-size: 18px;
    transition: transform 0.3s;
}

.btn-local-login:hover .btn-icon-end,
.btn-register:hover .btn-icon-end {
    transform: translateX(5px);
}

/* ========================================
   错误消息
   ======================================== */

.error-message {
    background: linear-gradient(135deg, #fee, #fdd);
    color: #c33;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 4px solid #c33;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.error-message i {
    font-size: 18px;
}

/* ========================================
   表单底部
   ======================================== */

.form-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
}

.footer-link {
    color: #00d9ff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}

.footer-link:hover {
    color: #00ff88;
    transform: translateX(3px);
}

/* ========================================
   章节标题
   ======================================== */

.section-header {
    text-align: center;
    margin-bottom: 25px;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-title i {
    color: #00d9ff;
}

.section-subtitle {
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
}

/* ========================================
   用户信息卡片
   ======================================== */

.user-profile-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 2px solid rgba(0, 217, 255, 0.2);
}

.profile-avatar-wrapper {
    position: relative;
}

.avatar-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: avatarGlow 2s ease-in-out infinite;
}

@keyframes avatarGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.profile-avatar {
    position: relative;
    width: 70px;
    height: 70px;
    background: var(--gradient-earth);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    z-index: 1;
}

.avatar-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 16px;
    height: 16px;
    background: #00ff88;
    border: 3px solid #fff;
    border-radius: 50%;
    z-index: 2;
}

.profile-info {
    flex: 1;
}

.profile-username {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.profile-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-local {
    background: rgba(0, 217, 255, 0.15);
    color: #0099cc;
}

.badge-online {
    background: rgba(0, 255, 136, 0.15);
    color: #00aa66;
}

.profile-joined {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* ========================================
   绑定区域
   ======================================== */

.bind-section {
    margin-bottom: 20px;
}

.bind-card {
    background: linear-gradient(135deg, #fff8e6 0%, #fff3d6 100%);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 2px solid rgba(255, 193, 7, 0.3);
}

.bind-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
}

.bind-content {
    flex: 1;
}

.bind-content h5 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.bind-content p {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
}

.btn-bind {
    padding: 12px 20px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-bind:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

/* ========================================
   成功区域
   ======================================== */

.success-section {
    margin-bottom: 20px;
}

.success-card {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 2px solid rgba(76, 175, 80, 0.3);
}

.success-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4caf50, #8bc34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.success-content h5 {
    font-size: 15px;
    font-weight: 600;
    color: #2e7d32;
    margin-bottom: 4px;
}

.success-content p {
    font-size: 12px;
    color: rgba(46, 125, 50, 0.8);
    margin: 0;
}

/* ========================================
   登录后操作按钮
   ======================================== */

.logged-in-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-continue, .btn-logout {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-continue {
    background: var(--gradient-earth);
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.btn-continue:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.4);
}

.btn-logout {
    background: rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, 0.6);
}

.btn-logout:hover {
    background: rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.8);
}

/* ========================================
   底部信息
   ======================================== */

.footer-section {
    margin-top: 40px;
    text-align: center;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 15px;
}

.footer-link-item {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.footer-link-item:hover {
    color: #00d9ff;
    transform: translateY(-2px);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.footer-copyright p {
    margin: 5px 0;
}

.footer-tagline {
    font-size: 12px;
}

.footer-tagline i {
    color: #ff6b6b;
    animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ========================================
   加载动画
   ======================================== */

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 12, 41, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content {
    text-align: center;
}

.loading-earth {
    font-size: 80px;
    color: #00d9ff;
    margin-bottom: 20px;
    animation: earthRotate 3s linear infinite;
    filter: drop-shadow(0 0 30px rgba(0, 217, 255, 0.8));
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(0, 217, 255, 0.2);
    border-top-color: #00d9ff;
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    letter-spacing: 2px;
}

/* ========================================
   动画类
   ======================================== */

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   响应式设计
   ======================================== */

@media (max-width: 520px) {
    .main-title {
        font-size: 36px;
    }
    
    .tagline {
        font-size: 14px;
    }
    
    .login-card {
        padding: 30px 25px;
    }
    
    .earth-container {
        width: 100px;
        height: 100px;
    }
    
    .earth-icon {
        font-size: 48px;
    }
    
    .ring-1 { width: 130px; height: 130px; }
    .ring-2 { width: 150px; height: 150px; }
    .ring-3 { width: 170px; height: 170px; }
    
    .btn-earthonline-login {
        padding: 16px;
    }
    
    .btn-text strong {
        font-size: 14px;
    }
    
    .btn-text small {
        font-size: 11px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .user-profile-card {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-badges {
        justify-content: center;
    }
}
