body {
  background: linear-gradient(135deg, #181622 0%, #23213a 100%);
  color: #f3f3fa;
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2.5vw;
  background: rgba(20,16,40,0.95);
  box-shadow: 0 2px 16px #0002;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .logo {
  font-size: 2rem;
  font-weight: 700;
  color: #a78bfa;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px #7c3aed44;
}

.navbar nav a {
  color: #f3f3fa;
  text-decoration: none;
  margin: 0 1.2rem;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.2s;
}

.navbar nav a:hover {
  color: #a78bfa;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5vw 2vw 2vw 2vw;
}

.hero-logo {
  width: 120px;
  height: 120px;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 32px #a78bfa55);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 0 2px 16px #7c3aed33;
}

.hero-desc {
  font-size: 1.3rem;
  color: #c7c3e6;
  margin-bottom: 2.2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  background: linear-gradient(90deg,#a78bfa,#7c3aed);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 1.1rem 2.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 2px 16px #a78bfa44;
  cursor: pointer;
  margin-bottom: 1.5rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.cta-btn:hover {
  background: linear-gradient(90deg,#7c3aed,#a78bfa);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

.mirrors {
  margin-top: 2.5rem;
  color: #ff4444;
  font-size: 1.05rem;
}

.footer {
  text-align: center;
  padding: 2rem 0 1rem 0;
  color: #a78bfa;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  margin-top: auto;
}

@media (max-width: 700px) {
  .hero-title { font-size: 2rem; }
  .hero-logo { width: 80px; height: 80px; }
  .navbar .logo { font-size: 1.3rem; }
  .hero-desc { font-size: 1.05rem; }
  .cta-btn { font-size: 1.05rem; padding: 0.8rem 1.5rem; }
}

.login-left {
  width: 480px;
  min-height: 100vh;
  background: #181818;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 48px 48px 80px;
  box-sizing: border-box;
}
.login-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: #fff;
}
.login-sub {
  color: #bbb;
  margin-bottom: 24px;
}
.login-info {
  background: #2a1818;
  color: #fff;
  border: 1px solid #a33;
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 18px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.login-form label {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 4px;
  display: block;
}
.login-form input[type="text"],
.login-form input[type="password"] {
  width: 100%;
  padding: 14px 12px;
  margin-bottom: 16px;
  border: 1px solid #222;
  border-radius: 8px;
  background: #151515;
  color: #fff;
  font-size: 1rem;
  box-sizing: border-box;
}
.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
  outline: none;
  border: 1.5px solid #e74c3c;
}
.login-form .login-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.login-form .remember {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #bbb;
  font-size: 0.98em;
}
.login-form .forgot {
  color: #e74c3c;
  font-size: 0.98em;
  text-decoration: underline;
  cursor: pointer;
}
.login-form button {
  width: 100%;
  padding: 14px;
  background: #e74c3c;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 18px;
  transition: background 0.2s;
}
.login-form button:hover {
  background: #c0392b;
}
.login-divider {
  border: none;
  border-top: 1px solid #222;
  margin: 24px 0 18px 0;
}
.login-form .create-btn {
  width: 100%;
  padding: 14px;
  background: #232b36;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 8px;
  transition: background 0.2s;
}
.login-form .create-btn:hover {
  background: #2d3748;
}
.login-footer {
  color: #888;
  font-size: 0.95em;
  margin-top: 18px;
  display: flex;
  gap: 18px;
}
.login-footer a {
  color: #e74c3c;
  text-decoration: underline;
}
.login-linkicon {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.login-linkicon svg {
  width: 120px;
  height: 120px;
  color: #a33;
  opacity: 0.18;
}
@media (max-width: 900px) {
  .login-left { width: 100%; padding: 32px 12px; }
  .login-linkicon { display: none; }
}
.container {
  max-width: 400px;
  margin: 60px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  padding: 32px 24px;
}
h1 {
  text-align: center;
  color: #f76d6d;
  margin-bottom: 24px;
}
input[type="text"], input[type="password"], input[type="url"], input[type="file"] {
  width: 100%;
  padding: 12px;
  margin: 8px 0 16px 0;
  border: 1px solid #eee;
  border-radius: 8px;
  box-sizing: border-box;
}
button {
  width: 100%;
  padding: 12px;
  background: #f76d6d;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}
button:hover {
  background: #fd5e53;
}
.link {
  display: block;
  text-align: center;
  margin-top: 16px;
  color: #f76d6d;
  text-decoration: none;
}
.profile-pic {
  display: block;
  margin: 0 auto 16px auto;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f76d6d;
}
.dashboard-info {
  margin-bottom: 16px;
  text-align: center;
}
.big-create-btn {
  background: #232b36;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1.15rem;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px #6c63ff22;
  transition: background 0.2s;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.big-create-btn:hover {
  background: #2d3748;
}

/* Profile blur button sizes */
.profile-blur-btn.small {
  font-size: 1.1rem;
  padding: 12px 24px;
}
.profile-blur-btn.medium {
  font-size: 1.5rem;
  padding: 24px 48px;
}
.profile-blur-btn.large {
  font-size: 2rem;
  padding: 32px 64px;
}

/* Dashboard Buttons */
.dashboard-btn, .audio-btn {
  background: #6c63ff;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  padding: 14px 0;
  margin-top: 10px;
  margin-bottom: 0;
  cursor: pointer;
  box-shadow: 0 2px 8px #6c63ff22;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
}
.dashboard-btn:hover, .audio-btn:hover {
  background: #574fd6;
  box-shadow: 0 4px 16px #6c63ff33;
  transform: translateY(-2px) scale(1.03);
}
.dashboard-btn:active, .audio-btn:active {
  background: #3d36b2;
  transform: scale(0.98);
}

/* Toggle Switches */
.toggle-switch {
  width: 48px;
  height: 26px;
  background: #ececff;
  border-radius: 13px;
  position: relative;
  transition: background 0.2s;
  display: inline-block;
  box-shadow: 0 1px 4px #6c63ff11;
}
.toggle-switch input {
  display: none;
}
.toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #6c63ff;
  border-radius: 50%;
  transition: left 0.2s, background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px #6c63ff33;
}
.toggle-switch input:checked + .toggle-slider {
  left: 25px;
  background: #574fd6;
  box-shadow: 0 4px 16px #574fd633;
}
.toggle-switch:active .toggle-slider {
  box-shadow: 0 0 0 6px #6c63ff22;
}
.toggle-switch input:focus + .toggle-slider {
  outline: 2px solid #6c63ff;
}

/* Notification and badge styles for dashboard */
.notification-item {
  transition: background 0.2s, color 0.2s;
}
.notification-item:hover {
  background: #ececff;
  color: #6c63ff;
}
.badge-gallery .badge {
  min-width: 80px;
  text-align: center;
  font-size: 1em;
  border-radius: 16px;
  padding: 4px 10px;
  margin: 2px 0;
  font-weight: 600;
  box-shadow: 0 1px 4px #6c63ff11;
  background: #f7f7ff;
  color: #6c63ff;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.badge-gallery .badge input[type="checkbox"] {
  margin-right: 6px;
}
.badge-gallery .badge:hover {
  background: #6c63ff;
  color: #fff;
  box-shadow: 0 2px 8px #6c63ff33;
}

/* --- Start: index.html custom styles --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: radial-gradient(ellipse at top, #667eea 0%, #764ba2 50%, #1a1a2e 100%);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Animated background elements */
.bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.floating-shape {
  position: absolute;
  background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-shape:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-shape:nth-child(3) {
  width: 60px;
  height: 60px;
  top: 80%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
  50% { transform: translateY(-20px) rotate(180deg); opacity: 0.6; }
}

/* Glassmorphism container */
.main-hero {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 40px auto;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  padding: 80px 56px 60px;
  text-align: center;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: heroEntrance 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), glow 3s ease-in-out 2s infinite;
}

@keyframes heroEntrance {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Profile image with advanced styling */
.main-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 32px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(45deg, #667eea, #764ba2);
  box-shadow: 
    0 12px 24px rgba(0, 0, 0, 0.2),
    0 0 0 8px rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: imageFloat 1.5s ease-out 0.3s both;
}

.main-img:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 12px rgba(255, 255, 255, 0.15);
}

@keyframes imageFloat {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Typography with gradients */
.main-title {
  font-size: 3.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  animation: titleSlide 1s ease-out 0.6s both;
}

@keyframes titleSlide {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.main-desc {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  line-height: 1.6;
  animation: descFade 1s ease-out 0.9s both;
}

@keyframes descFade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Advanced button styling */
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}

.main-nav a {
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  font-weight: 600;
  border-radius: 16px;
  padding: 18px 28px;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 8px 16px rgba(102, 126, 234, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  animation: buttonPop 0.6s ease-out calc(1.2s + var(--delay, 0s)) both;
}

.main-nav a:nth-child(1) { --delay: 0s; }
.main-nav a:nth-child(2) { --delay: 0.1s; }
.main-nav a:nth-child(3) { --delay: 0.2s; }
.main-nav a:nth-child(4) { --delay: 0.3s; }

@keyframes buttonPop {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.main-nav a:hover::before {
  left: 100%;
}

.main-nav a:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 12px 24px rgba(102, 126, 234, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #7c8ef7 0%, #8b5fbf 100%);
}

.main-nav a:active {
  transform: translateY(-2px) scale(0.98);
}

/* Footer styling */
.footer-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-top: 20px;
  animation: footerFade 1s ease-out 1.8s both;
}

@keyframes footerFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Responsive design */
@media (max-width: 700px) {
  .main-hero {
    padding: 48px 12px 32px;
    max-width: 98vw;
  }
  .main-title {
    font-size: 2.6rem;
  }
  .main-desc {
    font-size: 1.1rem;
  }
  .main-nav {
    flex-direction: column;
    align-items: center;
  }
  .main-nav a {
    width: 100%;
    max-width: 280px;
  }
  .main-img {
    width: 120px;
    height: 120px;
  }
}

/* Subtle pulsing glow effect */
@keyframes glow {
  0%, 100% {
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      0 0 0 1px rgba(102, 126, 234, 0.2);
  }
  50% {
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      0 0 0 1px rgba(102, 126, 234, 0.4);
  }
}
/* --- End: index.html custom styles --- */

/* OAuth Section */
.oauth-section {
  margin: 20px 0;
}

.oauth-divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
}

.oauth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #333;
}

.oauth-divider span {
  background: #1a1a1a;
  padding: 0 15px;
  color: #666;
  font-size: 0.9em;
}

.google-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 20px;
  background: #fff;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
  margin-top: 10px;
}

.google-login-btn:hover {
  background: #f8f9fa;
  border-color: #ccc;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.google-login-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Custom Rank Badge */
.custom-rank-badge {
  background: rgba(108, 99, 255, 0.1);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.9em;
  border: 1px solid rgba(108, 99, 255, 0.3);
}

/* System Logs */
.log-entry {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 8px;
  border-left: 4px solid #6c63ff;
}

.log-time {
  color: #666;
  font-size: 0.8em;
  font-family: monospace;
}

.log-admin {
  color: #6c63ff;
  font-weight: 600;
}

.log-action {
  color: #333;
}

.log-target {
  color: #e74c3c;
  font-weight: 500;
}

.log-details {
  color: #666;
  font-size: 0.9em;
  margin-top: 5px;
}

/* Maintenance Mode */
.maintenance-container {
  text-align: center;
  padding: 40px;
}

.maintenance-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: wrench 2s ease-in-out infinite;
}

@keyframes wrench {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(15deg); }
  75% { transform: rotate(-15deg); }
}

.maintenance-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}

.maintenance-message {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.maintenance-info {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.back-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.back-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.status-indicator {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #ff6b6b;
  border-radius: 50%;
  margin-right: 10px;
  animation: pulse 2s infinite;
}

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

/* Dashboard Tabs */
.dashboard-nav {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.nav-link {
    color: #6c63ff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(108, 99, 255, 0.1);
    transition: all 0.2s;
}

.nav-link:hover {
    background: rgba(108, 99, 255, 0.2);
}

.admin-link {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.admin-link:hover {
    background: rgba(231, 76, 60, 0.2);
}

.dashboard-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0;
}

.tab-btn {
    background: none;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 8px 8px 0 0;
    font-weight: 600;
    color: #666;
    transition: all 0.2s;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    background: #f8f9fa;
    color: #333;
}

.tab-btn.active {
    background: #6c63ff;
    color: #fff;
    border-bottom-color: #6c63ff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Toggle Switches */
.toggle-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 600;
    color: #333;
}

.toggle-slider {
    position: relative;
    width: 50px;
    height: 24px;
    background: #ccc;
    border-radius: 12px;
    transition: background 0.2s;
}

.toggle-slider:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s;
}

input[type="checkbox"]:checked + .toggle-slider {
    background: #6c63ff;
}

input[type="checkbox"]:checked + .toggle-slider:before {
    transform: translateX(26px);
}

input[type="checkbox"] {
    display: none;
}

/* Badges Grid */
.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.badge-item:hover {
    background: #e9ecef;
}

.badge-item input[type="checkbox"] {
    display: block;
    width: 16px;
    height: 16px;
    accent-color: #6c63ff;
}

.badge-name {
    font-weight: 500;
    color: #333;
}

/* Save Button */
.save-btn {
    background: #6c63ff;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 30px;
    width: 100%;
}

.save-btn:hover {
    background: #574fd6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 99, 255, 0.3);
}

/* Admin Badge */
.admin-badge {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(231, 76, 60, 0.3);
}

/* Custom Ranks */
.custom-rank {
    background: rgba(108, 99, 255, 0.1);
    color: #6c63ff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.9em;
    font-weight: 600;
    margin-right: 8px;
    border: 1px solid rgba(108, 99, 255, 0.3);
}

/* --- Settings Page Modern Glassmorphism Styles --- */
.settings-container {
  max-width: 600px;
  margin: 48px auto 48px auto;
  background: linear-gradient(120deg, rgba(99,102,241,0.13) 60%, rgba(139,92,246,0.10) 100%);
  border-radius: 2.2rem;
  box-shadow: 0 8px 32px 0 rgba(99,102,241,0.10), 0 2px 12px #8b5cf633;
  border: 1.5px solid rgba(99,102,241,0.13);
  padding: 2.5rem 2.2rem 2.5rem 2.2rem;
  position: relative;
  z-index: 1;
}
.settings-header {
  text-align: center;
  margin-bottom: 2.2rem;
}
.settings-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #6c63ff;
  letter-spacing: -0.01em;
  margin-bottom: 0.3em;
}
.settings-subtitle {
  color: #b3b3ff;
  font-size: 1.15rem;
  margin-bottom: 0.5em;
}
.settings-content {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}
.settings-section {
  background: linear-gradient(120deg, rgba(99,102,241,0.10) 60%, rgba(139,92,246,0.08) 100%);
  border-radius: 1.3rem;
  box-shadow: 0 2px 8px 0 rgba(99,102,241,0.07), 0 1px 4px #8b5cf611;
  border: 1.2px solid rgba(99,102,241,0.10);
  padding: 1.7rem 1.5rem 1.7rem 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
}
.section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #6c63ff;
  margin-bottom: 1.1rem;
  letter-spacing: 0.01em;
}
.form-group {
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}
.settings-section input[type="text"],
.settings-section input[type="password"],
.settings-section input[type="url"],
.settings-section textarea {
  background: rgba(255,255,255,0.10);
  border: 1.2px solid #6c63ff33;
  border-radius: 0.7em;
  color: #e0e7ff;
  font-size: 1.08em;
  padding: 0.9em 1.1em;
  margin-top: 0.2em;
  margin-bottom: 0.2em;
  transition: border 0.18s, box-shadow 0.18s;
  box-shadow: 0 1px 4px #6c63ff11;
}
.settings-section input[type="text"]:focus,
.settings-section input[type="password"]:focus,
.settings-section input[type="url"]:focus,
.settings-section textarea:focus {
  outline: none;
  border: 1.5px solid #6c63ff;
  box-shadow: 0 0 0 2px #6c63ff22;
}
.settings-section input[readonly] {
  background: rgba(255,255,255,0.07);
  color: #b3b3ff;
}
.settings-section button,
.settings-section .btn-primary {
  background: linear-gradient(90deg, #6366f1 60%, #8b5cf6 100%);
  color: #fff;
  border: none;
  border-radius: 0.8em;
  font-size: 1.08em;
  font-weight: 700;
  padding: 0.9em 1.5em;
  margin-top: 0.5em;
  cursor: pointer;
  box-shadow: 0 2px 8px #6c63ff22;
  transition: background 0.18s, box-shadow 0.18s, transform 0.12s;
}
.settings-section button:hover,
.settings-section .btn-primary:hover {
  background: linear-gradient(90deg, #574fd6 60%, #6c63ff 100%);
  box-shadow: 0 4px 16px #6c63ff33;
  transform: translateY(-2px) scale(1.03);
}
.settings-section button:active,
.settings-section .btn-primary:active {
  background: #3d36b2;
  transform: scale(0.98);
}
/* Delete Account Section Special Style */
.settings-section[style*="background: #fff5f5"] {
  background: linear-gradient(120deg, rgba(220,53,69,0.13) 60%, rgba(255,99,132,0.10) 100%) !important;
  border: 1.5px solid #dc3545 !important;
  box-shadow: 0 2px 12px #dc354522 !important;
}
.settings-section[style*="background: #fff5f5"] .section-title {
  color: #dc3545 !important;
}
.settings-section[style*="background: #fff5f5"] button,
.settings-section[style*="background: #fff5f5"] .btn-primary {
  background: linear-gradient(90deg, #dc3545 60%, #ff6384 100%) !important;
  color: #fff !important;
  box-shadow: 0 2px 8px #dc354522 !important;
}
.settings-section[style*="background: #fff5f5"] button:hover,
.settings-section[style*="background: #fff5f5"] .btn-primary:hover {
  background: linear-gradient(90deg, #b52a37 60%, #ff6384 100%) !important;
  box-shadow: 0 4px 16px #dc354533 !important;
}
.alert {
  padding: 1em 1.2em;
  border-radius: 0.7em;
  margin-bottom: 1.2em;
  font-size: 1.05em;
  font-weight: 600;
  box-shadow: 0 1px 4px #6c63ff11;
}
.alert-success {
  background: linear-gradient(90deg, #10b98122 60%, #6ee7b7 100%);
  color: #10b981;
  border: 1.2px solid #10b98144;
}
.alert-error {
  background: linear-gradient(90deg, #dc354522 60%, #ff6384 100%);
  color: #dc3545;
  border: 1.2px solid #dc354544;
}
@media (max-width: 700px) {
  .settings-container {
    padding: 1.2rem 0.5rem;
    max-width: 99vw;
  }
  .settings-section {
    padding: 1.1rem 0.5rem 1.1rem 0.5rem;
  }
} 