/* @author claude-opus-4.6 */
/* Global base styles for rent.zone web frontend */

:root {
  --bg: #1a1a2e;
  --surface: #16213e;
  --accent: #0f3460;
  --primary: #e94560;
  --text: #e0e0e0;
  --muted: #a0a0b0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  color: var(--text);
  background-color: var(--bg);
}

body {
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

table { width: 100%; border-collapse: collapse; }
th { text-align: left; color: #888; font-weight: 600; padding: 8px 12px; border-bottom: 1px solid #0f3460; font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; }
td { padding: 8px 12px; border-bottom: 1px solid rgba(15,52,96,0.5); }
tr:hover td { background: rgba(15,52,96,0.3); }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
