<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.intro-container {
    width: 100%;
    position: relative;
}

.intro-container hr, .way-content hr {
    width: 20%
}

.intro-text {
    width: 100%;
    text-align: center;
}

.intro-subtext span {
    color: var(--review-color);
    transition: filter 0.3s ease-in-out, color 0.3s ease-in-out;
    cursor: url('./assets/cursors/pointer.png') 16 16, auto;
}

.intro-subtext span:hover, a:hover{
    filter: drop-shadow(1px 1px 10px var(--review-color));
    color: whitesmoke;
}

.pfp-container {
    display: flex;
    position: relative;
    justify-content:center;
    width: 100%;
    cursor: url('assets/cursors/pointer.png') 16 16, auto;
}

#aboutPfp {
    height: auto;
    width: auto;
}

.way-container {
    position: relative; 
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(180deg,rgba(0, 0, 0, 1) 0%, rgba(0, 17, 61, 1) 60%, rgba(32, 95, 255, 1) 100%);
    margin: auto 2rem;
    border-radius: 20px;
    padding: 3rem;

}
.way-body {
    display: flex;
    gap: 5.6rem;
    margin: 4rem;

}

.way-content {
    display: flex; 
    flex-direction: column;

}
.way-content h2 {
    text-align: center;
}

.way-content p {
    text-align: left;
    font-size: 20px; 
}

.way-content span {
    font-size: 22px;
    font-weight: bold;
}

.way-img-box {
    max-width: 320px;
    margin: 1.5rem auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.way-img-box img {
    width: 100%;
    display: block;
    border-radius: inherit;
}

.way-img-box:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 28px rgba(255, 255, 255, 0.2);
}

.way-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    min-width: 200px;
    

}

.way-buttons button {
    box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}

/* Lightbox overlay */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

/* Image inside lightbox */
.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

/* Close button */
.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 10000;
  transition: transform 0.3s ease;
}

.lightbox-close:hover {
  transform: scale(1.2);
}


a {
    text-decoration: none;
    color: #FFD700;
    transition: filter 0.3s ease-in-out, color 0.3s ease-in-out;
}

a, button{
    cursor: url('assets/cursors/pointer.png')16 16, auto;
}

</pre></body></html>