    @font-face {
    font-family: 'TT Octosquares Trial';
    src: url('https://fonts.cdnfonts.com/css/tt-octosquares-trial') format('woff2');
    font-weight: normal;
    font-style: normal;
    }

    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

    ::-webkit-scrollbar {
    display: none;
    }

    html, body {
    height: 100%;
    overflow: hidden;
    font-family: Arial, sans-serif;
    background-color: #000;
    -ms-overflow-style: none;
    scrollbar-width: none;
    }

    .custom-cursor {
    position: fixed;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(0, 255, 255, 0.1);
    border: 2px solid #0ff;
    box-shadow: 
        0 0 10px #0ff,
        inset 0 0 5px #0ff,
        0 0 20px rgba(0, 255, 255, 0.5);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
    transition: 
        transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        width 0.3s ease,
        height 0.3s ease,
        background-color 0.3s ease;
    }

    .custom-cursor::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #0ff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 5px #0ff;
    }

    .custom-cursor::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid #0ff;
    box-shadow: 0 0 15px #0ff;
    animation: pulse 2s infinite ease-out;
    opacity: 0.7;
    transform: scale(1.5);
    }

    @keyframes pulse {
    0%, 100% { transform: scale(1.5); opacity: 0.7; }
    50% { transform: scale(1.8); opacity: 0.4; }
    }

    .cursor-particles {
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    }

    .cursor-particle {
    position: absolute;
    background: #0ff;
    border-radius: 50%;
    pointer-events: none;
    animation: particleFade linear forwards;
    box-shadow: 0 0 5px #0ff;
    
    }

    @keyframes particleFade {
    0% { 
        transform: translate(0, 0); 
        opacity: 1; 
    }
    100% { 
        transform: translate(
        calc(var(--random-x) * 30px - 15px), 
        calc(var(--random-y) * 30px - 15px)
        ); 
        opacity: 0; 
    }
    }

    .nav-button, .main-logo, .social-button {
    cursor: none;
    }

    .scroll-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    }

    .nav-buttons {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    gap: 15px;
    }

    .nav-button {
    font-family: 'TT Octosquares Trial', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    color: white;
    background: transparent;
    border: none;
    padding: 8px 12px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0px 0px 0px #ffffff,
                0px 0px 5px #ffffff,
                0px 0px 15px #dddddd,
                0px 0px 30px #bbbbbb,
                0px 0px 50px #999999;

    }

    .nav-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.3s ease;
    }

    .nav-button:hover::after {
    width: 100%;
    }

    .page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    text-align: center;
    }

    .page1 {
    background-color: #000000;
    color: white;
    z-index: 1;
    transform: none !important;
    transition: none !important;
    }

    .left-nav {
    position: fixed;
    top: -30px;
    left: -10px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0px;
    }

    .main-logo {
    width: 150px;
    height: 150px;
    }

    .main-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    }

    .social-icons {
    display: flex;
    gap: 15px;
    }

    .social-button {
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    padding: 0;
    transition: transform 0.3s ease;
    }

    .social-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
    }

    .social-button:hover img {
    filter: brightness(0) invert(0.8);
    }

    .social-button:hover {
    transform: scale(1.1);
    }

    .typewriter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    top: -4%;
    }

    .typewriter {
    font-family: 'TT Octosquares Trial', sans-serif;
    font-size: 8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    color: white;
    position: relative;
    text-shadow: 0px 0px 0px #d4d4d4,
                0px 0px 20px #b1b0b0,
                0px 0px 40px #757575,
                0px 0px 80px #333333;

    z-index: 3;
    text-align: center;
    line-height: 1;
    }

    .typewriter::after {
    content: "|";
    position: absolute;
    right: -2rem;
    animation: blink 0.7s infinite;
    }

    .typewriter-subtitle {
    font-family: 'TT Octosquares Trial', sans-serif;
    font-size: 1.2rem;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0rem;
    color: rgb(0, 255, 200);
    position: absolute;
    top: 210%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: inline-block;
    text-align: center;
    line-height: 1;
    opacity: 0;
    margin-top: 4rem;
    padding-right: 0rem;
    white-space: nowrap;
    }

    .typewriter-subtitle.typing {
    opacity: 1;
    }

    .typewriter-subtitle::after {
    content: "|";
    position: absolute;
    right: -0.7rem;
    animation: blink 0.7s infinite;
    }

    .typewriter-subtitle.completed::after {
    opacity: 0;
    }

    @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
    }

    .page:not(.page1):not(.active) {
    transform: translateX(100%);
    }

    .page.active {
    z-index: 2;
    }

    .page2, .page4 {
    background-color: #000000;
    transition: transform 0.5s ease-in-out;
    }

    .page4 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  color: white;
  overflow-y: auto;
  padding: 80px 20px;
}

.page4-content {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding-top: 300px; 
}

.page4 h1 {
  font-family: 'TT Octosquares Trial', sans-serif;
  font-size: 3rem;
  color: #00ffc8;
  text-shadow: 0px 0px 0px #00ffc8,
              0px 0px 5px #00ffc8,
              0px 0px 15px #00dcae,
              0px 0px 30px #00b38d,
              0px 0px 50px #008c6f;
  margin-bottom: -20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
}

.video-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
}

.video-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 560px;
  aspect-ratio: 16/9;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 2px solid #00ffc8;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 255, 200, 0.3);
}
.swipe-right-button {
  position: absolute;
  bottom: 15%;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(8, 255, 201, 0.582);
  backdrop-filter: blur(5px);
  border-radius: 18px;
  padding: 8px 15px 8px 20px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
}

.swipe-right-button svg {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.swipe-right-button:hover {
  background-color: rgba(8, 255, 201, 0.582);
}

.swipe-right-button:hover svg {
  transform: translateX(3px);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (min-width: 768px) {
  .swipe-right-button {
    display: none;
  }
}

    .page3{
    background-color: #000000;
    overflow: hidden;
    transition: transform 0.5s ease-in-out;
    }

    #gridCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    }

    .page2 {
    display: block;
    padding-top: 150px;
    overflow-y: auto;
    overflow: auto;
    
    }

    .left-paragraph, .right-paragraph {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .left-paragraph {
    transition-delay: 0.3s;
    }

    .right-paragraph {
    transition-delay: 0.6s;
    }

    .page2.active .left-paragraph,
    .page2.active .right-paragraph {
    opacity: 1;
    transform: translateY(0);
    }

    
    .page2-buttons {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.9s;
    }

    .page2.active .page2-buttons {
    opacity: 1;
    transform: translateY(0);
    }
    .left-paragraph {
    width: 100%;
    text-align: left;
    margin-bottom: 60px;
    
    }

    .right-paragraph {
    width: 100%;
    text-align: right;
    }


    .left-paragraph h2,
    .right-paragraph h2 {
    font-family: 'TT Octosquares Trial', sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #00ffc8;
    
    text-shadow: 0px 0px 0px #00ffc8,
                0px 0px 50px #00ffc8,
                0px 0px 0px #00dcae,
                0px 0px 2px #00b38d,
                0px 0px 10px #008c6f;
    }

    .left-paragraph p{
    font-family: 'TT Octosquares Trial', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ffffff;
    }

    .right-paragraph p {
    font-family: 'TT Octosquares Trial', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ffffff;
    flex: 1;
    }

    .right-paragraph p span {
    display: block;
    font-style: italic;
    margin-top: 10px;
    color: #00ffc8;
    }
.page2-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.page2-button {
  font-family: 'TT Octosquares Trial', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #00ffc8;
  background: rgba(0, 15, 30, 0.7);
  border: 1px solid #00ffc8;
  padding: 14px 45px;
  letter-spacing: 3px;
  cursor: none;
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 15px rgba(0, 255, 200, 0.3);
  text-shadow: 0 0 8px rgba(0, 255, 200, 0.6);
  border-radius: 2px;
  z-index: 1;
  animation: pulse-glow 3s infinite;
}

.page2-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 200, 0.2), transparent);
  transition: all 0.6s ease;
  z-index: -1;
}

.page2-button:hover {
  background: rgba(0, 30, 60, 0.8);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 25px rgba(0, 255, 200, 0.5),
              0 0 40px rgba(0, 100, 255, 0.2);
  text-shadow: 0 0 12px rgba(0, 255, 200, 0.8);
}

.page2-button:hover::before {
  left: 100%;
}

.page2-button:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 0 10px rgba(0, 255, 200, 0.3);
}

.page2-button::after {
  content: '01001000 01001001';
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  font-size: 0.7rem;
  color: rgba(0, 255, 200, 0.3);
  text-align: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.page2-button:hover::after {
  opacity: 1;
  bottom: -25px;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(0, 255, 200, 0.3);
  }
  50% {
    box-shadow: 0 0 25px rgba(0, 255, 200, 0.6);
  }
}



    .side-logo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 400px; 
    height: auto;
    opacity: 0.9;
    z-index: 1;
    transition: opacity 0.5s ease;
    }

    .sides-logo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 800px; 
    height: auto;
    opacity: 0.9;
    z-index: 1;
    transition: opacity 0.5s ease;
    }

    .left-logo {
    top: 20%;
    left: 50%;
    }

    .right-logo {
    top: 80%;
    right: 60%;
    }

    .honeycomb-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
    }
    .page2-content {
    position: relative;
    padding: 0 100px;
    z-index: 1;
    }

    .paragraph-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    }


    .page2-footer {
    width: 100%;
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.7);
    border-top: 1px solid #00ffc8;
    margin-top: 60px;
    }

    .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    }

    .footer-content span {
    font-family: 'TT Octosquares Trial', sans-serif;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 1.4rem;
    
    font-weight: bold;
    
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    }

    .social-share {
    display: flex;
    gap: 100px;
    }

    .share-button {
    background: transparent;
    border: none;
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
    
    }

    .share-button img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
    
    }

    .share-button:hover img {
    filter: brightness(0) invert(0.7);
    }

    .share-button:hover {
    transform: translateY(-3px);
    }

    .image-slider {
    width: 100%;
    height: 100vh;
    position: relative;
    }

    .slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    }

    .slide {
    position: absolute;
    top: 12%;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1;
    }

    .slide.active {
    transform: scale(1) translateY(0);
    opacity: 1;
    z-index: 3;
    
    }

    .slide img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
    position: relative;
    border: 3px solid transparent;
    background: 
        linear-gradient(black, black) padding-box,
        linear-gradient(to bottom, #00ffc8, white) border-box;
    box-shadow: 0 0 50px rgba(12, 243, 243, 0.3);
    }

    .slider-nav {

    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    }

    .nav-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    transition: background-color 0.3s ease;
    }

    .nav-dot.active {
    background-color: #00ffc8;
    }

    .nav-dot:hover {
    background-color: rgba(0, 255, 200, 0.7);
    }

    .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    
    }

    .slider-arrow:hover {
    background-color: rgba(0, 255, 200, 0.7);
    transform: translateY(-50%) scale(1.1);
    
    }

    .left-arrow {
    left: 30px;
    }

    .right-arrow {
    right: 30px;
    }

    .page3 {
    display: block;
    padding-top: 100px;
    overflow-y: auto;
    background-color: #000;
    color: white;
    }

    .page3-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    }

    .countdown-section {
    text-align: center;
    margin-bottom: 100px;
    }

    .countdown-section h1 {
    font-family: 'TT Octosquares Trial', sans-serif;
    font-size: 4rem;
    color: #00ffc8;
    text-shadow: 0px 0px 0px #00ffc8,
                0px 0px 0px #00ffc8,
                0px 0px 0px #00dcae,
                0px 0px 50px #00b38d,
                0px 0px 100px #008c6f;

    margin-bottom: 40px;
    }

    .damnn {
    font-family: 'TT Octosquares Trial', sans-serif;
    font-size: 4rem;
    color: #ffffff;
    text-shadow: 0px 0px 0px #ffffff,
                0px 0px 5px #ffffff,
                0px 0px 25px #dddddd,
                0px 0px 50px #bbbbbb,
                0px 0px 100px #bbbbbb,
                0px 0px 150px #999999;

    }
    .countdown-section h2 {
    font-family: 'TT Octosquares Trial', sans-serif;
    font-size: 2rem;
    margin: 30px 0;
    color: white;
    text-shadow: 0px 0px 0px #ffffff,
                0px 0px 0px #ffffff,
                0px 0px 0px #dddddd,
                0px 0px 15px #bbbbbb,
                0px 0px 30px #999999;

    }

    .countdown-timer {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0 auto;
    }

    .countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    }

    .countdown-number {
    font-family: 'TT Octosquares Trial', sans-serif;
    font-size: 5rem;
    font-weight: bold;
    color: #00ffc8;
    text-shadow: 0px 0px 0px #00ffc8,
                0px 0px 0px #00ffc8,
                0px 0px 0px #00dcae,
                0px 0px 10px #00b38d,
                0px 0px 60px #008c6f;

    }

    .countdown-label {
    font-family: 'TT Octosquares Trial', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
    

    }

    .registration-button {
    font-family: 'TT Octosquares Trial', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    color: #00ffc8;
    background: rgba(0, 15, 30, 0.7);
    border: 1px solid #00ffc8;
    padding: 14px 45px;
    letter-spacing: 3px;
    cursor: none;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 15px rgba(0, 255, 200, 0.3);
    text-shadow: 0 0 8px rgba(0, 255, 200, 0.6);
    border-radius: 2px;
    z-index: 1;
    }

    .registration-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
                transparent, 
                rgba(0, 255, 200, 0.2), 
                transparent);
    transition: all 0.6s ease;
    z-index: -1;
    }

    .registration-button:hover {
    background: rgba(0, 30, 60, 0.8);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 25px rgba(0, 255, 200, 0.5),
                0 0 40px rgba(0, 100, 255, 0.2);
    text-shadow: 0 0 12px rgba(0, 255, 200, 0.8);
    }

    .registration-button:hover::before {
    left: 100%;
    }

    .registration-button:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 0 10px rgba(0, 255, 200, 0.3);
    }

    .registration-button::after {
    content: '01001000 01001001';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    font-size: 0.7rem;
    color: rgba(0, 255, 200, 0.3);
    text-align: center;
    opacity: 0;
    transition: all 0.4s ease;
    }

    .registration-button:hover::after {
    opacity: 1;
    bottom: -25px;
    }

    @keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 15px rgba(0, 255, 200, 0.3); }
    50% { box-shadow: 0 0 25px rgba(0, 255, 200, 0.6); }
    }

    .registration-button {
    animation: pulse-glow 3s infinite;
    }

    .binary-float {
    position: absolute;
    color: rgba(0, 255, 200, 0.7);
    font-size: 0.8rem;
    pointer-events: none;
    transition: all 0.5s ease;
    z-index: 10;
    }

    .button-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    }

    .button-particles::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: #00ffc8;
    border-radius: 50%;
    box-shadow: 
        -30px -10px 0 #00ffc8,
        20px -15px 0 #00ffc8,
        -10px 20px 0 #00ffc8,
        25px 10px 0 #00ffc8;
    animation: particles-explode 0.8s ease-out forwards;
    }

    @keyframes particles-explode {
    0% { 
        transform: scale(1);
        opacity: 1;
    }
    100% { 
        transform: scale(20);
        opacity: 0;
        box-shadow: 
        -100px -80px 0 #00ffc8,
        80px -100px 0 #00ffc8,
        -60px 90px 0 #00ffc8,
        90px 60px 0 #00ffc8;
    }
    }

    .info-points {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 100px;
    flex-wrap: wrap;
    }

    .info-card {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    border: 1px solid rgba(0, 255, 200, 0.3);
    border-radius: 5px;
    transition: transform 0.3s ease;
    
    }

    .info-card:hover {
    transform: translateY(-10px);
    border-color: #00ffc8;
    
    
    }

    .info-number {
    font-family: 'TT Octosquares Trial', sans-serif;
    font-size: 1.5rem;
    color: #00ffc8;
    margin-bottom: 15px;
    }

    .info-card h3 {
    font-family: 'TT Octosquares Trial', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
    }

    .info-card p {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ccc;
    }

    .page3 {
    overflow-y: scroll;
    scroll-behavior: smooth;
    }

    .info-points {
    min-height: calc(100vh - 500px); 
    }

    .info-card {
    width: 30%; 
    min-height: 400px; 
    padding: 30px;
    margin: 0 auto; 
    }

    .middle-card {
    margin-top: 50px;
    }

    .info-card h3,
    .info-card p {
    font-family: 'TT Octosquares Trial', sans-serif;
    }

    .info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    }

    .info-card p {
    font-size: 1rem;
    line-height: 1.6;
    }
    .info-points {
    perspective: 1000px;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 100px;
    flex-wrap: wrap;
    padding: 0 20px;
    }

    .info-card {
    width: 30%;
    min-width: 300px;
    min-height: 400px;
    transition: transform 0.4s ease-out;
    transform: perspective(500px) rotateX(0) rotateY(0) translateZ(0);
    }

    .card-content {
    padding: 30px;
    border: 1px solid rgba(0, 255, 200, 0.3);
    
    border-radius: 5px;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    }

    .info-card:hover {
    transform: perspective(500px) rotateX(5deg) rotateY(5deg) translateZ(20px);
    
    }
    .info-card {
    position: relative;
    overflow: hidden;
    }

    .card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
    border-radius: 5px;
    }

    .card-content {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.7);
    }

    .loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
    }

    .loading-animation {
    position: relative;
    width: 200px;
    height: 200px;
    }

    .loading-grid {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
    }

    .loading-cell {
    background: rgba(0, 255, 200, 0.2);
    border-radius: 4px;
    animation: pulse 1.5s infinite ease-in-out;
    }

    @keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
        background: rgba(0, 255, 200, 0.2);
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
        background: rgba(0, 255, 200, 0.8);
    }
    }

    .loading-cell:nth-child(1) { animation-delay: 0.1s; }
    .loading-cell:nth-child(2) { animation-delay: 0.2s; }
    .loading-cell:nth-child(3) { animation-delay: 0.3s; }
    .loading-cell:nth-child(4) { animation-delay: 0.2s; }
    .loading-cell:nth-child(5) { animation-delay: 0.3s; }
    .loading-cell:nth-child(6) { animation-delay: 0.4s; }
    .loading-cell:nth-child(7) { animation-delay: 0.3s; }
    .loading-cell:nth-child(8) { animation-delay: 0.4s; }
    .loading-cell:nth-child(9) { animation-delay: 0.5s; }

    .loading-text {
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: textPulse 2s infinite;
    }

    @keyframes textPulse {
    0%, 100% { opacity: 0.6; }
    60% { opacity: 1; }
    }
#matrixRain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  pointer-events: none;
}

.map-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

.map-container {
  width: 100%;
  max-width: 1200px;
  text-align: center;
}

.map-container h2 {
  font-family: 'TT Octosquares Trial', sans-serif;
  font-size: 2rem;
  color: #00ffc8;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 10px rgba(0, 255, 200, 0.5);
}

.map-wrapper {
  width: 100%;
  height: 500px;
  border-top: 2px solid #00ffc8;
  border-bottom: 2px solid #00ffc8;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 255, 200, 0.3);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}


@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  
  .left-nav {
    display: none;
  }
  
  .nav-buttons {
    display: none;
  }
  
  .mobile-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(0, 255, 200, 0.3);
  }
  
  .mobile-logo img {
    height: 40px;
  }
  
  .mobile-menu-btn {
    background: transparent;
    border: none;
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
  }
  
  .mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #00ffc8;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
  }
  
  .mobile-menu-btn span:nth-child(1) {
    top: 5px;
  }
  
  .mobile-menu-btn span:nth-child(2) {
    top: 14px;
  }
  
  .mobile-menu-btn span:nth-child(3) {
    top: 23px;
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 14px;
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 14px;
  }
  
  .mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 99;
    border-bottom: 1px solid #00ffc8;
  }
  
  .mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
  }
  
  .mobile-menu-item {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 0;
    font-family: 'TT Octosquares Trial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(0, 255, 200, 0.2);
  }
  
  .mobile-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
  }
  
  .mobile-social-icons img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
  }
  
  .typewriter {
    font-size: 3rem;
    letter-spacing: 0.2rem;
  }
  
  .typewriter-subtitle {
    font-size: 1rem;
    top: 150%;
    white-space: normal;
    padding: 0 20px;
  }
  
  .page2 {
    padding-top: 80px;
  }
  
  .page2-content {
    padding: 0 20px;
  }
  
  .paragraph-container {
    flex-direction: column;
  }
  
  .left-paragraph, .right-paragraph {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .left-paragraph h2, .right-paragraph h2 {
    font-size: 1.8rem;
  }
  
  .left-paragraph p, .right-paragraph p {
    font-size: 1rem;
  }
  
  .page2-buttons {
    justify-content: center;
  }
  
  .page2-button {
    padding: 12px 30px;
    font-size: 1rem;
  }
  
  .damnn{
    font-size: 2.5rem;
  }
  .countdown-section h1 {
    margin-top: 100%;
    font-size: 2.5rem;
  }
  
  .countdown-number {
    font-size: 3rem;
  }
  
  .countdown-label {
    font-size: 0.8rem;
  }
  
  .countdown-timer {
    gap: 15px;
  }
  
  .info-points {
    flex-direction: column;
    align-items: center;
  }
  
  .info-card {
    width: 100%;
    min-width: auto;
    margin-bottom: 30px;
  }
  
  .image-slider {
    height: auto;
    margin-top: 80px;
  }
  
  .slide img {
    width: 90%;
    height: auto;
  }
  
  .page4 h1 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .video-container {
    flex-direction: column;
    align-items: center;
  }
  
  .video-wrapper {
    width: 100%;
    margin-bottom: 30px;
  }
  
  .map-wrapper {
    height: 300px;
  }
  
  .map-container h2 {
    font-size: 1.5rem;
  }
  
  .side-logo, .sides-logo {
    display: none;
  }
  
  .loading-animation {
    width: 150px;
    height: 150px;
  }
  
  .loading-text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .typewriter {
    font-size: 2.5rem;
  }
  
  .countdown-number {
    font-size: 2rem;
  }
  
  .countdown-unit {
    min-width: 60px;
  }
  
  .registration-button, .page2-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .page2-footer .footer-content span {
    font-size: 1rem;
  }
  
  .social-share {
    gap: 30px;
  }
  
  .share-button {
    width: 24px;
    height: 24px;
  }
}