@import url('https://fonts.googleapis.com/css2?family=Anton&family=Press+Start+2P&display=swap');

* {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
    font-family: 'Anton', sans-serif;
    background-color: #4A5D23;
    letter-spacing: 1px;
    line-height: 1.65;
    ;
}

h1,
h2 {
    text-transform: uppercase;
    line-height: 1.25 !important;
    letter-spacing: 3px;
}

#hero,
#tokenomics {
    background: url(../images/bg-2.gif);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}

#roadmap {
    background: url(../images/bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}



.bg-red {
    background: #FFD400;
}

.bg-blue {
    background: #4A5D23;
}

.tok {
    font-size: 25px;
}


@keyframes customBounce {
    30% {
        transform: scale(1.2);
    }

    40%,
    60% {
        transform: rotate(-20deg) scale(1.2);
    }

    50% {
        transform: rotate(20deg) scale(1.2);
    }

    70% {
        transform: rotate(0deg) scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.about-logos {
    animation: customBounce 1.5s infinite;
}

.w-full button:hover .svgg path {
    fill: black;
}

.hype-text {
    font-size: 50px;
    font-weight: bold;
    background: #FFD400;
    color: #252525;
    padding: 15px;
    border-top: 10px solid #fff;
    border-bottom: 10px solid #fff;
}

.first {
    transform: rotate(-1.4deg);
}

.second {
    transform: rotate(2.5deg);
}

.third {
    transform: rotate(-4.3deg);
}

@media(max-width:600px) {
    .third {
        transform: rotate(2.75deg);
    }
}

.glow-button {
    background-color: #FFD400;
    /* Caution Yellow */
    color: #1B1B1B;
    /* Coal Black Text */
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    padding: 0.75rem 1.5rem;
    border: 3px solid #1B1B1B;
    border-radius: 8px;
    box-shadow: 2px 2px 0 #1B1B1B;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.glow-button:hover {
    background-color: #FF8C42;
    /* Sunset Orange */
    box-shadow: 1px 1px 0 #1B1B1B;
    transform: translate(1px, 1px);
}

.bg-none {
    background: none;
}

.token1,
.token2,
.token3 {
    border: 7px solid #fff;
    ;
}

.swiper {
    width: 100%;
    /* height: 320px; */
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}

.polaroid {
    background: #FAF4E8;
    padding: 12px;
    border: 1.5px dashed #999;
    /* filter: grayscale(100%) contrast(1.15) brightness(0.9); */
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.3);
    /* clip-path: polygon(4% 1%, 96% 0%, 99% 12%, 98% 88%,
            95% 99%, 5% 100%, 0% 85%, 2% 8%); */
    transform: rotate(-1.5deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}


.polaroid::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('https://www.transparenttextures.com/patterns/paper-fibers.png');
    opacity: 0.2;
    pointer-events: none;
    z-index: 2;
}

.polaroid img {
    border-radius: 4px;
    width: 100%;
    height: auto;
    display: block;
    z-index: 1;
    position: relative;
    box-shadow: none;
}

.caption {
    /* font-size: 16px; */
    color: #444;
    margin-top: 6px;
    text-align: center;
    border-top: 1px solid #ccc;
    padding-top: 6px;
}


/* .card-effect {
    transform: rotate(var(--rotate));
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
    transition: transform 0.2s;
} */

.sticky-note {
    position: relative;
    background: #fffca8;
    border-radius: 4px;
    padding: 2rem;
    font-family: 'Comic Neue', cursive;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
    transform: rotate(var(--rotate, -1deg));
    transition: transform 0.3s ease;
    z-index: 0;
    overflow: hidden;
}


.sticky-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 25px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08), transparent);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    transform: perspective(100px) rotateX(-15deg);
    z-index: 2;
}

.sticky-note::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: 0;
    right: 0;
    background: radial-gradient(circle at 100% 100%,
            #fffca8 40%,
            #fff9b0 50%,
            #e6d97d 60%,
            rgba(0, 0, 0, 0.1) 80%,
            transparent 100%);
    border-bottom-left-radius: 100%;
    transform: rotate(10deg) translate(10px, 10px);
    box-shadow: -4px -4px 8px rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.sticky-note h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d62828;
    /* Sticky note red */
    margin-bottom: 0.5rem;
}

.sticky-note ul li {
    font-size: 15px !important;
    font-weight: bold;
    color: #000;
}

@media(max-width:768px) {
    .sticky-note ul li {
        font-size: 18px !important;
        font-weight: bold;
        color: #000;
    }
}