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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  background: #26a269;
  color: #333;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.canvas-container {
  position: relative;
  min-height: 100vh;
  width: 100%;
}

/* Custom Navbar */
.custom-navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: #ffffff;
  height: 70px;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}

.navbar-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.navbar-links {
  display: flex;
  gap: 2rem;
}

.navbar-links a {
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  transition: opacity 0.2s;
}

.navbar-links a:hover {
  opacity: 0.7;
}

/* Forgeo Badge */
.forgeo-badge {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9998;
}

.forgeo-badge a {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
  transition: all 0.3s;
}

.forgeo-badge a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.badge-icon {
  font-size: 14px;
}

.site-nav {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  margin-bottom: 40px;
  border-bottom: 2px solid #e5e7eb;
}

.site-nav a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s;
}

.site-nav a:hover {
  background: #f3f4f6;
  color: #667eea;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 16px;
  line-height: 1.3;
}

p {
  margin-bottom: 16px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  body {
    padding: 20px 16px;
  }
}

