:root {
  --bg: #0f1015;
  --card: rgba(26, 28, 36, 0.65);
  --muted: #9aa1b3;
  --text: #f0f4ff;
  --accent: #ff6f61;
  --radius: 18px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

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

body {
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  background: var(--bg) url('https://chill-paradise.pages.dev/raw.png') no-repeat center center fixed;
  background-size: cover;
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ✅ Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(15, 16, 21, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  width: 100%;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 24px;
}

/* ✅ Logo */
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
}

.logo-link img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}

.logo-link:hover {
  opacity: 0.85;
}

/* ✅ Nav Links */
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 12px;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

/* ✅ Actions */
.nav-actions {
  display: flex;
  gap: 16px;
}

.button {
  background: linear-gradient(135deg, #ff6f61, #ff9068);
  color: #fff;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(255, 111, 97, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 24px rgba(255, 111, 97, 0.6);
}

/* ✅ Hero Section */
.hero {
  padding: 100px 20px;
  text-align: center;
}

.hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #ff6f61, #ffc371);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 18px;
  color: #cfd7ff;
  max-width: 700px;
  margin: 0 auto;
}

/* ✅ Feature Buttons Grid */
.buttons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.feature-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px;
  border-radius: var(--radius);
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.feature-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

/* ✅ Footer */
footer {
  padding: 50px 0;
  color: var(--muted);
  text-align: center;
  margin-top: 50px;
}

footer .links {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 16px;
}

footer .links a:hover {
  text-decoration: underline;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}
