/* Base styles inspired by Mestres Místicos design */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color palette based on Mestres Místicos */
  --primary-dark: #1a1a2e;
  --primary-blue: #16213e;
  --accent-gold: #d4af37;
  --accent-green: #4caf50;
  --text-light: #ffffff;
  --text-dark: #333333;
  --text-muted: #666666;
  --background-light: #f5f5f5;
  --background-dark: #0f0f23;
  --card-background: #1e1e3f;
  --border-color: #333;
  --shadow: rgba(0, 0, 0, 0.3);
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: var(--text-light);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  color: var(--accent-gold);
  text-align: center;
  text-shadow: 2px 2px 4px var(--shadow);
}

h2 {
  font-size: 2rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 2rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* Buttons */
.btn-primary {
  background: linear-gradient(45deg, var(--accent-gold), #f4d03f);
  color: var(--text-dark);
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: var(--accent-green);
  color: var(--text-light);
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #45a049;
  transform: translateY(-1px);
}

/* Cards */
.card {
  background: var(--card-background);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px var(--shadow);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px var(--shadow);
}

/* Status indicators */
.status-online {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--accent-green);
  border-radius: 50%;
  margin-right: 5px;
}

.status-offline {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ff4444;
  border-radius: 50%;
  margin-right: 5px;
}

/* Stars rating */
.stars {
  color: var(--accent-gold);
  font-size: 1.2rem;
}

/* Utility classes */
.text-center {
  text-align: center;
}

.text-gold {
  color: var(--accent-gold);
}

.text-green {
  color: var(--accent-green);
}

.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}

/* Grid layouts */
.grid {
  display: grid;
  gap: 20px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Flex utilities */
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}


