html {  
  zoom: var(--rzf, 1);
  font-size: max(calc(min(1vw, 13.66px) * var(--rfso, 1)), var(--minfs, 0px));
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background: #300040; 
  font-size: calc(1rem * var(--bfso, 1));
  margin: 0;
  padding: 0;
  font-synthesis: none;
  font-kerning: none;
  font-variant-ligatures: none;
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricprecision;
  white-space: normal;
}

/* General Styles */
p, ul, ol, li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

a {
  text-decoration: none;
  color: inherit;
}

.main-container {
  display: grid;
  grid-template-columns: auto 100rem auto;
  align-items: center;
  position: relative;
  height: 100vh;
}

.background-overlay {
  background-color: #300040;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.content {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  color: #ffffff;
}

.grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.left-column {
  text-align: left;
}

.right-column {
  text-align: right;
}

.right-column p {
  font-size: 1.5rem;
}

.name {
  font-size: 5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.title {
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 1rem;
}

.section {
  margin-bottom: 1rem;
  padding: 1rem;
  text-align: center;
  border-radius: 8px;
  color: #ffffff;
  font-size: 1.5rem;
}

.section a {
  color: #ffffff;
  text-decoration: none;
}

.profile-image {
  margin: auto;
}

.profile-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.contact-info {
  text-align: center;
}

.contact-info p {
  font-size: 2rem;
}

/* Specific Component Styles */
.companies, .contact, .emails {
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.5rem;
}

.social-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
}

.social-icon {
  max-width: 40px;
  height: auto;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

#bluesky {
  background-color: #0886fe; /* Bluesky blue */
}

#facebook {
  background-color: #1877f2; /* Facebook blue */
}

#instagram {
  background-color: #e4405f; /* Instagram pink */
}

#linkedin {
  background-color: #0077b5; /* LinkedIn blue */
}

#reddit {
  background-color: #ff4500; /* Reddit orange */
}

#tiktok {
  background-color: #010101; /* TikTok black */
}

#twitter {
  background-color: #1da1f2; /* Twitter blue */
}

#xiaohongshu {
  background-color: #ff2842; /* Xiaohongshu pink */
}

#vcf {
  background-color: #000000; /* MGC purple */
}

/* Media Queries for Small Screens */
@media (max-width: 1200px) {
  .grid-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .name {
    font-size: 5rem;
  }
  
  .title, .social-container a {
    font-size: 3rem;
  }
  
  .profile-image img {
    max-width: 150px;
  }
  
  .companies, .contact, .emails {
    font-size: 2rem;
  }
  
  .social-icon img {
    max-width: 30px;
  }
}