/* =========================================
   ALOHA CLOUD OS DESKTOP & WINDOW MANAGER STYLES
   ========================================= */

#cloud-os-viewport {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background-color: #05070c;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(0, 240, 255, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(157, 78, 221, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(0, 229, 163, 0.06) 0%, transparent 50%);
  overflow: hidden;
  z-index: 80;
}

#cloud-os-viewport.active {
  display: block;
}

/* Mode Switcher Pill in Titlebar */
.os-mode-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: var(--accent-cyan);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  -webkit-app-region: no-drag;
}

.os-mode-pill:hover {
  background: var(--accent-cyan);
  color: #07090e;
  box-shadow: 0 0 12px var(--accent-cyan);
}

.os-mode-pill.in-os {
  background: rgba(157, 78, 221, 0.2);
  border-color: #9d4edd;
  color: #e0aaff;
}

/* Desktop Icons Grid - Auto-wrapping columns */
.os-desktop-icons {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-height: calc(100% - 100px);
  gap: 12px;
  z-index: 5;
}

.os-desktop-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 76px;
  padding: 8px 4px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s;
}

.os-desktop-icon:hover {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.os-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: rgba(16, 22, 35, 0.8);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.os-icon-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-main);
  text-align: center;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

/* =========================================
   FLOATING WINDOWS & COMPOSITOR
   ========================================= */
.os-window {
  position: absolute;
  background: rgba(14, 18, 29, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 240, 255, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 320px;
  min-height: 220px;
  transition: box-shadow 0.2s;
}

.os-window.active {
  border-color: var(--border-glow);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 240, 255, 0.18);
}

.os-window.minimized {
  display: none !important;
}

.os-window-header {
  height: 38px;
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  cursor: move;
  user-select: none;
}

.os-window-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
}

.os-window-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.os-win-btn {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  transition: all 0.15s;
}

.os-win-btn.close { background: #ff5f56; }
.os-win-btn.minimize { background: #ffbd2e; }
.os-win-btn.maximize { background: #27c93f; }

.os-win-btn:hover {
  transform: scale(1.15);
}

.os-window-body {
  flex: 1;
  overflow: auto;
  position: relative;
  display: flex;
  flex-direction: column;
}

.os-resize-handle {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 16px;
  height: 16px;
  cursor: nwse-resize;
}

/* =========================================
   FLOATING DOCK & TASKBAR
   ========================================= */
.os-dock {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  height: 56px;
  background: rgba(14, 18, 29, 0.75);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  z-index: 1000;
}

.os-dock-item {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.os-dock-item:hover {
  transform: translateY(-8px) scale(1.15);
  background: rgba(0, 240, 255, 0.15);
  box-shadow: 0 8px 16px rgba(0, 240, 255, 0.25);
}

.os-dock-dot {
  position: absolute;
  bottom: -4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 6px var(--accent-cyan);
}

.os-dock-separator {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 4px;
}

/* =========================================
   APP: CLOUD TERMINAL
   ========================================= */
.term-container {
  flex: 1;
  background: #06080e;
  color: #00f0ff;
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: 13px;
  padding: 12px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.term-output {
  white-space: pre-wrap;
  line-height: 1.5;
  margin-bottom: 8px;
}

.term-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.term-prompt {
  color: var(--accent-teal);
  font-weight: 700;
}

.term-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-family: inherit;
  font-size: inherit;
}

/* =========================================
   APP: CLOUD DEPLOYER (VERCEL-STYLE)
   ========================================= */
.deployer-container {
  flex: 1;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--text-main);
}

.deploy-wizard {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-surface-elevated);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.build-logs-terminal {
  height: 140px;
  background: #06080e;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px;
  font-family: monospace;
  font-size: 11px;
  color: #94a3b8;
  overflow-y: auto;
  white-space: pre-wrap;
}

.live-url-card {
  display: none;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 229, 163, 0.1);
  border: 1px solid var(--accent-teal);
  border-radius: var(--radius-md);
  padding: 12px 16px;
}

.live-url-card.active {
  display: flex;
  animation: bounce-in 0.3s;
}

/* =========================================
   APP: CODE STUDIO (IDE)
   ========================================= */
.ide-container {
  flex: 1;
  display: flex;
  height: 100%;
}

.ide-sidebar {
  width: 140px;
  background: rgba(0, 0, 0, 0.4);
  border-right: 1px solid var(--border-subtle);
  padding: 10px;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ide-file-item {
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--text-muted);
}

.ide-file-item.active {
  background: rgba(0, 240, 255, 0.15);
  color: var(--accent-cyan);
}

.ide-editor-area {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ide-toolbar {
  height: 34px;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
}

.ide-textarea {
  flex: 1;
  background: #07090e;
  border: none;
  outline: none;
  color: #38bdf8;
  font-family: 'Consolas', monospace;
  font-size: 13px;
  padding: 12px;
  resize: none;
  line-height: 1.5;
}

/* =========================================
   DEVELOPER OS APP: NX BUILDER
   ========================================= */
.builder-layout {
  display: flex;
  height: 100%;
  background: #07090e;
}

.builder-toolbox {
  width: 170px;
  background: rgba(14, 18, 29, 0.95);
  border-right: 1px solid var(--border-subtle);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.builder-tool-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.15s;
}

.builder-tool-btn:hover {
  background: rgba(0, 240, 255, 0.15);
  border-color: var(--accent-cyan);
  color: white;
}

.builder-canvas-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.builder-toolbar {
  height: 38px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
}

.builder-canvas {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: radial-gradient(circle at center, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 16px 16px;
}

.builder-block {
  background: rgba(16, 22, 35, 0.85);
  border: 1px dashed rgba(0, 240, 255, 0.3);
  border-radius: var(--radius-md);
  padding: 14px;
  position: relative;
  transition: border-color 0.2s;
}

.builder-block:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}

.builder-block-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 11px;
  color: var(--accent-cyan);
  font-weight: 700;
}

/* =========================================
   DEVELOPER OS APP: SELF-HOST STUDIO
   ========================================= */
.host-studio-container {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  overflow-y: auto;
  background: #07090e;
}

.host-nodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.host-node-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.2s;
}

.host-node-card.online {
  border-color: rgba(0, 229, 163, 0.5);
  box-shadow: 0 0 15px rgba(0, 229, 163, 0.1);
}

.host-node-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.host-status-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-dim);
}

.host-status-badge.online {
  background: rgba(0, 229, 163, 0.15);
  color: var(--accent-teal);
  border: 1px solid rgba(0, 229, 163, 0.3);
}

/* =========================================
   DEVELOPER OS APP: DEPLOY STUDIO
   ========================================= */
.deploy-studio-container {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  overflow-y: auto;
  background: #07090e;
}

.deploy-matrix-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.deploy-matrix-table th,
.deploy-matrix-table td {
  padding: 8px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}

.deploy-matrix-table th {
  color: var(--text-dim);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
}

/* =========================================
   DEVELOPER OS APP: OFFICE HUB (KANBAN)
   ========================================= */
.office-hub-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #07090e;
}

.office-hub-toolbar {
  height: 38px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
}

.kanban-board {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 14px;
  overflow-y: auto;
}

.kanban-col {
  background: rgba(14, 18, 29, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kanban-col-header {
  font-size: 12px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border-subtle);
}

.kanban-cards-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  overflow-y: auto;
}

.kanban-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px;
  cursor: pointer;
  transition: all 0.15s;
}

.kanban-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-1px);
}

/* =========================================
   DEVELOPER OS APP: BUSINESS HOST & SUBDOMAINS
   ========================================= */
.biz-container {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  overflow-y: auto;
  background: #07090e;
}

.biz-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.biz-category-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.2s;
}

.biz-category-card:hover {
  border-color: var(--accent-cyan);
  background: rgba(0, 240, 255, 0.05);
  transform: translateY(-1px);
}

.biz-category-card.selected {
  border-color: var(--accent-cyan);
  background: rgba(0, 240, 255, 0.12);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.15);
}

.biz-form-section {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.biz-input-row {
  display: flex;
  gap: 8px;
}

.biz-input {
  flex: 1;
  background: #04060a;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  color: white;
  font-size: 12px;
  outline: none;
}

.biz-input:focus {
  border-color: var(--accent-cyan);
}

.biz-live-cockpit {
  background: rgba(0, 229, 163, 0.08);
  border: 1px solid rgba(0, 229, 163, 0.3);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 20px rgba(0, 229, 163, 0.08);
}

/* =========================================
   GIT REPO & OPEN-SOURCE CLOUD STUDIO
   ========================================= */

.git-studio-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 12px;
  color: var(--text-main);
}

.git-nav-tabs {
  display: flex;
  gap: 6px;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.git-tab-btn {
  background: transparent;
  border: none;
  color: var(--text-dim);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.git-tab-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.git-tab-btn.active {
  background: rgba(0, 240, 255, 0.15);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 240, 255, 0.3);
}

.git-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  overflow-y: auto;
  padding-right: 4px;
}

.git-catalog-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.2s;
  position: relative;
}

.git-catalog-card:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 4px 20px rgba(0, 240, 255, 0.12);
  transform: translateY(-2px);
}

.git-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.git-card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
}

.git-category-badge {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(157, 78, 221, 0.2);
  color: #e0aaff;
  border: 1px solid rgba(157, 78, 221, 0.3);
  font-weight: 600;
}

.git-card-desc {
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.4;
  flex: 1;
}

.git-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.git-subdomain-tag {
  font-size: 11px;
  font-family: monospace;
  color: var(--accent-cyan);
}

.git-terminal-box {
  background: #06090e;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 11px;
  color: #00e5a3;
  height: 210px;
  overflow-y: auto;
  line-height: 1.5;
  white-space: pre-wrap;
}

.git-instance-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  transition: all 0.2s;
}

.git-instance-row:hover {
  border-color: rgba(0, 240, 255, 0.3);
}

.git-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #555;
  display: inline-block;
  margin-right: 6px;
}

.git-status-dot.live {
  background: #00e5a3;
  box-shadow: 0 0 8px #00e5a3;
}

/* =========================================
   PINNED BROWSER TABS & PERSISTENT SESSIONS
   ========================================= */

.tab-item.tab-pinned {
  max-width: 140px;
  background: rgba(0, 240, 255, 0.08);
  border-bottom: 2px solid var(--accent-cyan);
}

.tab-item.tab-pinned.active {
  background: rgba(0, 240, 255, 0.16);
  border-bottom: 2px solid #00f0ff;
}

.tab-item.tab-pinned .tab-favicon {
  font-size: 13px;
}

/* =========================================
   WORKSTATION PRO: CLOUD WORKSPACES
   ========================================= */

.ws-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 12px;
  color: var(--text-main);
  overflow: hidden;
}

.ws-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.35);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  gap: 12px;
}

.ws-role-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
  background: rgba(0, 240, 255, 0.15);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 240, 255, 0.3);
}

.ws-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  overflow-y: auto;
  padding-right: 4px;
  flex: 1;
}

.ws-service-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.2s;
  position: relative;
}

.ws-service-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 240, 255, 0.1);
}

.ws-service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ws-service-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ws-service-cat {
  font-size: 9px;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 6px;
  border-radius: 4px;
}

.ws-status-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: #00e5a3;
  font-family: monospace;
}

.ws-service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ws-notes-pane {
  background: #080c13;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 8px;
  color: #c9d1d9;
  font-family: monospace;
  font-size: 11px;
  resize: vertical;
  height: 60px;
  outline: none;
  width: 100%;
}

.ws-modal-catalog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
  max-height: 280px;
  overflow-y: auto;
  padding: 8px 0;
}

.ws-catalog-chip {
  background: #111722;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.15s;
  font-size: 12px;
}

.ws-catalog-chip:hover {
  border-color: var(--accent-cyan);
  background: rgba(0, 240, 255, 0.1);
  color: #fff;
}


