:root {
  --bg: #0f1724;
  --card: #0b1220;
  --accent: #7c3aed;
  --accent-secondary: #06b6d4;
  --muted: #9ca3af;
  --text-primary: #e6eef8;
}

html {
  height: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(180deg, #071029 0%, #071827 100%);
  color: var(--text-primary);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

.wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 28px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInDown 0.6s ease-out;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -1px;
}

main {
  width: 100%;
}

.list {
  display: flex;
  gap: 60px;
  margin-bottom: 0;
  justify-content: center;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.domain {
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: -0.3px;
  display: inline-block;
  position: relative;
}

.domain:hover {
  filter: brightness(1.2);
  transform: scale(1.05);
}

/* Progressive font sizes from top to bottom */
.column .domain:nth-child(1) {
  font-size: 52px;
}

.column .domain:nth-child(2) {
  font-size: 44px;
}

.column .domain:nth-child(3) {
  font-size: 38px;
}

.variants {
  display: none;
}

/* Mail button */
.mail-btn {
  position: absolute;
  left: 18px;
  top: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4), 0 0 40px rgba(124, 58, 237, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  z-index: 10;
}

.mail-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.5), 0 0 50px rgba(124, 58, 237, 0.3);
}

.mail-btn:active {
  transform: translateY(-2px);
}

.mail-btn svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.mail-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile responsiveness */
@media (max-width: 640px) {
  .wrap {
    padding: 40px 18px;
    margin: 0 auto;
  }

  header {
    margin-bottom: 40px;
  }

  h1 {
    font-size: 32px;
  }

  .list {
    flex-direction: column;
    gap: 40px;
  }

  .column .domain:nth-child(1) {
    font-size: 36px;
  }

  .column .domain:nth-child(2) {
    font-size: 30px;
  }

  .column .domain:nth-child(3) {
    font-size: 26px;
  }

  .mail-btn {
    left: 12px;
    top: 12px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .wrap {
    padding: 30px 14px;
    margin: 0 auto;
  }

  h1 {
    font-size: 24px;
  }

  .list {
    flex-direction: column;
    gap: 30px;
  }

  .column .domain:nth-child(1) {
    font-size: 28px;
  }

  .column .domain:nth-child(2) {
    font-size: 24px;
  }

  .column .domain:nth-child(3) {
    font-size: 20px;
  }
}
