* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    overflow-x: hidden;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #1A1A1E;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}
header {
    background-color: #12131A;
    padding: 1rem 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left .brand {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    text-decoration: none;
    color: #0D0B3D;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hamburger-btn{
    background-color: transparent;
    border: none;
    display: none;
}
.hamburger-btn img{
    width: 50px;
    margin-top: 5px;
}

nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
nav a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}
.hero {
    text-align: center;
    background-color: #1A1A1E;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero img {
    max-width: 100%;
    height: auto;

}
.hero p{
    width: 820px;
    font-size: 2.5rem;
    line-height: 50px;
    font-weight: 700;
    color: #F7FCEB;
    padding-bottom: 30px;
}
.custompara{
    margin-top: -140px;
}
.harambe-section {
    background: url('/assets_new/images/harambe-text.png') center top no-repeat;
    background-size: contain;
    padding: 4rem 1rem 0rem 1rem;
    position: relative;
    text-align: center;
    background-position-y: 55px;
}

.harambe-section .row {
    display: flex;
    justify-content: center;
    align-items: flex-end; /* align content to bottom */
    min-height: 300px; /* or use height: 100% if parent has fixed height */
}

.harambe-text {
    color: white;
    font-weight: 800;
    font-size: 1.6rem;
    line-height: 30px;
    padding-bottom: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.harambe-text a {
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.harambe-text a i {
    margin-left: 5px;
}

.monkey-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.monkey-img {
    max-width: 100%;
    height: auto;
    margin-top: 0px;
    margin-bottom: -60px;
}

.right-content {
    text-align: right;
    color: white;
    font-size: 1.6rem;
    line-height: 30px;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    align-items: flex-end;
    padding-bottom: 20px;
}
.right-content img{
    padding-top: 20px;
    width: 65%;
}

.social-icons a {
    color: white;
    margin-left: 0px;
    text-decoration: none;
}
.jungle-section {
    margin-top: -85px;
    padding-top: 180px;
    background-color: #fff;
    text-align: center;

}
.jungle-section h2{
    color: #1A1A1E;
    font-size: 5rem;
    line-height: 85px;
    text-transform: uppercase;
    font-weight: 900;
}
.jungle-section button {
    margin-top: 1rem;
    padding: 0.75rem 2rem;
    background: #ffc107;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}
.tokenomics {
    background: white;
    color: #111;
    text-align: center;
    padding: 3rem 1rem;
}
.tokenomics h2 {
    margin-bottom: 1rem;
}
.supply {
    font-size: 2rem;
    font-weight: bold;
}
.footer {
    background: #1A1A1E;
    color: #aaa;
    text-align: center;
    font-size: 0.9rem;
}

/* News ticker - Exact match */
.news-ticker {
    background: #1A1A1E;
    padding: 12px 0;
    border-top: 5px solid #F7FCEB;
    border-bottom: 5px solid #F7FCEB;
    overflow: hidden;
    white-space: nowrap;
    margin-top: -8px;
}

.ticker-content {
    display: inline-block;
    animation: scroll-left 60s linear infinite;
    font-size: 1.6rem;
    font-weight: 800;
    color: #F7FCEB;
}

.ticker-item {
    margin-right: 80px;
    display: inline;
}

.ticker-dot {
    color: #F7FCEB;
    margin: 0 20px;
}

@keyframes scroll-left {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}
@media (max-width:375px)
{
    .footer .container p{
        padding-left: 20px;
        padding-right: 20px;
    }

}
@media (max-width: 768px) {
    .harambe-text,
    .right-content {
        text-align: center;
    }

    .harambe-section .row {
        align-items: center; /* fallback for stacked layout */
    }

    .monkey-img {
        margin-top: 0;
    }
}

@media (max-width: 430px){
    html{
        overflow-x: hidden;
    }
    header {
        flex-direction: row;
        padding: 1rem 1rem !important;
    }
    .brand img {
        width: 70%;
    }
    .hamburger-btn img{
        width: 45px;
    }
    .header-left .brand{
        padding: 0.5rem 0rem !important;
    }
    .harambe-section .row{
        flex-direction: column;
    }
    .harambe-text{
        order: 1;
        align-items: center;
        display: none;
    }
    .monkey-container{
        order: 0;
    }
    .monkey-img{
        margin-top: -15px;
    }
    .right-content{
        margin-top: 70px;
        z-index: 9;
    }

    .right-content p{
        display: none;
    }

    .right-content img{
        width: 100% !important;
    }

    .ticker-text{
        font-size: 2rem !important;
    }
    .gradient-container {
        padding-top: 9rem !important;
        margin-top: -8rem !important;
    }
    .hero p{
        width: auto !important;
        font-size: 1.3rem !important;
        line-height: 28px !important;
        padding: 10px 10px;
    }
    .custompara{
        margin-top: -30px !important;
    }

    .jungle-section{
        padding-top: 130px !important;
    }
    .jungle-section h2{
        font-size: 3rem !important;
        line-height: 55px !important;
    }
    .jungle-section img{
        width: 100%;
        padding: 0px 5px !important;
    }
    .flawless-cont img{
        width: auto;
    }
    .flawless-cont p{
        font-size: 20px !important;
        line-height: 26px !important;
        padding: 30px 20px 20px 20px !important;
    }
    .carousel-track{
        gap: 10px !important;
        margin-left: -60px !important;
        margin-right: -60px !important;
    }
    .footer .container{
        justify-content: center !important;
    }
    .footer .container p{
        font-size: 1rem !important;
        text-align: center !important;
    }
    img.socialiconfooter{
        width: 75%;
    }
    .gorila-imgg img{
        display: none;
    }
    .footer{
        padding-top: 20px;
    }
    .carousel-item-custom{
        min-width: 28% !important;
    }
    .dex-btn{
        font-size: 16px !important;
    }
    .carousel-container{
        margin-left: -20px !important;
    }
    .divider-text{
        padding: 0px 10px !important;
    }
    h2.counter-display{
        padding: 1rem 0rem !important;
    }
    .hamburger-btn{
        display: block;
    }
    .dropdown-content{
        min-width: 330px !important;
    }
}
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    background-color: #EA5584;
    color: #110E39;
    padding: 14px 20px 10px 20px;
    font-weight: bold;
    border: 2.53px solid #110E39;
    border-radius: 25px;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 2px 4px 0px #F7FCEB80;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #F7FCEB;
    min-width: 180px;
    box-shadow: 2px 4px 0px #F7FCEB80;
    border: 2.53px solid #110E39;
    border-radius: 15px;
    z-index: 1000;
    top: 120%;
    left: 0px;
    padding: 0px;
}

.dropdown-content a {
    color: #110E39;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 1px solid #110E39;
}

.dropdown-content a:hover {
    background-color: #B4FF000D;
    color: #110E39;
}

.hamburger-wrapper .dropdown-content {
    top: 100%; /* Or adjust to fine-tune */
    left: auto;
    right: 0;
}

/* Show on desktop, hide on mobile */
.dropdown-btn {
    display: inline-block;
}

.hamburger-wrapper {
    display: none;
}

/* Mobile styles */
@media (max-width: 430px) {
    .dropdown-btn {
        display: none;
    }

    .hamburger-wrapper {
        display: inline-block;
    }
}
.dropdown-content span{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
