body {
  font-family: Arial, sans-serif;
  background: #ffffff;
  margin: 0;
  text-align: center;
  color: #000;
}

/* Logo Styles */
.logo-link {
  text-decoration: none;
}

.logo-container {
  display: inline-block;
  text-align: center;
  margin: 40px auto 20px auto;
}

.logo-text {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: 2.5rem;
  font-weight: 800;
  gap: 0.10rem;
}

.word {
  color: #000;
}

.diamond {
	font-size: 18.2px;
	color: #000;
	display: inline-block;
	line-height: 10px;
}
.diamond0 {
	font-size: 1rem;
	color: #000;
	display: inline-block;
	line-height: 1.1;
	padding-left: 2px;
	padding-right: 2px;
}
.diamond1 {
	font-size: 13px;
	color: #000;
	display: inline-block;
	line-height: 1.1;
	padding-left: 2px;
	padding-right: 2px;
}
.stacked-i {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.9;
  margin-bottom: 7px;
  margin-top: 0px;
}

.lower-i {
  font-size: 2.5rem;
  font-weight: 800;
  color: #000;
  margin-top: -0.2rem;
}

.logo-subtext {
  font-size: 0.9rem;
  color: #555;
  margin-top: -3px;
  margin-left: -0px;
}

.logo-underline {
	width: 260px;
	height: 4px;
	background: linear-gradient(to right, #a855f7, #3b82f6);
	border-radius: 2px;
	margin-top: -7px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 0;
}

.logo-link:hover .logo-underline {
  opacity: 0.9;
  transform: scaleX(1.05);
  transition: all 0.3s ease;
}

/* Two-Column Layout */
.container {
  display: flex;
  flex-wrap: wrap;
  min-height: 200vh;
  margin: 0 auto;
  max-width: 1200px;
  text-align: left;
}

.box {
  flex: 1;
  padding: 2rem;
  box-sizing: border-box;
  min-width: 300px;
}

.left {
  background: #f6f8fa;
  border-right: 2px solid #e0e0e0;
	 
}

.right {
  background: #ffffff;
}

h1 {
  margin-top: 0;
  color: #333;
}

p {
  line-height: 1.7;
}

ul {
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

iframe,
img,
video {
  max-width: 100%;
  height: 400px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.box.left {
  overflow-y: auto;
  max-height: calc(1000vh - 300px); /* Leaves room for logo area */
}
.logo-link {
  text-decoration: none;
}

.logo-container {
  display: inline-block;
  text-align: center;
  margin: 40px auto 20px auto;
}

.logo-text {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: 2.5rem;
  font-weight: 800;
  gap: 0.10rem;
  flex-wrap: nowrap;
}

/* Letters default */
.word {
  will-change: transform;
  display: inline-block;
  color: black;
  animation: slideIn 0.6s ease forwards, waveEffect 0.5s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.1s), calc(var(--i) * 0.2s);
}

/* On hover: pulsing with gradient */
.logo-container:hover .word {
  animation: slideIn 0.6s ease forwards, gradientInflate 0.5s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.1s), calc(var(--i) * 0.15s);
}

/* Diamonds */
.diamond,
.diamond0,
.diamond1 {
  font-size: 18.2px;
  color: #000;
  display: inline-block;
  line-height: 10px;
}

.diamond0 {
  font-size: 1rem;
  line-height: 1.1;
  padding-left: 2px;
  padding-right: 2px;
}

.diamond1 {
  font-size: 13px;
  line-height: 1.1;
  padding-left: 2px;
  padding-right: 2px;
}

.stacked-i {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.9;
  margin-bottom: 7px;
  margin-top: 0px;
}

.lower-i {
  font-size: 2.5rem;
  font-weight: 800;
  color: #000;
  margin-top: -0.2rem;
}

.logo-subtext {
  font-size: 0.9rem;
  color: #555;
  margin-top: -3px;
}

.logo-underline {
  width: 259px;
  height: 4px;
  background: linear-gradient(270deg, #a855f7, #3b82f6, #a855f7);    
  background-size: 400% 400%;
  animation: gradientPulse 6s ease infinite;
  border-radius: 2px;
  margin-top: -7px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0;
}

.logo-link:hover .logo-underline {
  opacity: 0.9;
  transform: scaleX(1.05);
  transition: all 0.3s ease;
}

/* Keyframes */
@keyframes slideIn {
  0% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes waveEffect {
  0%, 100% {
    transform: scale(1);
    background: none;
    -webkit-text-fill-color: black;
    color: black;
  }
  50% {
    transform: scale(1.06);
  }
}

@keyframes gradientInflate {
  0%, 100% {
    transform: scale(1);
    background: none;
    -webkit-text-fill-color: black;
    color: black;
  }
  50% {
    transform: scale(1.07);
    background: linear-gradient(to right, #000000, #551a8b);
    background-size: 200% 100%;
    background-position: center;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

@keyframes gradientPulse {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@keyframes flicker {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.1); }
}

/* Diamonds flicker (fast by default) */
.diamond0,
.diamond1 {
  animation: flicker 0.6s infinite ease-in-out;
}

/* On hover: slow but synchronized flicker */
.logo-container:hover .diamond0,
.logo-container:hover .diamond1 {
  animation: flicker 2s infinite ease-in-out;
}
