:root {
  --black: #0c0c0c;
  --white: #ffffff;
  --gold: #d4af37;
  --gray: #1a1a1a;
  --radius: 16px;
  --font: 'Segoe UI', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font);
  background: linear-gradient(to bottom right, #0a0a0a, #1a1a1a);
  color: var(--white);
  display: flex;
  min-height: 100vh;
}

.wrapper {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

/* Sidebar */
.sidebar {
  flex: 1;
  min-width: 280px;
  background: #121212;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border-right: 1px solid #333;
}

.vtuber-img {
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
}

/* Main content */
.content {
  flex: 2;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.card {
  background: #181818;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  border: 1px solid #333;
  transition: border 0.3s ease;
}

.card:hover {
  border-color: var(--gold);
}

h1.name {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.tagline {
  font-size: 1.1rem;
  color: #ccc;
}

h2 {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

p, ul {
  line-height: 1.6;
  font-size: 1rem;
  color: #eaeaea;
}

/* Twitch Embed */
.video-wrapper {
  position: relative;
  height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
}

/* Button */
.button {
  display: inline-block;
  background-color: var(--gold);
  color: var(--black);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.button:hover {
  background-color: #c1992b;
}
/* Container layout */
.container {
  display: flex;
  min-height: 100vh;
}

/* Left side */
.left {
  flex: 0 0 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  box-shadow: 4px 0 12px rgba(0, 0, 0, 0.05);
}

/* Wraps image and socials */
.left-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* Image styling */
.vtuber-img {
  width: 100%;
  max-width: 260px;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Social icons styling */
.social-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.social-btn:hover {
  transform: scale(1.1);
}

.youtube { background: #FF0000; }
.twitch  { background: #9146FF; }
.tiktok  { background: #000000; }
.x       { background: #1a1a1a; }


/* Responsive */
@media (max-width: 768px) {
  .wrapper {
    flex-direction: column;
  }

  .sidebar {
    border-right: none;
    border-bottom: 1px solid #333;
  }

  .content {
    padding: 2rem 1.25rem;
  }

  h1.name {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .vtuber-img {
    max-width: 100%;
  }

  .video-wrapper {
    height: 320px;
  }

  h1.name {
    font-size: 1.75rem;
  }

  .card {
    padding: 1.5rem;
  }
}