/* ========================================================================
   DESIGN TOKENS & SHARED STYLES
   ======================================================================== */
:root {
  --void: #0c0a12;
  --void-2: #100d17;
  --panel: #171320;
  --panel-2: #1d1728;
  --border: #2b2436;
  --border-lit: #4a3a24;
  --gold: #c9a15a;
  --gold-bright: #e8c579;
  --gold-dim: #6e5a34;
  --parchment: #e8dfc9;
  --ink: #7a7488;
  --grad-a: linear-gradient(160deg, var(--panel-2), var(--void-2));
  --grad-b: linear-gradient(160deg, var(--panel-2), var(--panel));
  
  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 12px;
  --spacing-lg: 16px;
  --spacing-xl: 24px;
  --spacing-2xl: 28px;
  
  /* Sizing */
  --sidebar-width: 320px;
  --screen-height: 850px;
  --chat-height: 280px;
  --gap: 16px;
  
  /* Style */
  --border-radius: 4px;
  --radius-lg: 6px;
  --transition: all 0.2s ease;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  overflow-x: auto;
}

body {
  margin: 0;
  background: var(--void);
  color: var(--parchment);
  font-family: 'EB Garamond', Georgia, 'Times New Roman', serif;
  font-size: 17px;
  min-height: 100vh;
  overflow-x: auto;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Fixed-width centered container */
body > header,
body > .game-area {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 2000px;
  padding: 0 var(--spacing-2xl);
  box-sizing: border-box;
}

/* Candlelit vignette + grain, fixed behind everything */
body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background:
    radial-gradient(ellipse 70% 55% at 50% 8%, rgba(201, 161, 90, 0.07), transparent 60%),
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(0, 0, 0, 0.55), transparent 55%);
}

body::after {
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ========================================================================
   HEADER
   ======================================================================== */
header {
  position: relative;
  padding: 2px 0 16px;
  z-index: 2;
}

h1 {
  margin: 0;
  font-family: 'Cinzel', 'Times New Roman', serif;
  font-size: 2.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 55%, var(--gold-dim) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(201, 161, 90, 0.35);
}

.top-icons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  z-index: 100;
}

/* ========================================================================
   BUTTONS (Top Icons)
   ======================================================================== */
.map-icon-btn,
.account-icon-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--gold);
  cursor: pointer;
  border-radius: var(--border-radius);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
}

.account-icon-btn {
  font-size: 1.3rem;
}

.map-icon-btn {
  font-size: 1.5rem;
}

.map-icon-btn:hover,
.account-icon-btn:hover {
  background: var(--panel-2);
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(201, 161, 90, 0.3);
}

/* ========================================================================
   GAME AREA - GRID LAYOUT
   Clean, equal spacing, no resize issues
   ======================================================================== */

.game-area {
  display: grid;
  grid-template-columns: var(--sidebar-width) 1280px var(--sidebar-width);
  grid-template-rows: var(--screen-height) auto;
  gap: var(--gap);
  position: relative;
  z-index: 1;
  
  width: 100%;
  height: 100%;
  min-height: calc(var(--screen-height) + var(--chat-height) + var(--gap));
  
  margin-top: 0;
  margin-bottom: var(--spacing-xl);
}

/* Shared panel styling */
.framed {
  position: relative;
}

/* ========================================================================
   LEFT SIDEBAR (Empty placeholder)
   ======================================================================== */
aside.side:first-of-type {
  grid-column: 1;
  grid-row: 1 / 3;
  
  width: var(--sidebar-width);
  background: var(--grad-b);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.4);
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  color: var(--ink);
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

/* ========================================================================
   CENTER COLUMN - Screen + Chat
   ======================================================================== */
.screen-col {
  grid-column: 2;
  grid-row: 1 / 3;
  
  display: grid;
  grid-template-rows: var(--screen-height) 1fr;
  gap: var(--gap);
  
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

/* Main screen/map area */
main.screen {
  grid-row: 1;
  
  width: 100%;
  height: var(--screen-height);
  
  position: relative;
  background: var(--grad-b);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.4);
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  color: var(--ink);
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  
  overflow: hidden;
}

.map-container {
  position: absolute;
  inset: 0;
  display: none !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.map-container.active {
  display: flex !important;
}

.world-map {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Chat box */
.chat-box {
  grid-row: 2;
  
  width: 100%;
  min-height: var(--chat-height);
  
  background: var(--grad-b);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.4);
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  color: var(--ink);
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

/* ========================================================================
   RIGHT SIDEBAR - Profile Panel
   ======================================================================== */
aside.side#profile {
  grid-column: 3;
  grid-row: 1 / 3;
  
  width: var(--sidebar-width);
  background: var(--grad-b);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.4);
  
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  
  padding: var(--spacing-sm) var(--spacing-md) 26px;
  color: var(--parchment);
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  position: relative;
  
  overflow-y: auto;
  overflow-x: hidden;
}

#profile-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.profile-settings-btn,
.sign-out-btn {
  position: absolute;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-dim);
  transition: var(--transition);
}

.profile-settings-btn {
  top: 2px;
  left: 2px;
  font-size: 1.35rem;
}

.sign-out-btn {
  top: 2px;
  right: 2px;
  font-size: 1.15rem;
}

.profile-settings-btn:hover {
  color: var(--gold-bright);
  transform: scale(1.15);
}

.sign-out-btn:hover {
  color: #ff6b6b;
  transform: scale(1.15);
}

/* ========================================================================
   ACCOUNT WIDGET
   ======================================================================== */
.account-widget {
  position: relative;
}

.account-dropdown {
  position: absolute;
  top: 48px;
  right: 0;
  min-width: 160px;
  display: none;
  flex-direction: column;
  background: var(--panel-2);
  border: 1px solid var(--border-lit);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  z-index: 101;
}

.account-dropdown.open {
  display: flex;
}

.account-dropdown-item {
  padding: var(--spacing-sm) var(--spacing-md);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: 'EB Garamond', serif;
  font-size: 0.9rem;
  color: var(--parchment);
  transition: background 0.15s ease;
}

.account-dropdown-item:hover {
  background: var(--panel);
  color: var(--gold-bright);
}

.account-dropdown-item + .account-dropdown-item {
  border-top: 1px solid var(--border);
}

/* ========================================================================
   MODAL SHELLS (Login, Signup, Profile Settings)
   ======================================================================== */
.profile-settings-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.profile-settings-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.profile-settings-content {
  position: relative;
  background: var(--grad-b);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.profile-settings-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-xl);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.profile-settings-header h2 {
  margin: 0;
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
}

.close-btn {
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: none;
  color: var(--parchment);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.close-btn:hover {
  color: var(--gold);
  transform: scale(1.1);
}

.profile-settings-body {
  padding: var(--spacing-xl);
  flex: 1;
  overflow-y: auto;
}

.profile-settings-footer {
  display: flex;
  gap: var(--spacing-md);
  padding: var(--spacing-xl);
  border-top: 1px solid var(--border);
  justify-content: flex-end;
  flex-shrink: 0;
}

.profile-settings-footer.no-border {
  border-top: none;
  padding: var(--spacing-xs) 0 0;
  justify-content: space-between;
  align-items: center;
}

/* ========================================================================
   FORM INPUTS & SETTINGS
   ======================================================================== */
.settings-group {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--spacing-lg);
}

.settings-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.settings-group input,
.settings-group select {
  padding: var(--spacing-sm) var(--spacing-md);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  color: var(--parchment);
  font-family: 'EB Garamond', serif;
  font-size: 0.95rem;
  transition: var(--transition);
}

.settings-group input:focus,
.settings-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(201, 161, 90, 0.3);
}

/* Checkbox styling */
.settings-group.checkbox-row {
  flex-direction: row;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  cursor: pointer;
  font-family: 'EB Garamond', serif;
  font-size: 0.85rem;
  color: var(--ink);
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  accent-color: var(--gold);
  cursor: pointer;
}

/* Avatar grid */
.avatar-settings {
  margin-bottom: var(--spacing-xl);
}

.avatar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.avatar-option {
  position: relative;
  cursor: pointer;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border);
  transition: var(--transition);
  aspect-ratio: 1;
}

.avatar-option img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.avatar-option:hover {
  border-color: var(--gold-dim);
  box-shadow: 0 0 12px rgba(201, 161, 90, 0.3);
}

.avatar-option.selected {
  border-color: var(--gold-bright);
  box-shadow: 0 0 16px rgba(201, 161, 90, 0.6), inset 0 0 12px rgba(201, 161, 90, 0.2);
}

.avatar-option.selected::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold-bright);
  background: rgba(0, 0, 0, 0.4);
  font-weight: bold;
}

/* ========================================================================
   BUTTONS
   ======================================================================== */
.btn-cancel,
.btn-save,
.auth-link {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--border-radius);
}

.btn-cancel,
.btn-save {
  padding: var(--spacing-sm) var(--spacing-xl);
  border: 1px solid var(--border);
}

.btn-cancel {
  background: var(--panel);
  color: var(--gold-dim);
}

.btn-cancel:hover {
  background: var(--panel-2);
  color: var(--gold);
  border-color: var(--gold);
}

.btn-save {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: var(--void);
}

.btn-save:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  box-shadow: 0 0 12px rgba(201, 161, 90, 0.4);
}

.auth-link {
  background: none;
  border: none;
  color: var(--gold-dim);
  font-family: 'EB Garamond', serif;
  font-size: 0.85rem;
  text-decoration: underline;
  padding: var(--spacing-xs);
}

.auth-link:hover {
  color: var(--gold-bright);
}

/* ========================================================================
   AUTH MESSAGES
   ======================================================================== */
.auth-error {
  margin: 0;
  min-height: 1.1em;
  font-size: 0.82rem;
  color: #ff8a8a;
}

.auth-error.auth-success {
  color: #8fd98f;
}

/* ========================================================================
   PROFILE DISPLAY (Right Sidebar Content)
   ======================================================================== */
.joined-pill {
  align-self: flex-start;
  width: auto;
  margin: 0 0 -8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}

.joined-label {
  font-variant: small-caps;
  font-size: 0.78rem;
  color: var(--ink);
}

.joined-date {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  color: var(--gold);
  font-size: calc(0.66rem + 2px);
}

.name-level-row {
  align-self: center;
  margin-top: var(--spacing-md);
  width: 249px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 7px;
}

.profile-name {
  flex: 1;
  min-width: 0;
  height: 35px;
  position: relative;
  padding: 0 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: 12.6px;
  letter-spacing: 0.14em;
  color: var(--gold);
  background: var(--grad-a);
  border: 1px solid var(--gold-dim);
  border-radius: var(--border-radius);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5), 0 0 10px rgba(201, 161, 90, 0.12);
}

.profile-name .name-text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
  margin-right: -0.14em;
}

.profile-name::after {
  content: "";
  position: absolute;
  inset: 3px;
  pointer-events: none;
  border: 1px solid rgba(201, 161, 90, 0.35);
}

.level-value {
  flex: 0 0 auto;
  min-width: 46px;
  height: 35px;
  position: relative;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 14.8px;
  letter-spacing: 0.04em;
  color: var(--gold);
  background: var(--grad-a);
  border: 1px solid var(--gold-dim);
  border-radius: var(--border-radius);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5), 0 0 10px rgba(201, 161, 90, 0.12);
}

.level-value::after {
  content: "";
  position: absolute;
  inset: 3px;
  pointer-events: none;
  border: 1px solid rgba(201, 161, 90, 0.35);
}

/* Profile avatar */
.profile-avatar {
  width: 249px;
  height: 290px;
  margin: var(--spacing-md) auto 0;
  position: relative;
  border-radius: var(--border-radius);
  background: var(--grad-a);
  border: 1px solid var(--gold-dim);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.55), 0 0 18px rgba(201, 161, 90, 0.12);
  overflow: hidden;
}

.profile-avatar::after {
  content: "";
  position: absolute;
  inset: 3px;
  pointer-events: none;
  border: 1px solid rgba(201, 161, 90, 0.35);
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Title badge */
.title-badge-wrapper {
  align-self: center;
  width: 249px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 5px;
}

.profile-title {
  align-self: center;
  width: 249px;
  height: 35px;
  margin-top: var(--spacing-md);
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: 11.7px;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  background: var(--grad-a);
  border: 1px solid var(--gold-dim);
  border-radius: var(--border-radius);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5), 0 0 10px rgba(201, 161, 90, 0.12);
}

.profile-title::after {
  content: "";
  position: absolute;
  inset: 3px;
  pointer-events: none;
  border: 1px solid rgba(201, 161, 90, 0.35);
}

.icon-badge {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 4px rgba(201, 161, 90, 0.4));
}

/* ========================================================================
   STAT DISPLAY
   ======================================================================== */
.group-label {
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-variant: small-caps;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--gold);
}

.group-label::before,
.group-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-lit), transparent);
}

.group-label.gap {
  margin-top: 22px;
}

.group-label:first-of-type {
  margin-top: 0;
}

.group-label.details-label,
.group-label.stats-label {
  margin-top: 7px;
}

.stat-list {
  margin-top: 2px;
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 2px var(--spacing-md);
}

.stat {
  display: flex;
  align-items: center;
  padding: 9px 2px;
  font-size: 0.92rem;
  color: var(--ink);
}

.stat::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-right: var(--spacing-sm);
  background: var(--gold-dim);
  transform: rotate(45deg);
  flex: 0 0 auto;
}

.stat + .stat {
  border-top: 1px solid var(--border);
}

.stat-value {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--parchment);
  margin-left: auto;
}

/* ========================================================================
   VITAL BARS (Health, Mana)
   ======================================================================== */
.stat.vital-stat {
  display: flex;
  align-items: center;
  padding: 9px 4px;
  gap: var(--spacing-sm);
}

.stat.vital-stat::before {
  content: none;
}

.stat.vital-stat .stat-value {
  display: none;
}

.vital-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vital-icon svg {
  width: 100%;
  height: 100%;
}

.health-stat .vital-icon {
  filter: drop-shadow(0 0 6px rgba(255, 68, 68, 0.65));
}

.mana-stat .vital-icon {
  filter: drop-shadow(0 0 6px rgba(77, 157, 255, 0.65));
}

.vital-bar-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: stretch;
  margin-left: auto;
  flex: 1;
}

.vital-bar-wrapper {
  width: 100%;
  height: 16px;
  background: var(--panel);
  border: 1px solid var(--gold-dim);
  border-radius: 8px;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.7), 0 0 8px rgba(201, 161, 90, 0.12);
  position: relative;
  overflow: hidden;
}

.vital-bar {
  height: 100%;
  transition: width 0.4s ease;
  position: relative;
}

.health-stat .vital-bar {
  background: linear-gradient(90deg, #8a1224 0%, #d43a4a 55%, #ff6b6b 100%);
  box-shadow: 0 0 10px rgba(255, 68, 68, 0.55), inset 0 0 4px rgba(0, 0, 0, 0.4);
}

.mana-stat .vital-bar {
  background: linear-gradient(90deg, #0f3f8f 0%, #3a7bd4 55%, #6bb3ff 100%);
  box-shadow: 0 0 10px rgba(77, 157, 255, 0.55), inset 0 0 4px rgba(0, 0, 0, 0.4);
}

.vital-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 9px 9px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 55%);
}

.vital-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.62rem;
  color: var(--parchment);
  letter-spacing: 0.03em;
  white-space: nowrap;
  line-height: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 0 4px rgba(0, 0, 0, 0.6);
}
