* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #121212;
  color: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 20px;
}

.card {
  background: #1e1e1e;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.6);
  max-width: 400px;
  text-align: center;
}

img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 20px;
}

h1 {
  margin: 0 0 10px;
  font-size: 28px;
}

p {
  margin: 6px 0;
  font-size: 16px;
  color: #ccc;
}

.action-buttons {
  margin: 24px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.2) 0%, rgba(77, 166, 255, 0.1) 100%);
  color: #1e90ff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid rgba(30, 144, 255, 0.3);
  transition: all 0.3s ease;
}

.portfolio-link:hover {
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.3) 0%, rgba(77, 166, 255, 0.2) 100%);
  border-color: rgba(30, 144, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 144, 255, 0.2);
}

.cv-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(129, 199, 132, 0.1) 100%);
  color: #4caf50;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid rgba(76, 175, 80, 0.3);
  transition: all 0.3s ease;
}

.cv-link:hover {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.3) 0%, rgba(129, 199, 132, 0.2) 100%);
  border-color: rgba(76, 175, 80, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.cv-link svg {
  fill: currentColor;
}

.links {
  margin-top: 20px;
}

.links a {
  display: inline-block;
  margin: 0 10px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s;
}

.links a:hover {
  transform: scale(1.2);
}

.links svg {
  width: 30px;
  height: 30px;
  vertical-align: middle;
  fill: currentColor;
}
