:root {
  --bg-color: #050505;
  --accent-color: #00ff41; /* Classic Matrix Green */
  --text-color: #f0f0f0;
  --subtext-color: #a0a0a0;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --card-hover: rgba(0, 255, 65, 0.1);
  --transition-speed: 0.3s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  background-image: 
    radial-gradient(circle at 50% 10%, rgba(0, 255, 65, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 255, 65, 0.03) 0%, transparent 40%);
}

.container {
  max-width: 500px;
  width: 100%;
  text-align: center;
}

/* Header Section */
header {
  margin-bottom: 40px;
  animation: fadeInDown 0.8s ease-out;
}

.logo-container {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  padding: 5px;
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
  transition: transform var(--transition-speed);
}

.logo-container:hover {
  transform: scale(1.05) rotate(5deg);
}

.logo-container img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.username {
  color: var(--text-color);
  opacity: 0.9;
  letter-spacing: 1px;
}

.bio {
  font-size: 0.85rem;
  color: var(--subtext-color);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 15px 0 25px;
  line-height: 1.4;
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.social-icons a {
  color: var(--text-color);
  font-size: 1.25rem;
  transition: color var(--transition-speed), transform var(--transition-speed);
}

.social-icons a:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}

/* Link List */
.links-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.link-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: var(--text-color);
  transition: all var(--transition-speed);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out backwards;
}

.link-card:nth-child(1) { animation-delay: 0.1s; }
.link-card:nth-child(2) { animation-delay: 0.2s; }
.link-card:nth-child(3) { animation-delay: 0.3s; }
.link-card:nth-child(4) { animation-delay: 0.4s; }
.link-card:nth-child(5) { animation-delay: 0.5s; }
.link-card:nth-child(6) { animation-delay: 0.6s; }
.link-card:nth-child(7) { animation-delay: 0.7s; }
.link-card:nth-child(8) { animation-delay: 0.8s; }

.link-card:hover {
  background: var(--card-hover);
  border-color: var(--accent-color);
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.link-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.link-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 1.2rem;
}

.link-text {
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dots-menu {
  color: var(--subtext-color);
  opacity: 0.5;
}

/* Footer */
footer {
  margin-top: 60px;
  font-size: 0.75rem;
  color: var(--subtext-color);
  padding-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile Adjustments */
@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
  
  .link-card {
    padding: 14px 20px;
  }
  
  .logo-container {
    width: 100px;
    height: 100px;
  }
}
