@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&family=Share+Tech+Mono&display=swap');

:root {
  --bg: #0a0a0f;
  --bg-secondary: #0d0d14;
  --bg-card: #12121c;
  --bg-card-hover: #161622;
  --bg-elevated: #1a1a28;
  --cyan: #00e5ff;
  --cyan-dim: rgba(0,229,255,0.6);
  --magenta: #ff0088;
  --green: #00ff41;
  --red: #ff003c;
  --gold: #ffd700;
  --purple: #a855f7;
  --border: rgba(0,229,255,0.08);
  --border-active: rgba(0,229,255,0.2);
  --text: #e8e8f0;
  --text-secondary: #a0a0b8;
  --text-muted: #5a5a72;
  --font-display: 'Orbitron', monospace;
  --font-body: 'Rajdhani', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
}

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

body {
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 16px 30px;
  font-family: var(--font-body);
  color: var(--text);
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 60% at 50% -10%, rgba(0,229,255,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 80% 40% at 50% 110%, rgba(255,0,136,0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.015) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* --- DESKTOP ICONS --- */
.desktop-icon {
  position: fixed;
  z-index: 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 10px;
  font-family: var(--font-mono);
  cursor: default;
  user-select: none;
  transition: all 0.3s;
}

.desktop-icon .di-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.3s;
}

.desktop-icon:hover .di-icon {
  background: var(--bg-card-hover);
  border-color: var(--border-active);
  box-shadow: 0 4px 20px rgba(0,229,255,0.08);
}

.desktop-icon-1 { bottom: 60px; left: 24px; }
.desktop-icon-2 { bottom: 60px; left: 100px; }
.desktop-icon-3 { bottom: 60px; left: 176px; }

/* --- WINDOW --- */
.window {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.3),
    0 8px 40px rgba(0,0,0,0.4),
    0 0 80px rgba(0,229,255,0.02);
  width: 100%;
  max-width: 480px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* --- TITLEBAR --- */
.titlebar {
  background: var(--bg-card);
  height: 44px;
  display: flex;
  align-items: center;
  padding: 0 8px 0 16px;
  user-select: none;
  cursor: default;
  border-bottom: 1px solid var(--border);
}

.titlebar .icon {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.titlebar .title {
  flex: 1;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  color: var(--cyan);
  margin-left: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.titlebar .win-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  border-radius: var(--radius-sm);
}

.titlebar .win-btn:hover {
  background: rgba(0,229,255,0.06);
  color: var(--text);
}

.titlebar .win-btn.close {
  font-size: 14px;
}

.titlebar .win-btn.close:hover {
  background: rgba(255,0,60,0.12);
  color: var(--red);
}

/* --- MENUBAR --- */
.menubar {
  display: flex;
  gap: 2px;
  padding: 6px 12px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

.menubar span {
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.15s;
}

.menubar span:hover {
  background: rgba(0,229,255,0.06);
  color: var(--cyan);
}

/* --- WIN BODY --- */
.win-body {
  padding: 24px 24px 20px;
  text-align: center;
}

/* --- BRAND --- */
.win-brand {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.win-brand h1 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.win-brand .sub {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 4px;
}

/* --- TICKER --- */
.win-ticker {
  background: rgba(0,229,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  margin-bottom: 20px;
}

.win-ticker marquee {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--text-secondary);
}

.win-ticker a {
  color: var(--cyan) !important;
  text-decoration: none;
  font-weight: 500;
}

/* --- CARD --- */
.w-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 12px;
  transition: all 0.2s;
}

.w-card:hover {
  border-color: var(--border-active);
}

/* --- CLOCK --- */
.w-clock-label {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

#angelhost {
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 8px;
  color: var(--cyan);
  line-height: 1.2;
  margin-bottom: 6px;
}

.w-clock-sub {
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 1px;
}

/* --- SECTION --- */
.w-section {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 16px 0 10px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
}

.w-section::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 14px;
  background: linear-gradient(180deg, var(--cyan), var(--magenta));
  border-radius: 2px;
  flex-shrink: 0;
}

.w-section::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border-active), transparent);
  margin-left: 8px;
}

/* --- LIST ITEM --- */
.w-list-item {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,229,255,0.03);
}

.w-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.w-list-item:first-child {
  padding-top: 0;
}

.w-list-item a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.w-list-item a:hover {
  color: var(--cyan);
}

.w-list-item a::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--cyan);
  border-radius: 50%;
  opacity: 0.4;
  transition: all 0.15s;
}

.w-list-item a:hover::before {
  opacity: 1;
  box-shadow: 0 0 6px var(--cyan);
}

.w-list-item .tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  color: var(--cyan);
  background: rgba(0,229,255,0.06);
  border: 1px solid rgba(0,229,255,0.1);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: 1px;
  margin-left: auto;
}

/* --- SEPARATOR --- */
.w-sep {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* --- PRICE BOX --- */
.w-price-box {
  padding: 12px 0;
}

.w-price-label {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.w-price-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 4px;
}

.w-price-desc {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
  font-family: var(--font-mono);
}

/* --- INFO --- */
.w-info-block { padding: 4px 0; }

.w-info-label {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.w-info-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--cyan);
}

.w-info-status {
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-top: 6px;
}

.w-info-status span {
  color: var(--green);
  font-weight: 600;
}

/* --- CONTACT --- */
.w-contact-list {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.w-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font-body);
  transition: all 0.2s;
}

.w-contact-btn:hover {
  background: rgba(0,229,255,0.06);
  border-color: var(--border-active);
  color: var(--cyan);
}

/* --- BUTTONS --- */
.win-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.win-btn-ok {
  padding: 10px 28px;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  color: #000;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.win-btn-ok:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,229,255,0.25);
}

.win-btn-cancel {
  padding: 10px 24px;
  background: var(--bg-card);
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.win-btn-cancel:hover {
  background: var(--bg-elevated);
  border-color: var(--border-active);
  color: var(--text);
}

/* --- FOOTER --- */
.w-footer {
  text-align: center;
  padding: 16px 0 4px;
}

.w-footer .copy {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.w-footer .admin-link {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted) !important;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.2s;
}

.w-footer .admin-link:hover {
  color: var(--cyan) !important;
}

/* --- RESPONSIVE --- */
@media (max-width: 480px) {
  body { padding: 16px 10px 20px; }
  .win-body { padding: 20px 16px 16px; }
  .w-card { padding: 14px; }
  #angelhost { font-size: 32px; letter-spacing: 6px; }
  .w-price-value { font-size: 24px; }
  .w-contact-btn { font-size: 11px; padding: 8px 14px; }
  .win-buttons { padding: 14px 16px 16px; }
  .menubar { display: none; }
  .desktop-icon { display: none; }
  .win-brand h1 { font-size: 13px; letter-spacing: 2px; }
  .titlebar { height: 40px; }
  .titlebar .win-btn { width: 40px; height: 40px; }
}
