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

:root {
  --primary-color: #5865F2;
  --primary-hover: #4752c4;
  --background: #121212;
  --card-bg: #1f1f1f;
  --text-color: #fff;
  --text-secondary: #b0b0b0;
  --success: #43b581;
  --warning: #faa61a;
  --danger: #f04747;
  --border: rgba(255, 255, 255, 0.1);
  --gradient-purple: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-blue: linear-gradient(135deg, #5865F2 0%, #7289da 100%);
  --gradient-ocean: linear-gradient(135deg, #2E3192 0%, #1BFFFF 100%);
  --gradient-sunset: linear-gradient(135deg, #FA8BFF 0%, #2BD2FF 50%, #2BFF88 100%);
  --gradient-fire: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-neon: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  background: var(--background);
  color: var(--text-color);
  scroll-behavior: smooth;
  line-height: 1.6;
}

.dot-grid {
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.8;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.site-header {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  font-size: 1.5rem;
}

.brand-name {
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-menu a {
  font-weight: 500;
}

.nav-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--primary-color);
  color: var(--text-color);
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.2s;
}

.nav-btn:hover {
  background-color: var(--primary-hover);
  opacity: 1;
}

.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--text-color);
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
  opacity: 1;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.hero {
  text-align: center;
  margin: 3rem 0 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: var(--gradient-ocean);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
  background-size: 200% 200%;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.image-text-section {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 3rem 0;
}

.text-block {
  flex: 1;
  min-width: 250px;
}

.text-block h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin: 3rem 0;
}

.feature-card {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  width: 280px;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-neon);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 0;
}

.feature-card:hover::before {
  left: 0;
  opacity: 0.1;
}

.content-section {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.content-section h2 {
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.content-section h2:first-child {
  margin-top: 0;
}

.content-section p {
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(79, 172, 254, 0.3);
  border-color: rgba(79, 172, 254, 0.5);
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  margin: 0.5rem 0;
  font-size: 1.3rem;
  color: var(--primary-color);
}

.faq-section {
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-section h2 {
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 2rem;
}

.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}

.faq-question {
  cursor: pointer;
  font-weight: 600;
  position: relative;
  padding-right: 20px;
  font-size: 1.1rem;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  transition: transform 0.2s;
  font-size: 1.5rem;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 0.5rem;
  color: var(--text-secondary);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.cta-section {
  text-align: center;
  margin: 3rem 0;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  margin-top: 4rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-copy, .footer-contact {
  color: var(--text-secondary);
}

.login-section {
  max-width: 600px;
  margin: 3rem auto;
  text-align: center;
}

.login-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.info-text {
  color: var(--warning);
  font-weight: 500;
  margin: 1rem 0;
}

.login-container {
  margin: 2rem 0;
}

.discord-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background-color: var(--primary-color);
  color: var(--text-color);
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.2s;
}

.discord-login-btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
  opacity: 1;
}

.login-info {
  margin-top: 2rem;
  text-align: left;
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.login-info h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.login-info ul {
  list-style-position: inside;
  color: var(--text-secondary);
}

.login-info li {
  margin: 0.5rem 0;
}

.dashboard-section {
  margin: 2rem 0;
}

.dashboard-section h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.dashboard-card {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: transform 0.2s;
}

.dashboard-card:hover {
  transform: translateY(-3px);
}

.dashboard-card h2 {
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.user-avatar-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
}

.action-card {
  text-align: center;
}

.quick-links {
  list-style: none;
}

.quick-links li {
  margin: 0.75rem 0;
}

.quick-links a {
  color: var(--primary-color);
  font-weight: 500;
}

.quick-links a:hover {
  text-decoration: underline;
}

.beta-link {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  background-size: 200% 200%;
  animation: gradient-shift 3s ease infinite;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

.status-section {
  margin: 2rem 0;
  text-align: center;
}

.status-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.last-updated {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.status-card {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.status-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-purple);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.status-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.status-card:hover::after {
  opacity: 1;
}

.status-indicator {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.status-up .status-indicator {
  background: rgba(67, 181, 129, 0.2);
  color: var(--success);
}

.status-down .status-indicator {
  background: rgba(240, 71, 71, 0.2);
  color: var(--danger);
}

.status-maintenance .status-indicator {
  background: rgba(250, 166, 26, 0.2);
  color: var(--warning);
}

.status-badge {
  margin-top: 0.5rem;
}

.badge-up,
.badge-down,
.badge-maintenance {
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
}

.badge-up {
  background: rgba(67, 181, 129, 0.2);
  color: var(--success);
  border: 1px solid var(--success);
}

.badge-down {
  background: rgba(240, 71, 71, 0.2);
  color: var(--danger);
  border: 1px solid var(--danger);
}

.badge-maintenance {
  background: rgba(250, 166, 26, 0.2);
  color: var(--warning);
  border: 1px solid var(--warning);
}

.badge-supported {
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  background: rgba(67, 181, 129, 0.2);
  color: var(--success);
  border: 1px solid var(--success);
}

.badge-unsupported {
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  background: rgba(176, 176, 176, 0.2);
  color: var(--text-secondary);
  border: 1px solid var(--text-secondary);
}

.badge-admin,
.badge-support {
  font-size: 0.65rem;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.badge-admin {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.badge-support {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
}

.showcase-section {
  margin: 2rem 0;
}

.showcase-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.showcase-videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.video-wrapper {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.video-wrapper:hover {
  transform: translateY(-5px);
}

.video-wrapper iframe {
  width: 100%;
  height: 200px;
  display: block;
}

.video-info {
  padding: 1rem;
}

.video-info h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.showcase-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.showcase-cta h2 {
  margin-bottom: 1.5rem;
}

.chatroom-section {
  margin: 2rem 0;
}

.chatroom-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.chatroom-container {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 1.5rem;
  height: 600px;
  margin-top: 2rem;
}

.chatroom-sidebar {
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 1rem;
  overflow-y: auto;
}

.chatroom-sidebar h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: 1rem;
}

.users-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.user-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.user-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.user-item-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.user-item-name {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.badge-admin-small,
.badge-support-small {
  font-size: 0.6rem;
  padding: 0.1rem 0.3rem;
  border-radius: 2px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.badge-admin-small {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.badge-support-small {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
}

.chatroom-main {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.welcome-message {
  text-align: center;
  padding: 2rem;
  background: rgba(88, 101, 242, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(88, 101, 242, 0.3);
}

.welcome-message h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.welcome-message p {
  color: var(--text-secondary);
}

.chat-message {
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
}

.message-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.message-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
}

.message-username {
  font-weight: 600;
  color: var(--text-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.message-username:hover {
  text-decoration: underline;
}

.message-time {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.message-content {
  color: var(--text-color);
  word-wrap: break-word;
  line-height: 1.5;
}

.chat-input-container {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
}

.chat-input {
  flex: 1;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-color);
  font-size: 1rem;
  font-family: inherit;
}

.chat-input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.modal-content {
  background: var(--card-bg);
  margin: 10% auto;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.close {
  color: var(--text-secondary);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
}

.close:hover {
  color: var(--text-color);
}

.profile-view {
  text-align: center;
}

.profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: block;
  border: 3px solid var(--primary-color);
}

.profile-avatar-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--primary-color);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: bold;
}

.profile-view h2 {
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.profile-badges {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.profile-bio {
  color: var(--text-secondary);
  margin: 1rem 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  line-height: 1.6;
}

.profile-info {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.profile-info p {
  color: var(--text-secondary);
  margin: 0.5rem 0;
}

.settings-section {
  margin: 2rem 0;
}

.settings-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.settings-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-color);
  font-size: 1rem;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-hint {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.message {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: none;
}

.message.success {
  background: rgba(67, 181, 129, 0.2);
  border: 1px solid var(--success);
  color: var(--success);
  display: block;
}

.message.error {
  background: rgba(240, 71, 71, 0.2);
  border: 1px solid var(--danger);
  color: var(--danger);
  display: block;
}

.status-info {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.status-info h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.status-info ul {
  list-style: none;
  padding-left: 0;
}

.status-info li {
  margin: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.status-info .note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.credits-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.credits-section > * {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.credits-section h1 {
  text-align: center;
}

.credits-section > p {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.credits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.credit-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  text-align: center;
}

.credit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(88, 101, 242, 0.3);
}

.credit-role {
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.credit-card h2 {
  font-size: 1.8rem;
  margin: 0.5rem 0;
  color: var(--text-color);
}

.credit-card p {
  color: var(--text-secondary);
  margin-top: 1rem;
  line-height: 1.6;
}

.credits-footer {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.credits-footer h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.credits-footer p {
  color: var(--text-secondary);
  margin: 0.75rem 0;
  line-height: 1.6;
}

.credits-footer a {
  color: var(--primary-color);
  font-weight: 600;
}

@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .status-grid {
    grid-template-columns: 1fr;
  }

  .chatroom-container {
    grid-template-columns: 1fr;
    height: auto;
  }

  .chatroom-sidebar {
    max-height: 200px;
  }

  .showcase-videos {
    grid-template-columns: 1fr;
  }

  .video-wrapper iframe {
    height: 250px;
  }

  .modal-content {
    width: 95%;
    margin: 20% auto;
  }
}