/* --------------------------------- */
/* Reset / Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  min-height: 100%;
  font-family: "IBM Plex Sans", "Arial", sans-serif;
  background-color: #07080b;
  color: #fff;
}

/* --------------------------------- */
/* Container */
.solar-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 20px;
}

/* --------------------------------- */
/* Header */
.header {
  text-align: center;
  margin-bottom: 40px;
}

.header h1 {
  font-size: 2rem;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.header .subtitle {
  font-size: 0.9rem;
  color: #bbb;
}

/* --------------------------------- */
/* Planet Cards Layout */
.planet-logs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* --------------------------------- */
/* Planet Card */
.planet-card {
  background: rgba(10,10,15,0.7);
  border: 1px solid #444;
  border-radius: 12px;
  padding: 25px 30px;
  width: 220px;
  text-align: center;
  transition: transform 0.2s;
}

.planet-card:hover {
  transform: translateY(-5px);
}

.planet-card h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.planet-card .sol {
  font-size: 0.8rem;
  color: #aaa;
  margin-bottom: 20px;
}

/* Weather Info */
.weather-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.weather-info .temp,
.weather-info .pressure {
  display: flex;
  justify-content: space-between;
}

.weather-info .label {
  font-size: 0.8rem;
  color: #aaa;
}

.weather-info .value {
  font-size: 1.2rem;
  font-weight: bold;
}

/* --------------------------------- */
/* Footer */
.footer {
  margin-top: auto;
  text-align: center;
  font-size: 0.8rem;
  color: #888;
  padding: 20px 0;
}
