:root {
  --bg-gradient: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  --card-bg: rgba(255, 255, 255, 0.05);
  --card-hover-bg: rgba(255, 255, 255, 0.1);
  --card-border: rgba(255, 255, 255, 0.1);
  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
  --accent: #4facfe;
  --accent-hover: #00f2fe;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* Optional animated background */
.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: radial-gradient(circle at 15% 50%, rgba(79, 172, 254, 0.15), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(0, 242, 254, 0.15), transparent 25%);
  animation: bgFloat 15s ease-in-out infinite alternate;
}

@keyframes bgFloat {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.container {
  width: 100%;
  max-width: 600px;
  z-index: 1;
}

/* Profile Section */
.profile-section {
  text-align: center;
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease backwards;
}

.avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid var(--card-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.avatar:hover {
  transform: scale(1.05);
  border-color: var(--accent);
}

.profile-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.profile-bio {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.profile-details {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  animation: fadeIn 1s ease backwards 0.2s;
  flex-wrap: wrap;
}

.social-icon-link {
  color: var(--text-main);
  font-size: 1.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon-link:hover {
  color: var(--accent);
  transform: translateY(-3px);
}

/* Links Section */
.links-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease backwards 0.4s;
}

.link-card {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-main);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.link-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: transparent;
  transition: background 0.3s ease;
}

.link-card:hover {
  background: var(--card-hover-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}

.link-card:hover::before {
  background: var(--accent);
}

.link-card.highlight {
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.2), rgba(0, 242, 254, 0.1));
  border-color: rgba(79, 172, 254, 0.3);
}

.link-card.highlight:hover {
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.3), rgba(0, 242, 254, 0.2));
  border-color: rgba(79, 172, 254, 0.5);
}

.link-icon {
  font-size: 1.25rem;
  width: 30px;
  text-align: center;
  margin-right: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.link-title {
  font-weight: 500;
  font-size: 1rem;
  flex-grow: 1;
}

/* Schedule Section */
.schedule-section {
  animation: fadeInUp 0.8s ease backwards 0.6s;
}

.section-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.schedule-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1.25rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  display: block;
  color: var(--text-main);
  transition: all 0.3s ease;
}

.schedule-card:hover {
  background: var(--card-hover-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}

.schedule-day {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--accent);
}

.schedule-time {
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.schedule-activity {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Keyframes */
@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);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Multi-stream specific button styles */
.twitch-btn {
  background: #9146FF;
  color: white;
}

.twitch-btn:hover {
  background: #a970ff;
  color: white;
  box-shadow: 0 0 10px rgba(145, 70, 255, 0.5);
}

.tiktok-btn {
  background: #010101;
  color: #fff;
  border: 1px solid #69C9D0;
}

.tiktok-btn:hover {
  background: #2af598;
  color: #010101;
  border-color: transparent;
  box-shadow: 0 0 10px rgba(42, 245, 152, 0.5);
}

.youtube-btn {
  background: #FF0000;
  color: white;
}

.youtube-btn:hover {
  background: #ff4d4d;
  color: white;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}