@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* Theme Variables */
:root {
  --primary-accent: #feb326;

  --ctp-base: #1e1e2e;       /* Main Background */
  --ctp-surface: #313244;   /* Card Background */
  --ctp-text: #cdd6f4;       /* Main Text */
  --ctp-subtext: #a6adc8;    /* Secondary Text */
  --ctp-overlay: #6c7086;    /* Borders */
  --ctp-white: #ffffff;
}

body {
  background-color: var(--ctp-base);
  color: var(--ctp-text);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  cursor: default;
  text-align: center;
  padding: 20px 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.container {
  width: 90%;
  max-width: 450px;
}

.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;  
  border: 4px solid var(--ctp-surface);
  box-shadow: 
    0 0 0 2px var(--primary-accent),
    0 4px 10px rgba(0, 0, 0, 0.2);
}

.name {
  font-size: 28px;
  font-weight: 700;
  margin: 10px 0;
  color: var(--primary-accent);
  letter-spacing: 0.5px;
}

.description {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
  color: var(--ctp-subtext);
}

.footer {
  margin-top: 40px;
  font-size: 14px;
  color: var(--ctp-overlay);
}

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

.button-group {
  display: flex;
  gap: 15px;
}

.icon-button {
  border: none;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: var(--ctp-surface);
  border-radius: 12px;
  color: var(--ctp-subtext);
}

.icon-button i {
  font-size: 22px;
}

.icon-button:hover {
  background-color: var(--primary-accent);
  color: var(--ctp-white);
  transform: scale(1.05);
}

.icon-button:active {
  transform: scale(0.95);
}