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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: #0F0F12;
  color: #FFFFFF;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  -webkit-font-smoothing: antialiased;
}

#app {
  width: 100%;
  max-width: 480px;
  position: relative;
  min-height: 100vh;
  padding: 24px 20px 100px;
  display: flex;
  flex-direction: column;
}

/* Header */
.header {
  margin-bottom: 8px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.logo-icon {
  font-size: 28px;
}

.logo-text {
  font-weight: 800;
  font-size: 20px;
  color: #FFFFFF;
  text-shadow: 0 0 20px rgba(251, 203, 4, 0.3);
}

.title {
  font-weight: 700;
  font-size: 28px;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 6px;
}

.subtitle {
  font-weight: 400;
  font-size: 14px;
  color: #B0B0B0;
  line-height: 1.4;
}

.highlight {
  color: #A1E433;
  font-weight: 600;
}

/* 3D Illustration - Claymorphism */
.illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  flex: 1;
  min-height: 200px;
}

.clay-card {
  position: relative;
  width: 180px;
  height: 180px;
}

.fuel-pump {
  position: relative;
  width: 100%;
  height: 100%;
}

.pump-body {
  width: 100px;
  height: 130px;
  background: linear-gradient(145deg, #2a2a35, #1a1a24);
  border-radius: 24px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  box-shadow:
    12px 12px 24px rgba(0,0,0,0.5),
    -4px -4px 12px rgba(255,255,255,0.04),
    inset 4px 4px 8px rgba(255,255,255,0.04),
    inset -4px -4px 8px rgba(0,0,0,0.4);
}

.pump-display {
  width: 60px;
  height: 36px;
  background: #0F0F12;
  border-radius: 8px;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 2px 2px 4px rgba(0,0,0,0.6);
}

.display-price {
  font-weight: 800;
  font-size: 16px;
  color: #A1E433;
  letter-spacing: 1px;
}

.pump-nozzle {
  width: 16px;
  height: 40px;
  background: linear-gradient(145deg, #3a3a45, #252530);
  border-radius: 8px 8px 4px 4px;
  position: absolute;
  top: -20px;
  right: -10px;
  transform: rotate(-20deg);
  box-shadow:
    4px 4px 8px rgba(0,0,0,0.3),
    -2px -2px 4px rgba(255,255,255,0.03);
}

.pump-hose {
  width: 60px;
  height: 6px;
  background: #252530;
  border-radius: 3px;
  position: absolute;
  top: 10px;
  right: -40px;
  transform: rotate(30deg);
  box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.clay-shadow {
  width: 140px;
  height: 24px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.4) 0%, transparent 70%);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}

/* Content / Stations list */
.content {
  flex: 1;
}

.loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 0;
  color: #B0B0B0;
  font-size: 14px;
}

.loader {
  width: 32px;
  height: 32px;
  border: 3px solid #252530;
  border-top: 3px solid #A1E433;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.error {
  text-align: center;
  padding: 40px 0;
  color: #B0B0B0;
  font-size: 14px;
}

.error p {
  margin-bottom: 12px;
}

.retry-btn {
  background: #252530;
  color: #FFFFFF;
  border: none;
  padding: 10px 24px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.retry-btn:active {
  background: #353540;
}

.hidden {
  display: none !important;
}

/* Station card */
.station-card {
  background: #15171A;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.station-name {
  font-weight: 700;
  font-size: 16px;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.station-brand {
  font-weight: 400;
  font-size: 12px;
  color: #B0B0B0;
  margin-bottom: 4px;
}

.station-address {
  font-weight: 400;
  font-size: 12px;
  color: #8A8A8A;
  margin-bottom: 12px;
  line-height: 1.4;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1E2025;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 13px;
}

.price-fuel {
  color: #B0B0B0;
  font-weight: 400;
}

.price-value {
  color: #FBCB04;
  font-weight: 700;
}

.price-value.green {
  color: #A1E433;
}

.services-list {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.service-tag {
  background: #1E2025;
  color: #8A8A8A;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 6px;
}

/* Bottom Bar */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: #FBCB04;
  border-radius: 20px 20px 0 0;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.bar-icon {
  width: 44px;
  height: 44px;
  background: rgba(0,0,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.bar-text {
  display: flex;
  flex-direction: column;
}

.bar-title {
  font-weight: 600;
  font-size: 14px;
  color: rgba(0,0,0,0.6);
}

.bar-count {
  font-weight: 800;
  font-size: 22px;
  color: #0F0F12;
}
