.hero { text-align: center; padding: 2.5rem 1.5rem; position: relative; }
.hero h1 { font-family: var(--font-display); font-size: 2.8rem; font-weight: 800; letter-spacing: 3px; background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink)); background-size: 200% 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: titleGlow 3s ease-in-out infinite alternate, gradientShift 4s ease infinite; margin-bottom: 0.8rem; }
.hero .subtitle { font-family: var(--font-display); font-size: 1.1rem; color: var(--text-secondary); letter-spacing: 2px; margin-bottom: 1.5rem; }
.section-title { font-family: var(--font-display); font-size: 1.5rem; margin: 2rem 0 1rem; letter-spacing: 1px; text-align: center; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.title-icon { font-size: 1.3rem; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin: 1.5rem 0; align-items: center; }
.server-card { background: var(--surface-glass); backdrop-filter: blur(18px) saturate(140%); border: 1px solid var(--surface-border); border-radius: var(--card-radius); overflow: hidden; transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1); opacity: 0; animation: cardPop 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards; cursor: pointer; }
.server-card:hover { transform: translateY(-5px); border-color: rgba(0, 229, 255, 0.4); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 229, 255, 0.25); }

.server-card.server-active { border-color: rgba(76, 255, 76, 0.3); }
.server-card.server-active::before { content: ''; position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px; border-radius: var(--card-radius); z-index: -1; background: linear-gradient(135deg, rgba(76, 255, 76, 0.4), rgba(0, 229, 255, 0.4), rgba(179, 71, 234, 0.4), rgba(0, 229, 255, 0.4)); background-size: 300% 300%; animation: auroraBorealis 4s ease infinite; filter: blur(8px); opacity: 0.7; }
.server-card.server-active::after { content: ''; position: absolute; top: -1px; left: -1px; right: -1px; bottom: -1px; border-radius: var(--card-radius); z-index: -1; background: linear-gradient(135deg, rgba(76, 255, 76, 0.15), rgba(0, 229, 255, 0.15), rgba(179, 71, 234, 0.15), rgba(0, 229, 255, 0.15)); background-size: 300% 300%; animation: auroraBorealis 4s ease infinite; }

.server-card.server-frozen { border-color: rgba(150, 220, 255, 0.4); }
.server-card.server-frozen::before { content: ''; position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px; border-radius: var(--card-radius); z-index: -1; background: linear-gradient(135deg, rgba(180, 230, 255, 0.5), rgba(200, 240, 255, 0.3), rgba(150, 220, 255, 0.5), rgba(180, 230, 255, 0.3), rgba(220, 245, 255, 0.4)); background-size: 400% 400%; animation: iceShimmer 3s ease infinite; filter: blur(6px); opacity: 0.6; }
.server-card.server-frozen::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: var(--card-radius); background: radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 70%), radial-gradient(ellipse at 80% 20%, rgba(200, 230, 255, 0.06) 0%, transparent 70%), radial-gradient(ellipse at 50% 80%, rgba(180, 220, 255, 0.05) 0%, transparent 70%); pointer-events: none; animation: iceCrystal 5s ease infinite; }

.server-card.server-offline { border-color: rgba(255, 100, 30, 0.4); }
.server-card.server-offline::before { content: ''; position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px; border-radius: var(--card-radius); z-index: -1; background: linear-gradient(180deg, rgba(255, 60, 10, 0.6), rgba(255, 140, 30, 0.4), rgba(255, 200, 50, 0.3), rgba(255, 80, 20, 0.5), rgba(200, 30, 5, 0.6)); background-size: 100% 300%; animation: lavaFlow 3s ease infinite; filter: blur(7px); opacity: 0.7; }
.server-card.server-offline::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: var(--card-radius); background: radial-gradient(ellipse at 50% 80%, rgba(255, 120, 40, 0.12) 0%, transparent 60%), radial-gradient(ellipse at 30% 20%, rgba(255, 200, 80, 0.06) 0%, transparent 50%), radial-gradient(ellipse at 70% 50%, rgba(255, 60, 20, 0.08) 0%, transparent 55%); pointer-events: none; animation: lavaGlow 4s ease infinite; }
.server-card.server-offline .server-card-img-wrapper::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, rgba(255, 120, 30, 0.8), rgba(255, 200, 60, 0.6), rgba(255, 80, 20, 0.8), transparent); animation: lavaLine 2s ease infinite; z-index: 2; }

@keyframes auroraBorealis { 0% { background-position: 0% 50%; } 25% { background-position: 100% 0%; } 50% { background-position: 100% 100%; } 75% { background-position: 0% 100%; } 100% { background-position: 0% 50%; } }
@keyframes iceShimmer { 0% { background-position: 0% 50%; opacity: 0.4; } 50% { background-position: 100% 50%; opacity: 0.7; } 100% { background-position: 0% 50%; opacity: 0.4; } }
@keyframes iceCrystal { 0% { opacity: 0.5; } 50% { opacity: 0.8; } 100% { opacity: 0.5; } }
@keyframes lavaFlow { 0% { background-position: 0% 0%; } 50% { background-position: 0% 100%; } 100% { background-position: 0% 0%; } }
@keyframes lavaGlow { 0% { opacity: 0.6; } 50% { opacity: 1; } 100% { opacity: 0.6; } }
@keyframes lavaLine { 0% { opacity: 0.4; transform: scaleX(0.8); } 50% { opacity: 1; transform: scaleX(1); } 100% { opacity: 0.4; transform: scaleX(0.8); } }

.server-card-img-wrapper { position: relative; }
.server-card-img { width: 100%; height: 140px; object-fit: cover; }
.international-label { font-family: var(--font-display); font-size: 0.9rem; color: var(--neon-gold); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 0.3rem; text-shadow: 0 0 10px rgba(255, 215, 64, 0.4); }
.server-status-badge { display: inline-block; padding: 0.4rem 1rem; border-radius: 20px; font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.5px; margin: 0.5rem 0; text-transform: uppercase; }
.status-active { background: rgba(76, 255, 76, 0.2); border: 2px solid #4cff4c; color: #4cff4c; box-shadow: 0 0 15px rgba(76, 255, 76, 0.3); animation: statusPulseGreen 2s infinite; }
.status-frozen { background: rgba(180, 230, 255, 0.2); border: 2px solid #a0d8f0; color: #b8e4ff; box-shadow: 0 0 15px rgba(150, 210, 240, 0.4), inset 0 0 15px rgba(200, 240, 255, 0.1); animation: statusPulseFrozen 2s infinite; }
.status-offline { background: rgba(255, 80, 30, 0.2); border: 2px solid #ff6030; color: #ff7040; box-shadow: 0 0 15px rgba(255, 80, 30, 0.4), inset 0 0 10px rgba(255, 140, 50, 0.15); animation: statusPulseLava 2s infinite; }
@keyframes statusPulseGreen { 0%, 100% { box-shadow: 0 0 15px rgba(76, 255, 76, 0.3); } 50% { box-shadow: 0 0 25px rgba(76, 255, 76, 0.6); } }
@keyframes statusPulseFrozen { 0%, 100% { box-shadow: 0 0 15px rgba(150, 210, 240, 0.4), inset 0 0 15px rgba(200, 240, 255, 0.1); } 50% { box-shadow: 0 0 25px rgba(180, 230, 255, 0.7), inset 0 0 25px rgba(220, 245, 255, 0.2); } }
@keyframes statusPulseLava { 0%, 100% { box-shadow: 0 0 15px rgba(255, 80, 30, 0.4), inset 0 0 10px rgba(255, 140, 50, 0.15); } 50% { box-shadow: 0 0 25px rgba(255, 120, 40, 0.7), inset 0 0 20px rgba(255, 180, 60, 0.25); } }
.server-card-body { padding: 1.2rem; text-align: center; }
.server-card-body h3 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.3rem; color: var(--neon-cyan); }
.server-card-body .server-status-badge { width: auto; display: inline-block; align-self: center; }
.server-card-body .frozen-sub { margin: 0.3rem 0; }
.server-gmod-name { font-family: var(--font-display); font-size: 0.75rem; color: var(--text-secondary); margin-bottom: 0.3rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.server-ip { font-size: 0.8rem; color: var(--text-secondary); margin-top: 0; margin-bottom: 0; font-family: var(--font-body); }
.server-ping { display: flex; align-items: center; justify-content: center; gap: 0.4rem; font-size: 0.8rem; margin-top: 0; margin-bottom: 0.2rem; }
.ping-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; display: none; }
.btn-connect { margin-top: 0.2rem; }
.frozen-sub { font-size: 0.8rem; opacity: 0.8; margin-top: 0.3rem; color: var(--text-secondary); }
.server-view-btn { margin-top: 0.5rem; width: 100%; justify-content: center; padding: 0.55rem 1.3rem; font-size: 0.85rem; }

.server-online-bar { display: block; width: 100%; height: 32px; background: rgba(255,255,255,0.08); border-radius: 6px; overflow: hidden; position: relative; border: 1px solid rgba(0,229,255,0.2); }
.online-bar-fill { height: 100%; background: linear-gradient(90deg, rgba(76,255,76,0.5), rgba(0,229,255,0.5)); border-radius: 5px; transition: width 0.5s ease; box-shadow: 0 0 10px rgba(76,255,76,0.3); }
.online-dot { width: 8px; height: 8px; background: #4cff4c; border-radius: 50%; box-shadow: 0 0 8px #4cff4c; animation: pulse 1.5s infinite; display: inline-block; }

.server-info-banner { width: 100%; height: 300px; object-fit: cover; border-radius: var(--card-radius) var(--card-radius) 0 0; }
.server-info-body { padding: 2rem; background: var(--surface-glass); backdrop-filter: blur(18px) saturate(140%); border: 1px solid var(--surface-border); border-radius: 0 0 var(--card-radius) var(--card-radius); }
.server-info-body h2 { font-family: var(--font-display); font-size: 2rem; color: var(--neon-cyan); margin-bottom: 0.3rem; }
.server-info-anime { font-family: var(--font-display); color: var(--neon-gold); font-size: 1rem; margin-bottom: 1.5rem; }
.server-info-description { font-family: var(--font-body); font-size: 1rem; line-height: 1.8; margin-bottom: 1.5rem; color: var(--text-primary); }
.server-info-universe { font-family: var(--font-body); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.5rem; color: var(--text-secondary); padding: 1.2rem; background: rgba(0,0,0,0.3); border-radius: 10px; border-left: 3px solid var(--neon-purple); }
.server-info-section-title { font-family: var(--font-display); font-size: 1.3rem; color: var(--neon-cyan); margin: 1.5rem 0 0.8rem 0; }
.server-info-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-bottom: 1.5rem; }
.server-info-feature { padding: 0.6rem 1rem; background: rgba(0,229,255,0.05); border-radius: 8px; font-size: 0.9rem; color: var(--text-primary); }
.server-info-characters { font-family: var(--font-body); font-size: 0.9rem; line-height: 1.7; color: var(--text-secondary); margin-bottom: 1.5rem; }
.server-info-how { font-family: var(--font-body); font-size: 0.95rem; line-height: 1.8; color: var(--text-primary); padding: 1.2rem; background: rgba(0,229,255,0.05); border-radius: 10px; border: 1px solid rgba(0,229,255,0.15); }
.server-modal-close { position: absolute; top: 1rem; right: 1rem; z-index: 1001; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); color: white; width: 40px; height: 40px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.server-modal-close:hover { background: rgba(255, 64, 129, 0.6); border-color: var(--neon-pink); box-shadow: 0 0 15px rgba(255, 64, 129, 0.5); transform: scale(1.1); }

.server-info-wrapper { position: relative; border-radius: var(--card-radius); overflow: hidden; background: var(--surface-glass); backdrop-filter: blur(18px) saturate(140%); }
.server-info-active { border: 2px solid rgba(76, 255, 76, 0.3); }
.server-info-active::before { content: ''; position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px; border-radius: var(--card-radius); z-index: -1; background: linear-gradient(135deg, rgba(76, 255, 76, 0.4), rgba(0, 229, 255, 0.4), rgba(179, 71, 234, 0.4), rgba(0, 229, 255, 0.4)); background-size: 300% 300%; animation: auroraBorealis 4s ease infinite; filter: blur(8px); opacity: 0.7; }
.server-info-active::after { content: ''; position: absolute; top: -1px; left: -1px; right: -1px; bottom: -1px; border-radius: var(--card-radius); z-index: -1; background: linear-gradient(135deg, rgba(76, 255, 76, 0.15), rgba(0, 229, 255, 0.15), rgba(179, 71, 234, 0.15), rgba(0, 229, 255, 0.15)); background-size: 300% 300%; animation: auroraBorealis 4s ease infinite; }
.server-info-frozen { border: 2px solid rgba(180, 230, 255, 0.4); }
.server-info-frozen::before { content: ''; position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px; border-radius: var(--card-radius); z-index: -1; background: linear-gradient(135deg, rgba(180, 230, 255, 0.5), rgba(200, 240, 255, 0.3), rgba(150, 220, 255, 0.5), rgba(180, 230, 255, 0.3), rgba(220, 245, 255, 0.4)); background-size: 400% 400%; animation: iceShimmer 3s ease infinite; filter: blur(6px); opacity: 0.6; }
.server-info-frozen::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: var(--card-radius); background: radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 70%), radial-gradient(ellipse at 80% 20%, rgba(200, 230, 255, 0.06) 0%, transparent 70%), radial-gradient(ellipse at 50% 80%, rgba(180, 220, 255, 0.05) 0%, transparent 70%); pointer-events: none; animation: iceCrystal 5s ease infinite; }
.server-info-offline { border: 2px solid rgba(255, 80, 30, 0.4); }
.server-info-offline::before { content: ''; position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px; border-radius: var(--card-radius); z-index: -1; background: linear-gradient(180deg, rgba(255, 60, 10, 0.6), rgba(255, 140, 30, 0.4), rgba(255, 200, 50, 0.3), rgba(255, 80, 20, 0.5), rgba(200, 30, 5, 0.6)); background-size: 100% 300%; animation: lavaFlow 3s ease infinite; filter: blur(7px); opacity: 0.7; }
.server-info-offline::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: var(--card-radius); background: radial-gradient(ellipse at 50% 80%, rgba(255, 120, 40, 0.12) 0%, transparent 60%), radial-gradient(ellipse at 30% 20%, rgba(255, 200, 80, 0.06) 0%, transparent 50%), radial-gradient(ellipse at 70% 50%, rgba(255, 60, 20, 0.08) 0%, transparent 55%); pointer-events: none; animation: lavaGlow 4s ease infinite; }

.news-card-link { text-decoration: none; color: inherit; }
.news-card { cursor: pointer; height: 100%; }
.news-badge { display: inline-block; padding: 0.2rem 0.6rem; background: rgba(0, 229, 255, 0.2); border-radius: 12px; font-size: 0.7rem; font-family: var(--font-display); color: var(--neon-cyan); margin-bottom: 0.5rem; }
.news-date { font-size: 0.75rem; color: var(--text-secondary); margin: 0.3rem 0; font-family: var(--font-body); }
.news-excerpt { font-family: var(--font-body); margin: 0.5rem 0; }
.news-readmore { color: var(--neon-cyan); font-family: var(--font-display); font-size: 0.8rem; font-weight: 600; }
.news-list-item { transition: all 0.3s; }
.news-list-item:hover { transform: translateX(5px); border-color: var(--neon-cyan); }
.news-detail-card { background: var(--surface-glass); backdrop-filter: blur(18px) saturate(140%); border: 1px solid var(--surface-border); border-radius: var(--card-radius); overflow: hidden; margin-top: 1rem; }
.news-detail-header { padding: 2rem 2rem 1rem 2rem; border-bottom: 1px solid var(--surface-border); text-align: center; }
.news-detail-header h2 { font-family: var(--font-display); font-size: 1.6rem; color: var(--text-primary); margin: 0.8rem 0 0.3rem 0; }
.news-detail-body { padding: 2rem; font-family: var(--font-body); line-height: 1.8; font-size: 1rem; color: var(--text-primary); }
.news-full-content { padding: 0 2rem 2rem 2rem; font-family: var(--font-body); line-height: 1.8; color: var(--text-secondary); border-top: 1px solid var(--surface-border); margin-top: 1rem; padding-top: 1.5rem; }
.news-categories { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-bottom: 2rem; }
.news-category-card { background: var(--surface-glass); backdrop-filter: blur(18px) saturate(140%); border: 1px solid var(--surface-border); border-radius: var(--card-radius); overflow: hidden; cursor: pointer; transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1); width: 200px; text-align: center; }
.news-category-card:hover { border-color: var(--neon-cyan); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.4), 0 0 15px rgba(0,229,255,0.15); }
.news-category-card.active { border-color: var(--neon-cyan); box-shadow: 0 0 20px rgba(0,229,255,0.3); }
.news-category-img { width: 100%; height: 100px; object-fit: cover; }
.news-category-body { padding: 0.6rem; }
.news-category-body h4 { font-family: var(--font-display); font-size: 0.85rem; color: var(--text-primary); }

.dev-card { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; padding: 1.2rem; }
.dev-avatar { width: 70px; height: 70px; border-radius: 50%; border: 3px solid var(--neon-purple); box-shadow: 0 0 20px rgba(179, 71, 234, 0.4); object-fit: cover; margin-bottom: 0.3rem; }
.dev-info { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; }
.dev-info h3 { font-family: var(--font-display); font-size: 0.95rem; margin: 0; color: var(--text-primary); line-height: 1.2; }
.dev-role { color: var(--neon-gold); font-family: var(--font-display); font-size: 0.78rem; margin: 0; line-height: 1.8; }
.dev-status { font-size: 0.72rem; margin: 0.3rem 0 0 0; line-height: 1.8; }
.dev-card-clickable { text-decoration: none; cursor: pointer; }
.dev-card-clickable:hover { transform: translateY(-3px); border-color: rgba(0, 229, 255, 0.3); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 229, 255, 0.15); }
.team-subtitle { font-family: var(--font-display); font-size: 1.2rem; color: var(--neon-gold); text-align: center; margin: 1.5rem 0 1rem 0; letter-spacing: 1px; }

.rules-wrapper { max-width: none; margin: 0; overflow: visible !important; }
.rules-layout { display: flex; flex-direction: column; gap: 1.5rem; width: 100%; overflow: visible !important; }
#rules.page { overflow: visible !important; }
.rules-sidebar { display: flex; flex-direction: row; flex-wrap: wrap; gap: 0.4rem; position: -webkit-sticky; position: sticky; top: 70px; z-index: 50; background: var(--surface-glass); backdrop-filter: blur(18px) saturate(140%); padding: 0.8rem 1rem; border: 1px solid var(--surface-border); border-radius: var(--card-radius); justify-content: center; width: 100%; max-width: 100%; margin: 0 auto; box-sizing: border-box; align-self: flex-start; }
.rules-sidebar-title { font-family: var(--font-display); font-size: 0.9rem; color: var(--neon-cyan); text-transform: uppercase; letter-spacing: 1.5px; padding: 0.5rem 0.8rem; margin-right: 0.5rem; border-right: 1px solid rgba(0, 229, 255, 0.15); display: flex; align-items: center; }
.rules-sidebar-btn { text-align: center; padding: 0.5rem 1rem; background: var(--surface-glass); backdrop-filter: blur(18px) saturate(140%); border: 1px solid var(--surface-border); border-radius: var(--card-radius); color: var(--text-secondary); font-family: var(--font-display); font-size: 0.8rem; cursor: pointer; transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1); white-space: nowrap; }
.rules-sidebar-btn:hover { border-color: var(--neon-cyan); color: var(--neon-cyan); background: rgba(0, 229, 255, 0.06); box-shadow: 0 0 15px rgba(0, 229, 255, 0.1); transform: translateY(-2px); }
.rules-sidebar-btn.active { border-color: var(--neon-cyan); color: var(--neon-cyan); background: rgba(0, 229, 255, 0.1); box-shadow: 0 0 20px rgba(0, 229, 255, 0.2); }
.rules-content { width: 100%; }
.rules-section { background: var(--surface-glass); backdrop-filter: blur(18px) saturate(140%); border: 1px solid var(--surface-border); border-radius: var(--card-radius); padding: 2.5rem; display: none; transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1); position: relative; overflow: hidden; }
.rules-section::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%); opacity: 0; transition: opacity 0.4s; }
.rules-section:hover::before { opacity: 1; }
.rules-section:hover { border-color: rgba(0, 229, 255, 0.3); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 229, 255, 0.15); transform: translateY(-3px); }
.rules-section.active { display: block; animation: fadeUpBlur 0.4s cubic-bezier(0.23, 1, 0.32, 1); }
.rules-section-title { font-family: var(--font-display); font-size: 1.3rem; color: var(--neon-cyan); margin-bottom: 1.5rem; padding-bottom: 0.8rem; border-bottom: 2px solid rgba(0, 229, 255, 0.15); text-transform: uppercase; letter-spacing: 1.5px; }
.rules-list { display: flex; flex-direction: column; gap: 0.6rem; }
.rule-item { display: flex; gap: 0.8rem; padding: 0.7rem 1.2rem; background: rgba(255, 255, 255, 0.02); border-radius: 10px; border-left: 3px solid var(--neon-purple); transition: all 0.3s; font-size: 0.9rem; flex-direction: column; }
.rule-item:hover { background: rgba(255, 255, 255, 0.05); border-left-color: var(--neon-cyan); transform: translateX(3px); }
.rule-text { font-family: var(--font-body); color: var(--text-primary); line-height: 1.6; }
.rule-punishment { display: block; margin-top: 0.5rem; padding: 0.5rem 0.8rem; background: rgba(255, 40, 40, 0.2); border: 1px solid rgba(255, 40, 40, 0.5); border-radius: 8px; color: #ff4444; font-weight: 700; font-size: 0.85rem; }

.oferta-content { max-width: 800px; margin: 0 auto; font-family: var(--font-body); line-height: 1.8; }
.oferta-section { padding: 2rem; line-height: 1.8; border-left: 3px solid var(--neon-purple); margin-bottom: 1rem; background: var(--surface-glass); border: 1px solid var(--surface-border); border-radius: var(--card-radius); transition: all 0.3s; }
.oferta-section:hover { border-left-color: var(--neon-cyan); border-color: rgba(0, 229, 255, 0.3); transform: translateX(3px); }
.oferta-section-title { font-family: var(--font-display); font-size: 1.2rem; color: var(--neon-cyan); margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(0, 229, 255, 0.15); letter-spacing: 1px; }
.oferta-image { max-width: 100%; border-radius: 12px; margin: 1.2rem 0; display: block; }

.complaints-wrapper { max-width: 700px; margin: 0 auto; }
.complaints-info { text-align: center; padding: 1rem; margin-bottom: 1.5rem; }
.complaints-info p { font-family: var(--font-body); font-size: 0.9rem; }
.complaint-form { padding: 2rem; }

.discord-main-btn { display: inline-flex; align-items: center; justify-content: center; gap: 1rem; font-family: var(--font-display); font-size: 1.1rem; padding: 0.8rem 2.5rem; margin: 0 auto; animation: discordFloat 3s ease-in-out infinite; }
.discord-main-btn img { width: 64px; height: 64px; margin-top: -6px; }

@keyframes discordFloat { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }

.topup-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 10000; background: rgba(0,0,0,0.9); display: flex; align-items: center; justify-content: center; padding: 1rem; box-sizing: border-box; }
.topup-modal-content .glass-card:first-of-type { overflow: visible; }
.topup-modal-content { width: 100%; max-width: 550px; position: relative; max-height: 95vh; overflow-y: auto; }
.topup-server-select { margin-bottom: 0.5rem; }
.topup-server-select label { display: block; font-family: var(--font-display); font-size: 0.85rem; color: var(--text-primary); margin-bottom: 0.4rem; }
.topup-copy-info { background: rgba(0,0,0,0.4); padding: 0.8rem; border-radius: 8px; margin-top: 0.5rem; font-size: 0.8rem; color: var(--text-secondary); }
.topup-copy-info code { display: block; color: var(--neon-cyan); margin-top: 0.3rem; word-break: break-all; font-size: 0.85rem; }
.topup-modal-content .yen-sign, #topupBalanceAmount .yen-sign, .user-balance .yen-sign { font-family: 'Roboto', 'Segoe UI', 'Arial', sans-serif; }

.forum-wrapper { max-width: 1400px; margin: 0 auto; }
.forum-categories { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 1.5rem; }
.forum-category-card { background: var(--surface-glass); backdrop-filter: blur(18px) saturate(140%); border: 1px solid var(--surface-border); border-radius: var(--card-radius); overflow: hidden; cursor: pointer; transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1); }
.forum-category-card:hover { border-color: var(--neon-cyan); transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,0.4), 0 0 20px rgba(0,229,255,0.15); }
.forum-category-img { width: 100%; height: 200px; object-fit: cover; }
.forum-category-body { padding: 1.5rem; }
.forum-category-body h4 { font-family: var(--font-display); font-size: 1.1rem; color: var(--neon-cyan); margin-bottom: 0.4rem; }
.forum-category-body p { font-family: var(--font-body); font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }
.forum-category-icon { width: 100%; height: 200px; display: flex; align-items: center; justify-content: center; background: rgba(0,229,255,0.04); }
.forum-category-icon img { width: 64px; height: 64px; opacity: 0.6; }
.forum-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.forum-header h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--text-primary); }
.forum-breadcrumb { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.forum-breadcrumb span { font-family: var(--font-display); font-size: 0.85rem; color: var(--text-secondary); }
.forum-breadcrumb .separator { color: var(--neon-cyan); }
.forum-breadcrumb .current { color: var(--neon-cyan); }
.forum-thread-card { background: var(--surface-glass); border: 1px solid var(--surface-border); border-radius: var(--card-radius); padding: 1.2rem 1.5rem; margin-bottom: 0.6rem; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; gap: 1rem; }
.forum-thread-card:hover { border-color: var(--neon-cyan); transform: translateX(5px); box-shadow: 0 0 20px rgba(0,229,255,0.1); }
.thread-icon { font-size: 1.5rem; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(0,229,255,0.06); border-radius: 10px; flex-shrink: 0; }
.thread-info { flex: 1; min-width: 0; }
.thread-info h4 { font-family: var(--font-display); font-size: 0.95rem; color: var(--text-primary); margin-bottom: 0.2rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.thread-preview { font-size: 0.78rem; color: var(--text-secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 0.3rem; }
.thread-meta { display: flex; gap: 1rem; font-size: 0.7rem; color: var(--text-secondary); flex-wrap: wrap; }
.thread-badges { display: flex; gap: 0.3rem; flex-shrink: 0; }
.thread-badge { padding: 0.2rem 0.5rem; border-radius: 12px; font-size: 0.65rem; font-family: var(--font-display); font-weight: 600; }
.badge-pinned { background: rgba(255,215,64,0.15); color: var(--neon-gold); border: 1px solid rgba(255,215,64,0.3); }
.badge-closed { background: rgba(255,64,129,0.15); color: var(--neon-pink); border: 1px solid rgba(255,64,129,0.3); }
.forum-post-card { background: var(--surface-glass); border: 1px solid var(--surface-border); border-radius: var(--card-radius); padding: 1.2rem 1.5rem; margin-bottom: 0.6rem; transition: all 0.3s; }
.forum-post-card:hover { border-color: rgba(0,229,255,0.2); }
.post-header { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.8rem; padding-bottom: 0.8rem; border-bottom: 1px solid var(--surface-border); }
.post-avatar { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--neon-purple); object-fit: cover; }
.post-author { font-weight: 600; color: var(--neon-cyan); font-family: var(--font-display); font-size: 0.9rem; }
.post-date { font-size: 0.7rem; color: var(--text-secondary); margin-left: auto; }
.post-content { font-family: var(--font-body); line-height: 1.7; color: var(--text-primary); font-size: 0.9rem; white-space: pre-line; }
.forum-reply-form { background: var(--surface-glass); border: 1px solid var(--surface-border); border-radius: var(--card-radius); padding: 1.5rem; margin-top: 1rem; }
.forum-reply-form h4 { font-family: var(--font-display); color: var(--neon-cyan); margin-bottom: 0.8rem; }

@media (max-width: 768px) {
    .hero h1 { font-size: 1.4rem; }
    .hero .subtitle { font-size: 0.8rem; }
    .section-title { font-size: 1.1rem; margin: 1.2rem 0 0.8rem; }
    .server-card-img { height: 100px; }
    .server-card-body { padding: 0.8rem; }
    .server-card-body h3 { font-size: 0.9rem; }
    .server-ip { font-size: 0.7rem; }
    .server-view-btn { padding: 0.4rem 1rem; font-size: 0.7rem; }
    .server-info-banner { height: 150px; }
    .server-info-body { padding: 1rem; }
    .server-info-body h2 { font-size: 1.3rem; }
    .server-info-anime { font-size: 0.8rem; }
    .server-info-description { font-size: 0.85rem; }
    .server-info-universe { font-size: 0.8rem; padding: 0.8rem; }
    .server-info-section-title { font-size: 1rem; }
    .server-info-features { grid-template-columns: 1fr; }
    .server-info-feature { font-size: 0.75rem; padding: 0.4rem 0.8rem; }
    .server-info-characters { font-size: 0.75rem; }
    .server-info-how { font-size: 0.8rem; padding: 0.8rem; }
    .server-modal-close { width: 32px; height: 32px; font-size: 1.2rem; }
    .news-categories { gap: 0.4rem; }
    .news-category-card { width: 140px; }
    .news-category-img { height: 70px; }
    .news-category-body { padding: 0.4rem; }
    .news-category-body h4 { font-size: 0.7rem; }
    .news-badge { font-size: 0.6rem; }
    .news-date { font-size: 0.65rem; }
    .news-readmore { font-size: 0.7rem; }
    .news-detail-header { padding: 1rem; }
    .news-detail-header h2 { font-size: 1.2rem; }
    .news-detail-body { padding: 1rem; font-size: 0.85rem; }
    .dev-card { gap: 0.3rem; padding: 0.8rem; }
    .dev-avatar { width: 50px; height: 50px; }
    .dev-info h3 { font-size: 0.8rem; }
    .dev-role { font-size: 0.7rem; }
    .dev-status { font-size: 0.65rem; }
    .team-subtitle { font-size: 1rem; }
    .rules-sidebar { padding: 0.5rem; gap: 0.2rem; top: 100px; width: 100%; max-width: 100%; z-index: 50; }
    .rules-sidebar-title { font-size: 0.7rem; padding: 0.3rem 0.5rem; margin-right: 0.2rem; }
    .rules-sidebar-btn { padding: 0.3rem 0.6rem; font-size: 0.65rem; }
    .rules-section { padding: 1.5rem; }
    .rules-section-title { font-size: 1rem; }
    .rule-item { font-size: 0.75rem; padding: 0.5rem 0.8rem; gap: 0.5rem; }
    .rule-punishment { font-size: 0.7rem; padding: 0.4rem 0.6rem; }
    .oferta-content { max-width: 100%; }
    .oferta-section { padding: 1rem; font-size: 0.85rem; }
    .complaints-wrapper { max-width: 100%; }
    .complaint-form { padding: 1rem; }
    .complaints-info { padding: 0.8rem; }
    .discord-main-btn { font-size: 0.8rem; padding: 0.5rem 1.2rem; gap: 0.4rem; max-width: 90%; }
    .discord-main-btn img { width: 32px; height: 32px; margin-top: -2px; }
    .topup-modal-content { max-width: 100%; margin: 0 0.5rem; }
    .forum-categories { grid-template-columns: 1fr; gap: 1rem; }
    .forum-category-img { height: 120px; }
    .forum-category-body { padding: 1rem; }
    .forum-category-body h4 { font-size: 0.9rem; }
    .forum-thread-card { padding: 0.8rem; gap: 0.5rem; }
    .thread-info h4 { font-size: 0.8rem; }
    .thread-meta { gap: 0.5rem; font-size: 0.65rem; }
    .forum-post-card { padding: 0.8rem; }
    .post-author { font-size: 0.75rem; }
    .post-date { font-size: 0.65rem; }
    .post-content { font-size: 0.8rem; }
    .forum-reply-form { padding: 1rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.1rem; }
    .hero .subtitle { font-size: 0.7rem; }
    .section-title { font-size: 1rem; }
    .news-category-card { width: 110px; }
    .news-category-img { height: 55px; }
    .discord-main-btn { font-size: 0.7rem; padding: 0.4rem 1rem; }
    .discord-main-btn img { width: 24px; height: 24px; }
}