:root {
  --gold: #d4af37;
  --dark-gold: #b8860b;
  --black: #0a0a0a;
  --light-black: #1a1a1a;
  --white: #f5f5f5;
}

body {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  background-attachment: fixed;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  min-height: 100vh;
  position: relative;
}

.playfair {
  font-family: "Playfair Display", serif;
}

.logo-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
}

.logo-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
  opacity: 0.8;
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
  animation: pulse 4s infinite;
}

.logo-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 42px;
  font-weight: 700;
  color: var(--black);
  font-family: "Playfair Display", serif;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
  }
  100% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  }
}

.link-button {
  display: flex;
  align-items: center;
  background: rgba(26, 26, 26, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.link-button:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.link-button:hover .icon-container {
  background: var(--gold);
  transform: scale(1.1);
}

.link-button:hover .icon-container i {
  color: var(--black);
}

.icon-container {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.icon-container i {
  font-size: 22px;
  color: var(--gold);
  transition: all 0.3s ease;
}

.link-text {
  flex: 1;
  text-align: left;
}

.link-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 4px;
  color: var(--white);
}

.link-subtitle {
  font-size: 14px;
  color: rgba(245, 245, 245, 0.7);
  font-weight: 300;
}

.divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(212, 175, 55, 0.3),
    transparent
  );
  margin: 25px 0;
}

.highlight-button {
  border: 2px solid var(--gold);
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1) 0%,
    rgba(180, 140, 40, 0.15) 100%
  );
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.highlight-button:hover {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.2) 0%,
    rgba(180, 140, 40, 0.25) 100%
  );
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px;
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.social-icon:hover {
  background: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.social-icon:hover i {
  color: var(--black);
}

.social-icon i {
  color: var(--gold);
  transition: all 0.3s ease;
}

.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.watermark {
  position: absolute;
  opacity: 0.02;
  font-size: 18rem;
  z-index: -1;
  font-family: "Playfair Display", serif;
  pointer-events: none;
}

.watermark-1 {
  top: 5%;
  left: 5%;
  transform: rotate(-15deg);
}

.watermark-2 {
  bottom: 5%;
  right: 5%;
  transform: rotate(15deg);
}
