@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root {
  --bg: #0b0f15;
  --card: #0f1720;
  --muted: #9aa4b2;
  --accent: #7c5cff;
  --accent-2: #4fd1c5;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, var(--bg), #050608);
  color: #e6eef6;
  padding: 40px 20px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.logo {
  width: 56px;
  height: 56px;
  padding: 8px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.timer-container {
  text-align: center;
  background: rgba(79, 209, 197, 0.1);
  border: 1px solid rgba(79, 209, 197, 0.3);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
  color: #4fd1c5;
  box-shadow: 0 0 15px rgba(79, 209, 197, 0.1);
}
.timer-container p {
  margin: 0 0 5px;
  font-size: 15px;
  color: #7c5cff;
  font-weight: 600;
  letter-spacing: 0.5px;
}
#countdown {
  font-size: 32px;
  font-weight: 700;
  color: #4fd1c5;
  text-shadow: 0 0 12px rgba(124, 92, 255, 0.5);
}

.plans-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.plans {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plans:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(79, 209, 197, 0.15);
}

.plans th, .plans td {
  padding: 18px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.price {
  font-size: 28px;
  font-weight: 700;
}

.cta.primary {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #061017;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta.primary:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(124, 92, 255, 0.3);
}

.popular {
  position: relative;
  transform: translateY(-8px);
}

.badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--accent-2);
  color: #000;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

footer {
  text-align: center;
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
}
