:root {
  --bg-dark: #0d0c1d;
  --bg-medium: #1a1933;
  --primary-purple: #7f00ff;
  --accent-pink: #e040fb;
  --text-light: #f0f0f0;
  --text-muted: #a0a0c0;
  --border-color: #2c2a45;

  --font-family: "Poppins", sans-serif;

  --primary-purple-rgb: 127, 0, 255;
  --accent-pink-rgb: 224, 64, 251;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background-color: rgba(13, 12, 29, 0.85);
  backdrop-filter: blur(12px);
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: background-color 0.3s ease;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
}
.logo svg {
  margin-right: 12px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.logo:hover svg {
  transform: rotate(10deg) scale(1.15);
}
.logo span {
  transition: color 0.3s ease;
}
.logo:hover span {
  color: var(--accent-pink);
}
nav a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 25px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  padding: 5px 0;
}
nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2.5px;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  background-image: linear-gradient(
    to right,
    var(--accent-pink),
    var(--primary-purple)
  );
  border-radius: 2px;
  transition: width 0.3s ease;
}
nav a:hover,
nav a.router-link-exact-active {
  color: var(--text-light);
}
nav a:hover::after,
nav a.router-link-exact-active::after {
  width: 100%;
}
main {
  padding-top: 90px;
  padding-bottom: 60px;
  min-height: calc(100vh - 150px);
}
.page-content {
  padding: 50px 0;
}
.page-content h1,
.page-content h2 {
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
  color: var(--text-light);
}
.page-content h1 {
  font-size: 3rem;
  background: linear-gradient(90deg, var(--accent-pink), var(--primary-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}
.page-content .subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 60px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.content-card {
  background-color: var(--bg-medium);
  padding: 35px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  margin-bottom: 35px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.content-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(var(--primary-purple-rgb), 0.25);
}
.content-card h3 {
  color: var(--accent-pink);
  margin-bottom: 18px;
}
.content-card p {
  color: var(--text-muted);
  margin-bottom: 10px;
}
.content-card ul {
  list-style: none;
  padding-left: 0;
}
.content-card li {
  color: var(--text-muted);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
.content-card li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--accent-pink);
}
.btn {
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background-image: linear-gradient(
    to right,
    var(--accent-pink) 0%,
    var(--primary-purple) 51%,
    var(--accent-pink) 100%
  );
  background-size: 200% auto;
  color: white;
  box-shadow: 0 5px 15px rgba(var(--primary-purple-rgb), 0.3);
}
.btn-primary:hover {
  background-position: right center;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(var(--accent-pink-rgb), 0.4);
}
.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
}
.btn-secondary:hover {
  background-color: var(--primary-purple);
  color: white;
  transform: translateY(-2px);
}
.hero-section {
  min-height: calc(70vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: radial-gradient(
      ellipse at 10% 20%,
      rgba(var(--primary-purple-rgb), 0.2),
      transparent 70%
    ),
    radial-gradient(
      ellipse at 90% 80%,
      rgba(var(--accent-pink-rgb), 0.15),
      transparent 70%
    ),
    var(--bg-dark);
  animation: subtleGradientShift 20s ease infinite alternate;
}
@keyframes subtleGradientShift {
  0% {
    background-position: 0% 0%, 100% 100%;
  }
  100% {
    background-position: 20% 20%, 80% 80%;
  }
}
.hero-content {
  max-width: 800px;
}
.hero-content .tagline {
  display: inline-block;
  background-color: rgba(var(--accent-pink-rgb), 0.1);
  color: var(--accent-pink);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  border: 1px solid rgba(var(--accent-pink-rgb), 0.3);
}
.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero-content h1 span {
  background: linear-gradient(90deg, var(--accent-pink), var(--primary-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}
.quick-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.quick-link-item {
  background-color: var(--bg-medium);
  padding: 15px 25px;
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  cursor: default;
}
.quick-link-item:hover {
  color: var(--text-light);
  background-color: var(--primary-purple);
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(var(--primary-purple-rgb), 0.3);
}
.about-us-section {
  background-color: var(--bg-medium);
  padding: 40px 0 60px 0;
  margin-top: 60px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.about-us-section .container {
  text-align: center;
}
.about-us-section h2 {
  margin-bottom: 15px;
  font-size: 2.2rem;
}
.about-us-section .section-tagline {
  display: inline-block;
  background-color: rgba(var(--primary-purple-rgb), 0.1);
  color: var(--primary-purple);
  padding: 6px 15px;
  border-radius: 15px;
  font-size: 0.8rem;
  margin-bottom: 20px;
  border: 1px solid rgba(var(--primary-purple-rgb), 0.3);
}
.about-us-section p {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 20px auto;
}
.why-us-section {
  padding: 70px 0;
  background-color: var(--bg-dark);
}
.why-us-section h2 {
  margin-bottom: 15px;
}
.why-us-section .subtitle {
  margin-bottom: 50px;
}
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.why-us-item {
  background-color: var(--bg-medium);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-us-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(var(--primary-purple-rgb), 0.2);
}
.why-us-icon {
  margin-bottom: 20px;
}
.why-us-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--accent-pink);
  fill: none;
}
.why-us-item h3 {
  color: var(--text-light);
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.why-us-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.fade-enter-from,
.fade-leave-to {
  opacity: 0;
  transform: translateY(10px);
}
.discord-widget-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
.discord-widget-container iframe {
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.contact-info-section {
  text-align: center;
  margin-bottom: 40px;
}
.contact-info-section p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.contact-info-section strong {
  color: var(--text-light);
}
.contact-info-section a {
  color: var(--accent-pink);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.contact-info-section a:hover {
  color: var(--primary-purple);
  text-decoration: underline;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}
.portfolio-item-link {
  text-decoration: none;
  color: inherit;
  display: block;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.portfolio-item-link:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(var(--primary-purple-rgb), 0.25);
}
.portfolio-item {
  background-color: var(--bg-medium);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border-color);
}
.portfolio-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.portfolio-item-link:hover .portfolio-item img {
  transform: scale(1.05);
}
.portfolio-item-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.portfolio-item-content h3 {
  margin-bottom: 8px;
  font-size: 1.5rem;
  color: var(--text-light);
  text-align: left;
}
.portfolio-item-content .category {
  font-size: 0.9rem;
  color: var(--accent-pink);
  font-weight: 600;
  margin-bottom: 12px;
  display: inline-block;
  border-bottom: 1px solid rgba(var(--accent-pink-rgb), 0.5);
  padding-bottom: 3px;
  text-align: left;
}
.portfolio-item-content .description {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
  flex-grow: 1;
  text-align: left;
}
.view-project-btn {
  color: var(--primary-purple);
  font-weight: 600;
  text-decoration: none;
  align-self: flex-start;
  transition: color 0.3s ease;
  padding: 5px 0;
}
.view-project-btn .arrow {
  transition: transform 0.3s ease;
  display: inline-block;
}
.portfolio-item-link:hover .view-project-btn {
  color: var(--accent-pink);
}
.portfolio-item-link:hover .view-project-btn .arrow {
  transform: translateX(5px);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}
.team-member-card {
  background-color: var(--bg-medium);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-member-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(var(--primary-purple-rgb), 0.2);
}
.member-image-container {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  background-image: linear-gradient(
    45deg,
    var(--accent-pink),
    var(--primary-purple)
  );
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}
.team-member-card:hover .member-image-container {
  transform: scale(1.05);
}
.team-member-card img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bg-medium);
}
.team-member-card h3 {
  color: var(--text-light);
  font-size: 1.4rem;
  margin-bottom: 5px;
  text-align: center;
}
.team-member-card .nick {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 400;
}
.team-member-card .role {
  color: var(--accent-pink);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.team-member-card .bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
}

.social-links a:hover {
  color: var(--accent-pink);
  transform: scale(1.15) translateY(-2px);
}

.social-links a svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  display: block;
}

footer {
  background-color: var(--bg-medium);
  color: var(--text-muted);
  padding: 50px 0 30px;
  border-top: 2px solid var(--border-color);
  font-size: 0.9rem;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.footer-logo-area,
.footer-links,
.footer-credits {
  flex: 1;
  min-width: 250px;
}
.footer-logo-area .logo {
  font-size: 1.3rem;
  margin-bottom: 15px;
}
.footer-logo-area .logo svg {
  width: 30px;
  height: 30px;
}
.studio-info {
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 300px;
}
.footer-links h4,
.footer-credits h4 {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 8px;
}
.footer-links h4::after,
.footer-credits h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--accent-pink),
    var(--primary-purple)
  );
}
.footer-links ul {
  list-style: none;
  padding-left: 0;
}
.footer-links li a {
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 8px;
  display: inline-block;
  transition: color 0.3s ease, transform 0.2s ease;
}
.footer-links li a:hover {
  color: var(--accent-pink);
  transform: translateX(5px);
}
.footer-credits p {
  margin-bottom: 8px;
}
.footer-credits a {
  color: var(--accent-pink);
  text-decoration: none;
  font-weight: 500;
}
.footer-credits a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-logo-area .logo,
  .footer-links h4::after,
  .footer-credits h4::after {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-logo-area .studio-info {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    align-items: center;
  }
  nav {
    margin-top: 15px;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  nav a {
    margin: 5px 10px;
  }
  header .btn-primary {
    margin-top: 10px;
  }
  main {
    padding-top: 190px;
  }
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .hero-content p {
    font-size: 1.1rem;
  }
  .page-content h1 {
    font-size: 2.5rem;
  }
  .quick-links {
    flex-direction: column;
    align-items: center;
  }
  .quick-link-item {
    width: 80%;
    text-align: center;
  }
}
