/*
Theme Name: Site Maintenance
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: Simple maintenance mode theme to display while the main site is being updated.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: site-maintenance
*/

:root {
  --bg: #0f172a;
  --card: #1e293b;
  --accent: #38bdf8;
  --text: #f1f5f9;
  --muted: #94a3b8;
}
* { box-sizing: border-box; }
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(135deg, var(--bg), #1e293b 60%, #0f172a);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}
.card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: inline-block;
  animation: spin 3s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
h1 {
  font-size: 26px;
  margin: 0 0 16px;
  color: var(--text);
}
p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 8px;
}
.highlight {
  color: var(--accent);
  font-weight: 600;
}
.dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 20px 4px 0;
  background: var(--accent);
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
}
.dots span:nth-child(1) { animation-delay: -0.32s; }
.dots span:nth-child(2) { animation-delay: -0.16s; }
@keyframes bounce {
  0%, 80%, 100% { transform: scale(0); opacity: 0.5; }
  40% { transform: scale(1); opacity: 1; }
}
footer {
  margin-top: 28px;
  font-size: 13px;
  color: #64748b;
}
