@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Light Theme (Default) */
  --primary-bg: #f5f6fa;
  --secondary-bg: #ffffff;
  --header-bg: #11142e;
  --subheader-bg: #1c2045;
  --accent-color: #2563eb;
  --text-main: #2d3436;
  --text-muted: #636e72;
  --text-header: #11142e;
  --border-color: #e1e5ee;
  --radius: 8px;
  --transition: all 0.2s ease-in-out;
  --modal-bg: #ffffff;
}

[data-theme='dark'] {
  --primary-bg: #050614;
  --secondary-bg: #0f1128;
  --header-bg: #090a18;
  --subheader-bg: #0c0e20;
  --accent-color: #2563eb;
  --text-main: #f8f9fa;
  --text-muted: #8b92a5;
  --text-header: #ffffff;
  --border-color: rgba(255, 255, 255, 0.08);
  --modal-bg: #0f1128;
}

[data-theme='crywolf'] {
  --primary-bg: #3a3a3a;
  --secondary-bg: #2d2d2d;
  --header-bg: #252525;
  --subheader-bg: #1e1e1e;
  --accent-color: #85c98d; /* Logo Green Accent */
  --text-main: #ffffff;
  --text-muted: #a0a0a0;
  --text-header: #ffffff;
  --border-color: rgba(133, 201, 141, 0.2);
  --modal-bg: #2d2d2d;
}

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

img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--transition), color var(--transition);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

.btn {
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: var(--transition);
}

.btn-primary {
  background: var(--accent-color);
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background: #c21a24;
  box-shadow: 0 0 15px var(--accent-color);
}

.btn-primary:active {
  transform: scale(0.96);
}

.btn-outline {
  border: 1px solid var(--border-color);
  color: var(--text-main);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--text-main);
  background: var(--secondary-bg);
}

.btn-outline:active {
  transform: scale(0.96);
}

/* Glow Utilities */
.glow-text {
  background: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 25%, #ff0055 75%, #ff7b00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(255, 0, 85, 0.4);
}

.glow-box {
  box-shadow: 0 0 20px rgba(232, 42, 54, 0.5);
  border: 1px solid rgba(232, 42, 54, 0.8);
}

