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

:root {
  --bg: #0a0a0f;
  --bg-card: #12121a;
  --bg-sidebar: #0e0e16;
  --bg-input: #16161f;
  --border: #1e1e2e;
  --blue: #3b82f6;
  --blue-glow: rgba(59, 130, 246, 0.3);
  --red: #ef4444;
  --red-glow: rgba(239, 68, 68, 0.3);
  --green: #22c55e;
  --green-glow: rgba(34, 197, 94, 0.3);
  --text: #e8e8f0;
  --text-dim: #6b6b80;
  --text-muted: #44445a;
  --white: #ffffff;
  --danger: #ef4444;
  --warning: #f59e0b;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

.screen { display: none; min-height: 100vh; }
.screen.active { display: flex; }

/* ============================
   TELA 1: INTRO ANIMATION
   ============================ */
#screen-intro {
  justify-content: center;
  align-items: center;
  background: #000;
  position: relative;
  overflow: hidden;
}

.intro-container {
  text-align: center;
  z-index: 2;
  position: relative;
}

.intro-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 6rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: scale(0.3);
  animation: introZoom 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.intro-ca {
  color: var(--blue);
  text-shadow: 0 0 40px var(--blue-glow), 0 0 80px var(--blue-glow);
}

.intro-dan {
  color: var(--red);
  text-shadow: 0 0 40px var(--red-glow), 0 0 80px var(--red-glow);
}

.intro-subtitle {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 1em;
  color: var(--text-dim);
  opacity: 0;
  transform: translateY(20px);
  animation: introFade 1s ease 1.8s forwards;
  margin-top: 1rem;
}

.intro-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--blue);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 3s ease-in-out infinite;
}

@keyframes introZoom {
  0% { opacity: 0; transform: scale(0.3); filter: blur(20px); }
  60% { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: scale(1); filter: blur(0); }
}

@keyframes introFade {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100vh); }
  50% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-10vh); }
}

/* ============================
   TELA 2: PERFIS NETFLIX
   ============================ */
#screen-profiles {
  flex-direction: column;
  align-items: center;
  background: var(--bg);
  padding: 2rem;
}

.profiles-header {
  width: 100%;
  padding: 1rem 2rem;
}

.profiles-logo, .profiles-logo span {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
}
.logo-ca { color: var(--blue); }
.logo-dan { color: var(--red); }

.profiles-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.profiles-title {
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.02em;
}

.profiles-grid {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.profile-card {
  cursor: pointer;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  group: true;
}
.profile-card:hover { transform: scale(1.08); }

.profile-img-wrap {
  width: 140px;
  height: 140px;
  border-radius: 8px;
  overflow: hidden;
  border: 3px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative;
}

.profile-card:hover .profile-img-wrap {
  border-color: var(--blue);
  box-shadow: 0 0 20px var(--blue-glow);
}

.profile-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.profile-card:hover .profile-img-wrap img { transform: scale(1.05); }

.profile-name {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-dim);
  transition: color 0.3s;
}
.profile-card:hover .profile-name { color: var(--white); }

.profile-delete {
  display: none;
  position: absolute;
  top: -6px;
  right: -6px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 13px;
  line-height: 26px;
  z-index: 10;
  box-shadow: 0 0 10px var(--red-glow);
}
.manage-mode .profile-delete { display: block; }
.manage-mode .profile-img-wrap { border-color: var(--red); }

.btn-add-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  font-size: 0.9rem;
  font-family: inherit;
  transition: color 0.3s;
}
.btn-add-profile:hover { color: var(--blue); }

.add-icon {
  width: 140px;
  height: 140px;
  border: 2px dashed var(--text-muted);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 300;
  transition: all 0.3s;
}
.btn-add-profile:hover .add-icon {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 0 20px var(--blue-glow);
}

.profiles-footer { padding: 2rem; }
.btn-manage {
  background: none;
  border: 1px solid var(--text-muted);
  color: var(--text-dim);
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  transition: all 0.3s;
}
.btn-manage:hover { border-color: var(--text); color: var(--text); }

/* MINECRAFT PROFILE IMAGES */
.mc-profile-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

/* ============================
   TELA 2.5: CRIAR PERFIL
   ============================ */
#screen-create {
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.85);
}

.create-overlay { width: 100%; display: flex; justify-content: center; }

.create-modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  max-width: 480px;
  width: 90%;
  text-align: center;
}
.create-modal h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.create-avatar-preview {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  margin: 0 auto 1.25rem;
  border: 2px solid var(--blue);
  box-shadow: 0 0 15px var(--blue-glow);
}
.create-avatar-preview img { width: 100%; height: 100%; object-fit: cover; }

.create-avatars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  max-height: 180px;
  overflow-y: auto;
  padding: 0.25rem;
}
.create-avatars::-webkit-scrollbar { width: 4px; }
.create-avatars::-webkit-scrollbar-thumb { background: var(--text-muted); border-radius: 4px; }

.av-option {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  background: var(--bg);
}
.av-option:hover, .av-option.selected {
  border-color: var(--blue);
  transform: scale(1.1);
  box-shadow: 0 0 10px var(--blue-glow);
}
.av-option img { width: 100%; height: 100%; object-fit: cover; }

.create-input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s;
}
.create-input:focus { border-color: var(--blue); }
.create-input::placeholder { color: var(--text-muted); }

.create-actions { display: flex; gap: 1rem; justify-content: center; }
.btn-confirm {
  padding: 0.7rem 2rem;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.btn-confirm:hover { filter: brightness(1.15); box-shadow: 0 0 15px var(--blue-glow); }
.btn-cancel {
  padding: 0.7rem 2rem;
  background: none;
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.btn-cancel:hover { border-color: var(--text); color: var(--text); }

/* ============================
   TELA 3: PAINEL (ATERNOS-INSPIRED)
   ============================ */
#screen-panel {
  flex-direction: row;
  height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 220px;
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  height: 100vh;
  position: sticky;
  top: 0;
}

.sidebar-logo {
  padding: 1.5rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  border-bottom: 1px solid var(--border);
}
.slogo-ca { color: var(--blue); }
.slogo-dan { color: var(--red); }

.sidebar-nav {
  flex: 1;
  padding: 0.75rem 0;
  overflow-y: auto;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  border-left: 3px solid transparent;
}
.nav-item svg { width: 18px; height: 18px; flex-shrink: 0; }
.nav-item:hover { color: var(--text); background: rgba(255,255,255,0.03); }
.nav-item.active {
  color: var(--blue);
  background: rgba(59, 130, 246, 0.08);
  border-left-color: var(--blue);
}

.sidebar-bottom {
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
}

.sidebar-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  color: var(--text-dim);
  transition: color 0.2s;
}
.sidebar-profile:hover { color: var(--text); }
.sidebar-avatar {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

/* Main Content */
.panel-main {
  flex: 1;
  overflow-y: auto;
  position: relative;
}

/* Status Bar */
.status-bar {
  display: none;
  background: var(--green);
  color: #000;
  padding: 0.4rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  justify-content: space-between;
  align-items: center;
}
.status-bar.online { display: flex; }

/* Tab Content */
.tab-content { display: none; padding: 2rem; }
.tab-content.active { display: block; }
.tab-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.sub-title {
  font-size: 1rem;
  color: var(--text-dim);
  margin: 1.5rem 0 0.75rem;
}

/* TAB: Server */
.server-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  gap: 2rem;
}

.server-ip-box {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 2rem;
}
.server-ip-label { font-size: 0.8rem; color: var(--text-dim); display: block; margin-bottom: 0.5rem; }
.server-ip-row { display: flex; align-items: center; gap: 0.75rem; }
.server-ip-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 0.05em;
}
.btn-copy {
  background: var(--blue);
  color: white;
  border: none;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  transition: filter 0.2s;
}
.btn-copy:hover { filter: brightness(1.2); }
.server-ip-bedrock { font-size: 0.75rem; color: var(--text-muted); display: block; margin-top: 0.5rem; }

/* Power Button */
.btn-power {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}
.btn-power:hover { transform: scale(1.05); }

.power-svg { width: 100%; height: 100%; }
.power-ring {
  fill: none;
  stroke: var(--border);
  stroke-width: 3;
  transition: stroke 0.3s;
}
.power-icon {
  stroke: var(--text-dim);
  stroke-width: 4;
  fill: none;
  transition: stroke 0.3s;
}
.power-arc {
  stroke: var(--text-dim);
  stroke-width: 4;
  transition: stroke 0.3s;
}

.btn-power:hover .power-ring { stroke: var(--green); }
.btn-power:hover .power-icon,
.btn-power:hover .power-arc { stroke: var(--green); }

.btn-power.online .power-ring { stroke: var(--red); }
.btn-power.online .power-icon,
.btn-power.online .power-arc { stroke: var(--red); }
.btn-power.online:hover .power-ring { stroke: var(--danger); filter: drop-shadow(0 0 10px var(--red-glow)); }

.server-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: all 0.3s;
}
.status-dot.online {
  background: var(--green);
  box-shadow: 0 0 10px var(--green-glow);
}

.server-info-cards {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  text-align: center;
  min-width: 140px;
}
.info-label { font-size: 0.75rem; color: var(--text-dim); display: block; margin-bottom: 0.25rem; }
.info-value { font-size: 1rem; font-weight: 600; color: var(--white); }

/* TAB: Console */
.console-container { height: calc(100vh - 8rem); display: flex; flex-direction: column; }
.console-output {
  flex: 1;
  background: #000;
  border-radius: 8px;
  padding: 1rem;
  overflow-y: auto;
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  line-height: 1.6;
}
.console-output::-webkit-scrollbar { width: 6px; }
.console-output::-webkit-scrollbar-thumb { background: var(--text-muted); border-radius: 3px; }
.cline { margin-bottom: 0.15rem; color: #888; }
.cline.info { color: var(--blue); }
.cline.warn { color: var(--warning); }
.cline.error { color: var(--red); }

.console-input-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  align-items: center;
}
.console-prompt { color: var(--blue); font-family: monospace; font-size: 1.1rem; }
.console-input {
  flex: 1;
  padding: 0.6rem 0.75rem;
  background: #000;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  outline: none;
}
.console-input:focus { border-color: var(--blue); }
.btn-send {
  padding: 0.6rem 1.25rem;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: filter 0.2s;
}
.btn-send:hover { filter: brightness(1.2); }

/* TAB: Software */
.software-current {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
}
.software-badge {
  background: var(--blue);
  color: white;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
}
.software-version { color: var(--text); }
.software-status.active { color: var(--green); font-weight: 600; }

.software-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
}
.software-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.2s;
}
.software-card:hover { border-color: var(--blue); }
.software-card.selected { border-color: var(--blue); box-shadow: 0 0 10px var(--blue-glow); }
.sw-name { font-weight: 600; color: var(--white); margin-bottom: 0.25rem; }
.sw-desc { font-size: 0.8rem; color: var(--text-dim); }

.sw-select {
  width: 100%;
  max-width: 300px;
  padding: 0.6rem 0.75rem;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
}

/* TAB: Plugins */
.plugins-search { margin-bottom: 1rem; }
.search-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s;
}
.search-input:focus { border-color: var(--blue); }
.search-input::placeholder { color: var(--text-muted); }

.plugins-list { display: flex; flex-direction: column; gap: 0.5rem; }
.plugin-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s;
}
.plugin-row:hover { border-color: var(--blue); }
.plugin-info { display: flex; flex-direction: column; }
.plugin-name { font-weight: 600; font-size: 0.95rem; color: var(--white); }
.plugin-desc { font-size: 0.8rem; color: var(--text-dim); }
.plugin-toggle { flex-shrink: 0; }

/* TAB: Worlds */
.worlds-grid { display: flex; flex-direction: column; gap: 0.75rem; }
.world-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.25rem;
}
.world-icon { font-size: 2rem; }
.world-info { display: flex; flex-direction: column; flex: 1; }
.world-name { font-weight: 600; color: var(--white); }
.world-type { font-size: 0.8rem; color: var(--text-dim); }
.world-actions { display: flex; gap: 0.5rem; }
.btn-small {
  padding: 0.35rem 0.75rem;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-dim);
  font-size: 0.8rem;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.btn-small:hover { border-color: var(--blue); color: var(--text); }
.btn-small.danger:hover { border-color: var(--red); color: var(--red); }

/* TAB: Players */
.players-tabs { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.ptab {
  padding: 0.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-dim);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  transition: all 0.2s;
}
.ptab:hover { border-color: var(--blue); }
.ptab.active { background: var(--blue); color: white; border-color: var(--blue); }
.players-list { min-height: 100px; }
.empty-state { color: var(--text-muted); text-align: center; padding: 2rem; }

/* TAB: Options */
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.option-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.option-item label:first-child { font-size: 0.85rem; color: var(--text-dim); }

.opt-input, .opt-select {
  padding: 0.6rem 0.75rem;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
}
.opt-input:focus, .opt-select:focus { border-color: var(--blue); }

/* Toggle Switch */
.switch { position: relative; width: 48px; height: 26px; display: inline-block; }
.switch input { display: none; }
.slider {
  position: absolute;
  inset: 0;
  background: var(--text-muted);
  border-radius: 26px;
  cursor: pointer;
  transition: background 0.3s;
}
.slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s;
}
.switch input:checked + .slider { background: var(--blue); }
.switch input:checked + .slider::before { transform: translateX(22px); }

.btn-save {
  width: 100%;
  max-width: 300px;
  padding: 0.75rem;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.btn-save:hover { filter: brightness(1.15); box-shadow: 0 0 15px var(--blue-glow); }

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 0.75rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--blue);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.9rem;
  z-index: 9999;
  transform: translateX(120%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.toast.show { transform: translateX(0); }

/* AdSense */
.ad-container {
  width: 100%;
  max-width: 960px;
  text-align: center;
  margin: 0 auto;
  padding: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .intro-logo { font-size: 3.5rem; }
  .profiles-grid { gap: 1.5rem; }
  .profile-img-wrap { width: 100px; height: 100px; }
  .add-icon { width: 100px; height: 100px; font-size: 2rem; }

  #screen-panel { flex-direction: column; }
  .sidebar {
    width: 100%;
    height: auto;
    flex-direction: row;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    border-right: none;
    border-top: 1px solid var(--border);
  }
  .sidebar-logo, .sidebar-bottom { display: none; }
  .sidebar-nav {
    display: flex;
    overflow-x: auto;
    padding: 0;
    width: 100%;
  }
  .nav-item {
    flex-direction: column;
    font-size: 0.7rem;
    padding: 0.5rem 0.75rem;
    gap: 0.25rem;
    border-left: none;
    border-top: 2px solid transparent;
    white-space: nowrap;
  }
  .nav-item.active { border-left: none; border-top-color: var(--blue); }
  .nav-item svg { width: 16px; height: 16px; }

  .panel-main { padding-bottom: 60px; }
  .server-info-cards { flex-direction: column; align-items: center; }
  .options-grid { grid-template-columns: 1fr; }
  .create-avatars { grid-template-columns: repeat(5, 1fr); }
}

/* ============================
   TELA 2.75: SETUP IP (intermediaria)
   ============================ */
#screen-setup {
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.85);
}

.setup-modal {
  text-align: center;
}

.setup-logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.setup-profile-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.setup-avatar {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: 2px solid var(--blue);
}

.setup-profile-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.setup-label {
  display: block;
  text-align: left;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

/* Fixed IP display in setup screen */
.setup-fixed-ip {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.setup-ip-label {
  font-size: 0.8rem;
  color: #6b6b80;
}
.setup-ip-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  color: #3b82f6;
  font-weight: 600;
}
