/* Sikaje Public Dashboard Styles */
body.public-bg {
  background: #181c22;
  color: #e0e0e0;
  font-family: 'Inter', Arial, sans-serif;
  min-height: 100vh;
  margin: 0;
}
.public-container {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.public-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.1rem;
  background: #191c23;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.logo {
  font-size: 2.1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}
.logo .dot {
  color: #00ff99;
}
.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: 0.7rem;
  transition: background 0.2s, color 0.2s;
}
.nav-links a.active, .nav-links a:hover {
  background: #23262f;
  color: #00ff99;
}
.nav-actions .nav-btn {
  background: linear-gradient(90deg, #00ff99 60%, #00c9ff 100%);
  color: #191c23;
  font-weight: 700;
  border: none;
  border-radius: 1.2rem;
  padding: 0.8rem 1.8rem;
  text-decoration: none;
  font-size: 1.08rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
  transition: background 0.2s, color 0.2s;
}
.nav-actions .nav-btn:hover {
  background: #00c9ff;
  color: #fff;
}
.public-main {
  flex: 1;
  padding: 2.5rem 1.2rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.public-hero {
  text-align: center;
  margin-bottom: 2.5rem;
}
.public-hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.7rem;
}
.public-hero p {
  font-size: 1.18rem;
  color: #b7c2d4;
  margin-bottom: 1.6rem;
}
.hero-btn {
  display: inline-block;
  background: linear-gradient(90deg, #00ff99 60%, #00c9ff 100%);
  color: #191c23;
  font-weight: 700;
  border: none;
  border-radius: 1.2rem;
  padding: 1rem 2.3rem;
  text-decoration: none;
  font-size: 1.14rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
  transition: background 0.2s, color 0.2s;
}
.hero-btn:hover {
  background: #00c9ff;
  color: #fff;
}
.public-dashboard-preview {
  width: 100%;
  display: flex;
  justify-content: center;
}
.public-footer {
  text-align: center;
  color: #aaa;
  padding: 1.5rem 0 0.7rem 0;
  font-size: 1rem;
}
