:root {
  /* Core Colors */
  --bg-color: #020408;
  --card-bg: rgba(50, 100, 200, 0.04);
  --card-border: rgba(100, 150, 255, 0.08);
  --text-primary: #f0f4ff;
  --text-secondary: #94a3b8;
  --accent-color: #ffffff;

  /* Brand Colors (for hovers) */
  --steam: #171d25;
  --discord: #5865F2;
  --xbox: #107C10;
  --tiktok: #ff0050;
  --twitter: #1DA1F2;

  --youtube: #FF0000;
  --roblox: #00A2FF;
  /* Using a generic blue for Roblox or standard logic */
  --github: #333;

  /* Spacing & Layout */
  --radius-lg: 24px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --space-md: 16px;
  --space-lg: 32px;
}

/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background-color: var(--bg-color);
  height: 100%;
}

body {
  background-color: transparent;
  color: var(--text-primary);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-md);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
      rgba(20, 100, 255, 0.15),
      transparent 40%);
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.8;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Cards */
.card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
  gap: var(--space-md);
}

.card:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

/* Headers */
.heading {
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -0.04em;
  margin: 0;
  background: linear-gradient(to bottom right, #fff, #9ab);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Info Section */
.about-container {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: var(--space-md);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.about-information {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-weight: 500;
  transition: all 0.2s ease;
}

.about-information:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

.about-information i {
  font-size: 0.9em;
  opacity: 0.8;
}

#time {
  min-width: 130px;
  text-align: center;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* Social Buttons */
.social-container {
  width: 100%;
}

.social-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  width: 100%;
}

.social-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Centered by default */
  gap: 12px;
  width: 100%;
  padding: 16px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  border-radius: var(--radius-md);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.social-buttons a i,
.social-buttons a svg {
  font-size: 1.2rem;
  width: 1.2rem;
  /* Ensure SVG has width */
  height: 1.2rem;
  /* Ensure SVG has height */
  transition: transform 0.25s ease;
}

/* Hover Effects for Specific Brands */
.steam-button:hover {
  background: #1b2838;
  border-color: #66c0f4;
}

.discord-button:hover {
  background: var(--discord);
  border-color: var(--discord);
}

.xbox-button:hover {
  background: #0e7a0d;
  border-color: #107C10;
}

.tiktok-button:hover {
  background: #000;
  border-color: #ff0050;
  text-shadow: 2px 2px 0px rgba(0, 242, 234, 0.5);
}

.twitter-button:hover {
  background: #000;
  border-color: var(--text-primary);
}



.youtube-button:hover {
  background: var(--youtube);
  border-color: var(--youtube);
}

.roblox-button:hover {
  background: #222;
  border-color: #fff;
}

.github-button:hover {
  background: #24292e;
  border-color: #fff;
}

.social-buttons a:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.social-buttons a:hover i,
.social-buttons a:hover svg {
  transform: scale(1.1);
}

/* Copyright */
.copyright-notice {
  margin-top: 40px;
  color: #444;
  font-size: 0.8rem;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 600px) {
  .about-container {
    flex-direction: column;
    align-items: center;
  }

  .about-information {
    width: 100%;
    justify-content: center;
  }
}