/*
Theme Name: Clube do Batom - Headless CMS
Theme URI: https://clubedobatom.admin
Author: Clube do Batom
Author URI: https://clubedobatom.admin
Description: Minimal WordPress theme for headless CMS usage with React/Next.js frontend.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: clube-do-batom-headless
*/

:root {
  --cdb-bg: #0b0b4a;
  --cdb-accent: #f0008d;
  --cdb-accent-2: #ff4aad;
  --cdb-light: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: radial-gradient(circle at 20% 20%, #17175f, var(--cdb-bg) 52%);
  color: var(--cdb-light);
}

.cdb-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.cdb-card {
  width: min(720px, 100%);
  background: rgba(11, 11, 74, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(6px);
}

.cdb-logo {
  width: min(360px, 100%);
  margin: 0 auto 16px;
  display: block;
}

.cdb-title {
  margin: 0 0 10px;
  font-size: 1.8rem;
}

.cdb-text {
  margin: 0;
  opacity: 0.9;
}

.cdb-link {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 16px;
  border-radius: 10px;
  background: linear-gradient(120deg, var(--cdb-accent), var(--cdb-accent-2));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
