html {
    scroll-padding-top: 120px; 
}

.mike-ass-container {
    width: 100%;
    padding-bottom: 30px;
}

.mike-ass-img {
    width: 70%;
    cursor: pointer;
}

.mike-ass-img {
    cursor: url('/images/GYATT_Cursor.png'), pointer;
}

#gyatt-hero {
    background-color: transparent;
}

#about {
    background-color: transparent;
    background-image: linear-gradient(180deg, rgba(244, 244, 249, .05) 0%, rgba(250, 188, 147, 0) 100%);

}

#playButton {
        color: #32AE40; 
        font-size: 40px; 
        cursor: pointer;
        transition: transform 0.2s ease; 
}


.scrolling-header {
    width: 100vw; 
    height: 100px; 
    background-color: #32AE40;
    overflow: hidden; 
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
}


.scrolling-container {
    display: flex; 
    white-space: nowrap;
    will-change: transform; 
}


.scrolling-text {
    display: inline-block;
    font-size: 2rem; 
    font-weight: bold; 
    color: #fff; 
    text-transform: uppercase; 
    padding-right: 2rem; 
}


.video-container {
    position: relative; /* Establish relative positioning context */
    display: inline-block;
    width: 100%;
    height: auto;
  }
  
  .video {
    display: block;
    width: 100%;
    height: auto;
  }
  
  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.play-button.hidden {
    display: none; /* Hide the button completely */
}

.play-button:hover {
    background-color: rgba(0, 0, 0, 0.7); /* Slightly darker on hover */
}
  
  .img-block, .section-overlay, .fadeInLeft {
    position: relative; /* Ensure parent containers retain positioning */
  }
  
  .menu-custom-gyatt {
    width: 50% !important;
    border-radius: 0 0 25px 25px !important;
  }

  
  #buy-section {
   background-color: transparent;
  }

  #review-section {
    background-color: transparent;
  }

  #ending-banner {
    background-color: transparent;
  }

  #ending-footer {
    background-color: transparent;
  }

  .bg--cheeks {
    background: #F5EFD1;
  }

  .ending-background-image {
    background-image: url('/images/ending-background.png');
    background-repeat: no-repeat;
    background-size: cover; /* Or 'contain' if appropriate */
    background-position: center top 20%; /* Adjust to align the image */
    position: relative;
    z-index: 1;
  }

#ending-banner, #ending-footer {
    background: transparent; /* Ensure sections don't overwrite the background */
}

  .buy-section-container {
    max-width: 800px;
    margin: auto;
    padding: 50px 20px 100px 20px;
    text-align: center;
  }

  #buy-section .hero-overlay {
    background-image: url(/images/bg-08.png);
    background-position: center;
    
  }
  
  h2 {
    font-size: 2rem;
    position: relative;
  }
  
  .gyatt-card-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gyatt-card {
    display: flex;
    align-items: center;
    background: #F5EFD1;
    color: black;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    gap: 20px;
    transform: scale(0.9) translateY(100px); /* Initial state for animation */
    opacity: 0; /* Initial state for animation */
    transition: all 0.5s ease; /* Smooth transition */
}

.gyatt-card-content p {
    color: #757575;
}

.gyatt-card.in-view {
    transform: scale(1) translateY(0); /* Final state for animation */
    opacity: 1;
}

.gyatt-card-image {
    flex: 1;
    text-align: left;
}

.gyatt-card-image img {
    max-width: 100%;
    width: 250px;
    border-radius: 8px;
}

.gyatt-card-content {
    flex: 1;
}

.button-flex {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.button-flex .gyatt-button-left,
.button-flex .gyatt-button-right {
    flex: 1;
}

@media (max-width: 992px) {
    .header-social-icon-container {
        display: none !important;
    }
    .header-social-icon-container-mobile {
        display: flex !important;
        padding: 5px 32px 4px 20px;
        
    }
    .scrolling-header {
        position: absolute;
        top: 80px;
    }
    .gyatt-card-container {
        padding: 15px;
        overflow: visible; /* Ensure no clipping */
        z-index: 1; /* Make sure it stays above other elements */
    }

    /* Keep transform and opacity animations enabled */
    .gyatt-card {
        opacity: 1 !important; /* Keep opacity 0 on load */
        transform: scale(0.9) translateY(100px); /* Apply the same initial transform */
        transition: transform 0.5s ease, opacity 0.5s ease; /* Animate transform and opacity */
    }
}

@media (max-width: 768px) {
    .gyatt-vicious-win-btn {
        display: flex;
        justify-content: center;
    }

    .gyatt-card {
        flex-direction: column;
    }

    .mike-ass-img {
        width: 90%;
    }

}

@media (min-width: 480px) and (max-width: 767.98px) {
    .button-group {
        width: 80%;
    }
}

.gyatt-card {
    transform: none;
}

@media (min-width: 300px) and (max-width: 479.98px) {
    .button-group {
        width: 90%;
    }

    .bottom-footer {
        text-align: center;
    }

    .gyatt-footer-socials {
        justify-content: center !important;
    }

    .gyatt-footer-socials li a i {
        font-size: 40px !important;
    }

    .button-group .gyatt-button-left .btn,
    .button-group .gyatt-button-right .btn {
        padding: 15px;
    }


}

.degen-reviews-background {
    background-color: #F5EFD1;
    padding: 20px !important;
    border-radius: 10px;
}
.button-flex {
    display: flex;
    justify-content: center;
}

.gyatt-footer-socials li a i{
    color: #4A4A4A; /* Default icon color */
    font-size: 25px; /* Icon size */
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth color and scale transition */
}

.gyatt-footer-socials li a i:hover {
    color: #32AE40; 
    transform: scale(1.1); /* Slightly enlarge the icon on hover */
}

.bottom-footer {
    background-color: #F5EFD1;
    padding: 10px;
    border-radius: 25px;
}

.gyatt-footer-socials {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    top: 4px;
    display: flex;
    gap: 15px; /* Space between icons */
    justify-content: flex-end; /* Aligns to the right */
}


.buy-section-title {
    justify-items: center;
    margin-bottom: 50px !important;
    text-align: -webkit-center !important;
}

.buy-section-title h2 {
    background-color: #F5EFD1;
    padding: 20px !important;
    border-radius: 10px;
    width: 80%;
}

.banner-section-title h2 {
    background-color: #F5EFD1;
    padding: 20px !important;
    border-radius: 10px;
    opacity: 0.8;
}

.banner-button-style {
    margin-top: 50px;
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

.cheeks-header-hover {
    animation: none; /* Default state has no animation */
}

.cheeks-header-hover.animated {
    animation: shake 1.5s ease-in-out 1; /* Animation runs once */
    animation-fill-mode: forwards; /* Keeps the final frame */
    pointer-events: none; /* Prevent re-triggering while animation runs */
}

.cheeks-header-click {
    animation: none; /* Default state */
}

.cheeks-header-click.animated {
    animation: shake 1.5s ease-in-out 1;
    animation-fill-mode: forwards; /* Maintain position at end of animation */
}

#peachCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none; /* Prevent interaction */
}

.header-gyatt-container {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: center;
}

.header-social-icon-container {
    display: flex;
    align-items: center;

}

.gyatt-header-socials {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    top: 4px;
    display: flex;
    gap: 15px; /* Space between icons */
    justify-content: flex-end; /* Aligns to the right */
}

.gyatt-header-socials li a i{
    color: #4A4A4A; /* Default icon color */
    font-size: 25px; /* Icon size */
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth color and scale transition */
}

.gyatt-header-socials li a i:hover {
    color: #32AE40; 
    transform: scale(1.1); /* Slightly enlarge the icon on hover */
}

.header-social-icon-container-mobile {
    display: none;
}

.gyatt-logo-img {
    min-width: 100px;
}

.pumpfun-icon {
    display: inline-block; /* Ensure it behaves as an inline element while respecting the width and height */
    width: 25px;
    height: 25px;
    background: url('/images/pump.svg') no-repeat center center;
    background-size: contain;
}

.pumpfun-icon:hover {
    fill: #32AE40;
    transition: fill 0.3 ease-in-out;
}