:root {
  --bg-color: oklch(97% 0.01 240);
  --card-bg: oklch(100% 0 0 / 80%);
  --primary: oklch(60% 0.15 250);
  --text: oklch(25% 0.02 250);
  --accent: oklch(70% 0.1 150);
  --border: oklch(90% 0.02 250);
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-color);
  color: var(--text);
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  line-height: 1.6;
}
.a {
  overflow-y: auto;
}
.container {
  max-width: 850px;
  width: 100%;
  max-height: 90vh;
  background: var(--card-bg);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 2rem 0rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

h1 {
  color: var(--primary);
  font-size: 1.75rem;
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

h2 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

section {
  margin-bottom: 2.5rem;
}

p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  background: oklch(98% 0.01 250);
  padding: 12px 16px;
  margin-bottom: 8px;
  border-radius: 12px;
  border-left: 4px solid var(--accent);
}

.email-box {
  background: var(--primary);
  color: white;
  padding: 1rem;
  border-radius: 12px;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s;
}

.email-box:hover {
  transform: translateY(-2px);
}

footer {
  margin-top: 2rem;
  border-top: 1px solid #eee;
  padding-top: 2rem;
  display: flex;
  align-items: center;
}

.copyright {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  color: var(--text);
  opacity: 0.7;
}

#home-page-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: color 0.2s;
}

#home-page-btn:hover {
  color: var(--primary);
}

.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

.contact-section {
  text-align: center;
  margin-top: 2rem;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.contact-section p {
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.email-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background-color: oklch(98% 0.01 250);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: all 0.2s ease;
}

.email-card:hover {
  background-color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.email-card:hover .arrow {
  transform: translate(2px, -2px);
  color: var(--primary);
}

.icon {
  color: var(--accent);
}

.arrow {
  font-size: 1.1rem;
  opacity: 0.5;
  transition:
    transform 0.2s ease,
    color 0.2s;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
