/* Reset and base styles */
@font-face {
    font-family: chunk;
    src: url(./Fonts/Chunk.ttf);
}

@font-face {
    font-family: comic;
    src: url(./Fonts/comic-sans-bold-italic.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}



:root {
    --primary-cyan: #FFB800;
    --dark-gray: #252A34;
    --accent-red: #E01823;
    --light-gray: #ffffff;
    --light-yellow: #FE5F20;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background-color: var(--primary-cyan);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Brand section */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.2;
}


.navbar-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--light-yellow);
}

/* Social buttons */
.navbar-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: var(--dark-gray);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 400px;
}

.mobile-nav-link {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--light-yellow);
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.mobile-social-btn {
    background-color: var(--light-yellow);
    border: 2px solid var(--light-yellow);
    border-radius: 4px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-social-btn:hover {
    background-color: var(--light-yellow);
    border-color: #ffc400;
    transform: translateY(-2px);
}

.mobile-social-btn svg {
    width: 20px;
    height: 20px;
    color: var(--dark-gray);
    transition: color 0.3s ease;
}

.social-btn {
    background-color: var(--light-yellow);
    border: 2px solid var(--light-yellow);
    border-radius: 4px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: var(--light-yellow);
    border-color: #ffc400;
    transform: translateY(-2px);
}

.social-btn svg {
    transition: color 0.3s ease;
}



#main {
    min-height: calc(100vh - 80px);
    background-color: var(--light-gray);
    padding: 0;
    margin: 0;
}

#page1{
    background-image: url(./Assets/banner-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 80vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

#page1>h1{
    font-weight: 100;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    gap: 60px;
    padding: 60px 40px;
}

.character-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.character-img {
    width: 200%;
    height: auto;
    height: 500px;
    position: relative;
    z-index: 2;
}

.tweet-img {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: auto;
    z-index: 1;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-top: 20px;
}

.text-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.main-heading {
    font-family: "Poppins", sans-serif;
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.1;
    margin: 0;
    text-shadow: 3px 3px 1px #EAEAEA;
}

.heading-line {
    display: block;
    color: var(--dark-gray);
}

.tribe-coin {
    color: #ffe600;
}

.description {
    font-family: "Poppins", sans-serif;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    max-width: 500px;
}

.token-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 32vw;
}

.token-label {
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    color: #ffffff;
    margin: 0;
    -webkit-text-stroke: 1px #000000;
text-shadow: 3px 3px 1px #252A34;
}

.token-address-container {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    background-color: #ffffff;
    border: 2px solid #252A34;
    padding: 5px 4px;
    box-shadow: 3px 3px 6px #000;
}

.token-address {
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    color: var(--dark-gray);
    padding: 10px 15px;
    border-radius: 5px;
    min-width: 280px;
    font-weight: 700;
}

.buy-button {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: bold;
    background-color: var(--light-yellow);
    color: white;
    border: 2px solid #000;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
}

.buy-button:hover {
    background-color: #E01823;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}



#moving-text{
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    display: flex;
    margin-bottom: 20px;
    background-color: #FFB800;
}

#moving-text::-webkit-scrollbar{
    display: none;
}

#moving-text h1{
    font-size: 2vw;
    display: inline-block;
    color: #EEEEEE;
    margin: 0;
    padding: 1vw 1vw;
    
}


.con{
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    animation-name: move;
    animation-duration: 15s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    flex-shrink: 0;
    min-width: 100vw;
}


@keyframes move{
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Page 2 Styles */
#page2 {
    background-color: var(--light-gray);
    padding: 80px 40px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.page2-content {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-section-left {
    flex: 1;
    max-width: 600px;
}

.image-section-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 400px;
}

.image-section-right>video{
    width: 800px;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: -100px;
    border-radius: 50px;
}

.page2-heading {
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    font-weight: bold;
    color: var(--dark-gray);
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.page2-subheading {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark-gray);
    margin: 0 0 30px 0;
    line-height: 1.3;
}

.page2-subheading .dawae-highlight {
    color: var(--primary-cyan);
}

.page2-paragraph {
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-gray);
    margin: 0 0 20px 0;
}

.know-meme-button {
    display: inline-flex;
    background-color: var(--accent-red);
    color: white;
    border: 2px solid var(--dark-gray);
    padding: 15px 25px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.know-meme-button:hover {
    background-color: #e02a5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.button-icon {
    background-color: white;
    color: var(--accent-red);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}


/* Page 3 - Memes Section */
#page3 {
    background-color: var(--light-gray);
    padding: 80px 0;
    overflow: hidden;
}

.memes-section {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.memes-header {
    text-align: center;
    margin-bottom: 60px;
}

.text-circle-container {
    position: relative;
    display: inline-block;
}

.text-circle-img {
    width: 400px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.memes-title {
    font-family: "Poppins", sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--dark-gray);
    margin: 0;
    position: relative;
    z-index: 2;
    padding: 40px;
}

.highlight-red {
    color: var(--light-yellow);
}

.videos-container {
    overflow: hidden;
    margin: 40px 0;
    width: 100%;
    padding: 10px 0;
}

.video-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    width: 200%; /* Double width to accommodate duplicates */
}

.video-row-1 {
    animation: scroll-right 40s linear infinite;
}

.video-row-2 {
    animation: scroll-left 40s linear infinite;
}

.video-item {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.video-item:hover {
    transform: scale(1.05);
}

.video-thumbnail {
    width: 350px;
    height: 230px;
    object-fit: cover;
    border-radius: 15px;
    flex-shrink: 0;
    display: block;
}

.video-item {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 46, 99, 0.9);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.video-item:hover .play-button {
    background-color: var(--accent-red);
    transform: translate(-50%, -50%) scale(1.1);
}

@keyframes scroll-right {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-left {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}

/* YouTube Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: 5% auto;
    width: 80%;
    max-width: 800px;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: var(--dark-gray);
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
}

.close:hover {
    color: var(--accent-red);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}


/* Page 4 - How to Buy Section */
#page4 {
    background-color: #FFB800;
    padding: 30px 20px;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-to-buy-section {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    margin-top: -5px;
}

.how-to-buy-title {
    font-family: "Poppins", sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--dark-gray);
    margin: 0 0 30px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.how-to-buy-title .highlight-red {
    color: var(--accent-red);
}

.steps-container {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.step-box {
    background-color: var(--light-gray);
    border: 2px solid var(--dark-gray);
    border-radius: 15px;
    padding: 30px 25px;
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.step-title {
    font-family: "Poppins", sans-serif;
    font-size: 1.7rem;
    font-weight: bold;
    color: var(--dark-gray);
    margin: 0 0 15px 0;
}

.step-description {
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--dark-gray);
    margin: 0;
}


/* Page 5 - DAWAENOMICS & ROADMAP Styles */
#page5 {
    
    background: linear-gradient(135deg, var(--light-gray) 0%, #f5f5f5 100%);
    padding: 80px 0;
    
}

.page5-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
    gap: 40px;
    align-items: start;
}

.page5-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.page5-left video {
    width: 100%;
    min-width: 500px;
    margin-left: -100px;
    max-width: 500px;
    height: auto;
    border-radius: 125px;
}

.page5-right {
    display: flex;
    align-items: start;
}

.sections-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
    align-items: stretch;
}

.dawaenomics-section {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--primary-cyan);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 470px;
}

.roadmap-section {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--accent-red);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 470px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.dawaenomics-slogan {
    font-size: 1.3rem;
    color: var(--accent-red);
    font-weight: bold;
    margin-bottom: 10px;
    font-style: italic;
}

.dawaenomics-description {
    font-size: 1rem;
    color: var(--dark-gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.token-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    justify-content: space-between;
}

.total-supply-box {
    background: var(--dark-gray);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 3px solid var(--primary-cyan);
}

.supply-label {
    display: block;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--primary-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.supply-number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.status-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.status-badge {
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    min-width: 150px;
}

.status-badge.burned {
    background: var(--accent-red);
    color: white;
    border: 2px solid #d91e4a;
}

.status-badge.renounced {
    background: #fffb00;
    color: var(--dark-gray);
    border: 2px solid #FFA500;
}

.roadmap-content {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
}

.phases-list {
    flex: 1;
}

.phase-item {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
    padding: 10px 0;
    font-weight: 500;
    border-bottom: 2px solid var(--light-gray);
}

.phase-item:last-child {
    border-bottom: none;
}

.roadmap-conclusion {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.conclusion-brace {
    font-size: 4rem;
    color: var(--accent-red);
    font-weight: bold;
    line-height: 1;
    margin-top: 10px;
}

.conclusion-text {
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.4;
    font-style: italic;
}

.conclusion-text div {
    margin-bottom: 2px;
}



/* Join Tribe Section Styles */
#join-tribe-section {
    background: #FFB800;
    padding: 60px 0;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.join-tribe-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 60px;
    background: #EAEAEA;
    border: 3px solid var(--dark-gray);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.join-tribe-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.join-tribe-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.0;
    text-shadow: 3px 3px 1px #ff0000;
    font-family: "Poppins", sans-serif;
    margin-bottom: 0;
}

.join-tribe-description {
    font-size: 1.3rem;
    color: var(--dark-gray);
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 0;
}

.join-tribe-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 5px;
}

.buy-dawae-btn {
    background-color: var(--light-yellow);
    color: white;
    border: 2px solid #000;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.buy-dawae-btn:hover {
    background: #E01823;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.social-buttons {
    display: flex;
    gap: 10px;
}



.join-tribe-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}





.knuckles-img {
    width: 350px;
    height: 350px;
    margin-top: -150px;
}


.disclaimer {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.disclaimer p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    line-height: 1.6;
    font-weight: 500;
}



/* Footer Styles */
.footer {
    background: #FFB800;
    padding: 30px 0;
    border-top: 3px solid var(--dark-gray);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-center {
    display: flex;
    justify-content: center;
}

.footer-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.footer-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--light-yellow);
}

.footer-right {
    display: flex;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    background-color: var(--light-yellow);
    border: 2px solid var(--light-yellow);
    border-radius: 4px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--light-yellow);
    border-color: #ffc400;
    transform: translateY(-2px);
}

.social-icon svg {
    transition: color 0.3s ease;
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    /* Hide desktop navigation and show burger menu */
    .desktop-nav,
    .desktop-social {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .mobile-nav {
        display: block;
    }

    .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .character-section {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 100px;
    }
    
    .character-img {
        width: 150%;
        height: auto;
        height: 300px;
        margin-top: -350px;
        position: relative;
        z-index: 2;
    }
    
    .tweet-img {
        position: absolute;
        top: 77%;
        left: 50%;
        transform: translateX(-50%);
        width: 300px;
        height: auto;
        z-index: 1;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        margin-top: 70px;
    }
    
    .main-heading {
        font-size: 2rem;
        margin-top: -50px;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .token-section {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 90vw;
        margin-top: -20px;
        align-items: center;
        justify-content: center;
        
    }
    

    
    .token-section {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 90vw;
        margin-top: -20px;
        align-items: center;
        justify-content: center;
    }
    
    .token-address-container {
        display: flex;
        flex-direction: column;   /* stack vertically */
        align-items: center;
        gap: 10px;
        border: 2px solid #252A34;
        box-shadow: 3px 3px 6px #000;
        width: 100%;
        background-color: #fff;
        padding: 12px;
    }
    
    .token-address {
        font-family: "Poppins", sans-serif;
        font-size: 0.7rem;
        color: var(--dark-gray);
        padding: 10px 15px;
        border-radius: 5px;
        text-align: center;
        word-break: break-all;   /* ensure long text wraps */
        font-weight: 700;
        width: 100%;
    }
    
    .buy-button {
        font-family: "Poppins", sans-serif;
        font-size: 1rem;
        font-weight: bold;
        background-color: var(--light-yellow);
        color: white;
        border: 2px solid #000;
        padding: 4px 20px;      /* wider button */
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        width: auto;
    }
    
    
    

    .buy-button:hover {
        background-color: #8e9100;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    #moving-text{
        overflow: hidden;
        white-space: nowrap;
        width: 100%;
        display: flex;
        margin-bottom: 20px;
        padding-bottom: 30px;
    }
    
    #moving-text::-webkit-scrollbar{
        display: none;
    }
    
    #moving-text h1{
        font-size: 10vw;
        display: inline-block;
        color: #EEEEEE;
        margin: 0;
        padding: 1vw 1vw;
        
    }

    .memes-title {
        font-size: 1.8rem;
        padding: 20px;
    }
    
    .text-circle-img {
        width: 200px;
    }
    
    .video-thumbnail {
        width: 150px;
        height: 90px;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    #page2{
        margin-top: -50px;
    }

    .page2-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .page2-heading {
        font-size: 2.5rem;
    }
    
    .page2-subheading {
        font-size: 1.3rem;
    }
    
    .page2-paragraph {
        font-size: 1rem;
    }

    .know-meme-button {
        display: inline-flex;
        background-color: var(--accent-red);
        color: white;
        border: 2px solid var(--dark-gray);
        padding: 15px 25px;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        text-decoration: none;
        align-items: center;
        gap: 10px;
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .know-meme-button:hover {
        background-color: #b01e47 !important; /* Deeper red color */
        transform: translateX(50px) !important; /* Keep only translateX, no scale */
        box-shadow: none !important; /* Remove shadow animation */
    }

    .image-section-right {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .image-section-right>img{
        width: 900px;
        max-width: 100%;
        height: auto;
        scale: 1.2;
        transform: translateX(-24%);
        margin-top: -100px;
    }
    
    .image-section-right>video{
        width: 800px;
        max-width: 100%;
        height: auto;
        border-radius: 50px;
        margin-left: auto;
        margin-right: auto;
    }


    

    #page3{
        margin-top: -180px;
    }

    .memes-section {
        padding: 0; /* Remove horizontal padding on mobile */
    }
    
    .videos-container {
        padding: 10px 0; /* Keep vertical padding but no horizontal */
    }

    .modal-content {
        position: relative;
        margin: 0;
        width: 95%;
        max-width: 800px;
        background-color: white;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .close {
        position: absolute;
        top: -50px;
        right: 0px;
        color: white;
        font-size: 30px;
        font-weight: bold;
        cursor: pointer;
        z-index: 10001;
        background-color: #08D9D6;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1; /* Reset line height */
        font-family: Arial, sans-serif; /* Use a consistent font */
        margin: 0; /* Remove any default margins */
        padding: 0; /* Remove any default padding */
    }
    
    .close:hover {
        color: white;
        background-color: rgba(0, 0, 0, 0.7);
    }

    .video-thumbnail {
        width: 180px; /* Increased from 150px */
        height: 108px; /* Increased from 90px (maintaining 16:9 aspect ratio) */
    }






    
    #page4 {
        padding: 20px 15px;
        min-height: auto;
        margin-top: -60px;
    }
    
    .how-to-buy-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-box {
        min-width: auto;
        max-width: none;
        padding: 25px 20px;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }


    .page5-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: -70px;
    }

    .page5-left{
        margin-right: -900px;
    }
    
    .page5-left video {
        position: relative !important;
        right: 35.5%;
        max-width: 100px !important;
        height: auto !important;
        border-radius: 125px !important;
        margin: 0 auto !important;
        display: block !important;
        scale: 0.8
    }

    .page5-left img {
        margin-left: -65px; /* Override the desktop margin-left */
        scale: 0.9;
    }
    
    .sections-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dawaenomics-section,
    .roadmap-section {
        padding: 25px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .roadmap-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .status-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .roadmap-conclusion {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    
    .conclusion-brace {
        font-size: 3rem;
        scale: 1;
        transform: rotate(90deg); /* Rotate the } to be sideways */
        margin: 0;
        order: -1; /* Place it above the text */
    }
    
    .conclusion-text {
        order: 1; /* Place text below the brace */
    }
    
    #join-tribe-section {
        
        padding: 40px 20px; /* Add horizontal padding and reduce vertical padding */
        min-height: 100vh; /* Make it full height to show background above */
        display: flex;
        flex-direction: column;
        justify-content: flex-start; /* Change from center to flex-start */
    }
    
    .join-tribe-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 50px 30px; /* Add more horizontal padding */
        min-height: 500px;
        margin-top: 20px; /* Add some space from the top */
    }
    
    .join-tribe-right{
        margin-bottom: -430px;
        scale: 3;
    }
    
    .join-tribe-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
        margin-top: -75px;
    }
    
    .join-tribe-description {
        font-size: 1.1rem;
    }
    
    .join-tribe-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-buttons {
        justify-content: center;
    }
    
    .knuckles-badge {
        width: 150px;
        height: 150px;
    }
    
    .knuckles-img {
        width: 60px;
        height: 60px;
    }
    
    .badge-text-top,
    .badge-text-bottom {
        font-size: 0.7rem;
    }

    
.disclaimer {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
    margin-top: -20px;
}

.disclaimer p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    line-height: 1.6;
    font-weight: 500;
}



    
    .footer {
        
        padding: 20px;
        border-top: 1px solid #6b6b6b;
        box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        max-width: 100%;
        padding: 0;
    }
    
    .footer-left {
        display: flex;
        align-items: center;
        gap: 15px;
        flex: 1;
    }
    
    .footer-logo img {
        width: 200px;
        height: auto;
        object-fit: contain;
    }
    
    .footer-text {
        font-size: 1rem;
        font-weight: bold;
        color: #000;
        text-transform: uppercase;
        letter-spacing: 1px;
        line-height: 1.2;
    }
    
    .footer-text .do-you-know {
        font-size: 0.8rem;
        font-style: italic;
        display: block;
        margin-bottom: 2px;
    }
    
    .footer-text .da-wae {
        font-size: 1.4rem;
        display: block;
    }
    
    .footer-text .da {
        color: #000;
    }
    
    .footer-text .wae {
        color: #ff0000; /* Red color for WAE */
    }
    
    .footer-center {
        display: none; /* Hide navigation on mobile */
    }
    
    .footer-right {
        display: flex;
        align-items: center;
    }
    
    .social-icons {
        display: flex;
        gap: 8px;
    }
    
    .social-icon {
        background-color: var(--light-yellow);
        border: 2px solid var(--light-yellow);
        border-radius: 4px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .social-icon:hover {
        background-color: var(--light-yellow);
        border-color: #ffc400;
        transform: translateY(-2px);
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
        color: var(--dark-gray);
    }
}