:root {
  /* Colors */
  --bg-dark: #0a0a0b;
  --bg-card: #141417;
  --bg-card-hover: #1c1c21;
  --primary: #ff7a22;
  /* Vibrant Orange */
  --primary-hover: #ff8c42;
  --text-main: #f5f5f7;
  --text-muted: #a1a1aa;
  --border: #27272a;

  /* Spacing */
  --radius-lg: 12px;
  --radius-md: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
}

h1,
h2,
h3,
.heading-font {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
}

/* Base Styles */
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition);
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.grid {
  display: grid;
  gap: 24px;
}

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

/* Custom Components */
.btn-primary {
  background-color: var(--primary);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 122, 34, 0.3);
}

.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  background-color: var(--bg-card-hover);
  border-color: var(--primary);
}

/* Progress Bar */
.progress-bar {
  height: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 8px;
}

.progress-fill {
  height: 100%;
  background-color: var(--primary);
  width: 45%;
  /* Dummy Value */
}

/* Blurred Section */
.locked-capa {
  filter: blur(8px) brightness(0.4);
  pointer-events: none;
}

.lock-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}