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

body {
  background: linear-gradient(135deg, #1f1f1f, #0e0e0e);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.glass-wrapper {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 2rem;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  animation: fadeIn 1s ease;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 2rem;
}

header h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ff4b2b;
}

header p {
  font-size: 1.2rem;
  color: #ccc;
}

/* Profile Section */
.profile {
  text-align: center;
}

.profile-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ff4b2b;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.profile-img:hover {
  transform: scale(1.05);
}

.vape-note {
  color: #aaa;
  font-style: italic;
  margin-top: 0.5rem;
}

/* Highlights Section */
.highlights h2,
.socials h2 {
  color: #ff4b2b;
  font-size: 1.5rem;
  margin: 1.5rem 0 1rem;
}

.highlights ul {
  list-style: none;
  padding-left: 1rem;
}

.highlights li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1rem;
}

.highlights li::before {
  content: "🔥";
  position: absolute;
  left: 0;
}

/* Social Buttons */
.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.social-buttons a {
  background: #ff416c;
  color: white;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.social-buttons a:hover {
  background: #ff4b2b;
}

/* Button */
footer {
  text-align: center;
  margin-top: 2rem;
}

button {
  background-color: #ff4b2b;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #ff1f1f;
}

/* Animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.98);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
