
:root {
  --card-bg: rgba(10, 10, 10, 0.45); 
  --glass-border: rgba(255, 255, 255, 0.08); 
  --text-main: #ffffff;
  --text-muted: #aaaaaa; 
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Google Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #000;
  color: var(--text-main);
  margin: 0;
  overflow-x: hidden;
  text-shadow: 2px 2px 6px #000000, 0px 0px 12px #000000;
}

@keyframes boxExpand {
  0% { 
    clip-path: inset(50% round 30px);
    transform: scale(0.85);
  }
  100% { 
    clip-path: inset(0% round 0px);
    transform: scale(1);
  }
}

@keyframes blurFade {
  0% {
    filter: blur(30px);
  }
  100% {
    filter: blur(0px);
  }
}

.page-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh; 
  padding: 20px 0; 
  overflow-x: hidden;
  clip-path: inset(50% round 30px);
  transform: scale(0.85);
  filter: blur(30px);
  animation: 
    boxExpand 0.8s cubic-bezier(0.85, 0, 0.15, 1) 1s forwards,
    blurFade 1.5s ease-out 1.4s forwards;
}

.page-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://holygraillab.com/image/1Hldf7') center/cover no-repeat;
  z-index: -1;
  pointer-events: none;
}

@keyframes smoothReveal {
  0% {
    opacity: 0;
    filter: blur(20px);
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
  }
}

.container {
    max-width: 912px;
    padding: 20px;
    width: 100%;
    margin: auto;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.card {
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 20px;
}

.images-section {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: -38px;
    opacity: 0;
    animation: smoothReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.8s;
}

.image-container {
  width: 40%; 
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-container h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: var(--text-main);
  text-align: center;
  letter-spacing: 0.5px;
}

.boring-text {
  font-family: "Courier New", Courier, monospace !important;
  font-weight: 400;
  color: #ffffff !important;
  letter-spacing: 0px !important;
}

.after-text {
  font-family: "Google Sans", -apple-system, sans-serif !important;
  font-weight: 900;
  font-size: 1.6rem !important;
  color: #ffffff;
  letter-spacing: 1px !important;
  text-align: center;
}

.image-container img {
  width: 100%;
  height: auto;
  max-height: 300px; 
  object-fit: contain; 
  object-position: bottom;
  display: block;
  opacity: 1; 
  background: transparent; 
  border: none; 
  transition: transform 0.3s;
  cursor: default; 
}

.bw-image {
  filter: grayscale(100%);
}

.info-card {
  text-align: center;
  opacity: 0;
  animation: smoothReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 2.1s; 
}

.info-card h1 {
  color: #ffffff;
  font-size: 2.2rem; 
  margin-top: 0;
  margin-bottom: 15px; 
  letter-spacing: 1px;
}

.info-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto 20px auto; 
  font-weight: 400;
}

.info-card p strong {
  color: #ffffff;
  font-weight: 600;
}

button.action-btn {
    background: rgb(0 0 0 / 40%);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgb(255 255 255 / 0%);
    border-radius: 50px;
    color: #ffffff;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    font-family: inherit;
    letter-spacing: 1px;
    box-shadow: inset 0px 1px 20px 0px rgb(0 0 0);
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    outline: none;
    text-transform: uppercase;
    margin-top: 5px;
    font-family: 'Google Sans';
}

button.action-btn:hover {
  background: rgba(255, 255, 255, 0.1); 
  border-color: rgba(255, 255, 255, 0.2);
  text-shadow: 0px 0px 8px rgba(255, 255, 255, 0.5), 2px 2px 6px #000;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

button.action-btn:active {
  background: rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.5);
  color: var(--text-muted);
  text-shadow: 2px 2px 6px #000;
}

.cursor-tooltip {
  position: absolute;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

#gas-container {
  display: none;
  position: fixed;
  bottom: 34px;
  left: max(195px, calc(50vw - 765px));
  width: 200px;
  height: 200px;
  pointer-events: none;
  z-index: 9998;
  opacity: 1;
  transition: opacity 2s ease-in-out;
}

@media (min-width: 1900px) and (max-width: 1999px) {
  #gas-container {
    display: block;
  }
}

.gas-particle {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(50, 255, 50, 0.5) 0%, rgba(10, 200, 20, 0.1) 60%, rgba(0, 0, 0, 0) 80%);
  filter: blur(15px);
  opacity: 0;
  transform-origin: center;
  animation: float-gas linear forwards;
}

@keyframes float-gas {
  0% {
    transform: scale(0.2) translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  20% {
    opacity: var(--max-opacity, 0.8);
  }
  80% {
    opacity: var(--max-opacity, 0.8);
  }
  100% {
    transform: scale(var(--end-scale, 5)) translate(var(--tx, 150px), var(--ty, -250px)) rotate(var(--rot, 90deg));
    opacity: 0;
  }
}

#mobile-sneaker {
  display: none;
  position: fixed;
  top: -10px;
  left: -10px;
  width: 150px;
  z-index: 10000;
  pointer-events: none; 
  transform: translate(-120%, -120%) rotate(15deg);
  will-change: transform;
}

@media (min-width: 769px) {
  
  .container {
    margin-top: 120px; 
  }

  .images-section {
    margin-top: 0px; 
  }

  .image-container:first-child {
    margin-top: 25px; 
  }

  .bw-image {
    transform: translateY(22px);
  }
}

@media (max-width: 768px) {
  .images-section {
    flex-direction: column;
    gap: 20px; 
    margin-bottom: 20px;
    width: 100%;
  }

  .image-container {
    width: 100%;
  }
  
  .image-container img {
    max-height: 250px; 
  }

  .after-text, .boring-text {
    font-size: 1.3rem !important;
    margin-bottom: 10px;
  }

  .card {
    padding: 20px 15px; 
  }

  .info-card h1 {
    font-size: 1.6rem;
  }

  .info-card p {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .cursor-tooltip {
    display: none !important; 
  }

  #mobile-sneaker {
    display: block;
  }
}