/*
Theme Name: RileyB Theme
Author: RileyB
Version: 1.0
*/

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #0f172a;
  color: #e2e8f0;
  font-family: Arial, sans-serif;
}

.glass {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(6px);
}

.rb-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.rb-header {
  position: fixed;
  width: 100%;
  z-index: 40;
  top: 0;
  left: 0;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.rb-logo {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2dd4bf, #22d3ee);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #0f172a;
  text-decoration: none;
}

.rb-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

.rb-nav a {
  color: #e2e8f0;
  text-decoration: none;
}

.rb-nav a:hover {
  text-decoration: underline;
}

.rb-main {
  padding-top: 112px;
  min-height: 70vh;
}

.rb-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(148,163,184,0.18);
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 24px;
}

.rb-title {
  font-size: 42px;
  line-height: 1.1;
  margin: 0 0 16px;
}

.rb-gradient-text {
  color: transparent;
  background: linear-gradient(90deg, #67e8f9, #2dd4bf);
  -webkit-background-clip: text;
  background-clip: text;
}

.rb-meta {
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 18px;
}

.rb-content {
  color: #cbd5e1;
  line-height: 1.7;
}

.rb-content a {
  color: #22d3ee;
}

.rb-button {
  display: inline-block;
  padding: 12px 18px;
  background: #06b6d4;
  color: #0f172a;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
}

.rb-footer {
  padding: 32px;
  text-align: center;
  color: #94a3b8;
}

@media (max-width: 768px) {
  .rb-nav {
    display: none;
  }

  .rb-title {
    font-size: 32px;
  }
}