:root {
  --bg: #050816;
  --card: #10192e;
  --blue: #2b7fff;
  --purple: #8f5cff;
  --pink: #ff5fbf;
  --text: #ffffff;
  --muted: #a8b3cf;
  --gradient: linear-gradient(135deg, #2b7fff, #8f5cff, #ff5fbf);
}

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

body {
  background-color: var(--bg);
  color: var(--text);
  background-image:
    radial-gradient(
      circle at top left,
      rgba(43, 127, 255, 0.2),
      transparent 30%
    ),
    radial-gradient(
      circle at top right,
      rgba(255, 95, 191, 0.15),
      transparent 25%
    );
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.hidden {
  display: none !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

/* =====================
   BUTTONS STYLES
===================== */

.btn-primary,
.btn-secondary,
.btn-danger {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

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

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
}

.btn-danger {
  background: rgba(255, 75, 75, 0.15);
  color: #ff6b6b;
  border: 1px solid rgba(255, 75, 75, 0.3);
}

.btn-danger:hover {
  background: rgba(255, 75, 75, 0.25);
  color: #ffffff;
  border-color: rgba(255, 75, 75, 0.6);
  box-shadow: 0 4px 15px rgba(255, 75, 75, 0.2);
  transform: translateX(-1px);
}

a {
  text-decoration: none;
  outline: none;
}

.resume-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.action-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.action-icon:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transform: scale(1.05);
}

.resume-actions .action-delete:hover {
  background: rgba(255, 75, 75, 0.2);
  color: #ff6b6b;
}

.published {
  border: 2px solid #3b82f6;
  box-shadow:
    0 0 5px rgba(59, 130, 246, 0.5),
    0 0 15px rgba(59, 130, 246, 0.4),
    0 0 30px rgba(59, 130, 246, 0.3);
}
