/* 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 {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
}

html.mobile-nav-open {
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    position: fixed;
    width: 100%;
}

body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
      overflow-x: hidden !important;
    background-image: url(./Assets/bg_bichimao.png);
    background-repeat: repeat;
    background-attachment: fixed;
    background-position: 0 0;
}

body.mobile-nav-open {
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
}

body.mobile-nav-open #main,
body.mobile-nav-open #page1,
body.mobile-nav-open #page2,
body.mobile-nav-open #page3,
body.mobile-nav-open #page4,
body.mobile-nav-open #page5,
body.mobile-nav-open #join-tribe-section,
body.mobile-nav-open .footer,
body.mobile-nav-open #moving-text,
body.mobile-nav-open .videos-container,
body.mobile-nav-open .video-row,
body.mobile-nav-open .navbar {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
    position: relative;
}

body.mobile-nav-open .con {
    max-width: 100vw !important;
}

body.mobile-nav-open .character-img {
    max-width: 100vw !important;
}

body.mobile-nav-open .image-section-right > img,
body.mobile-nav-open .image-section-right > video {
    max-width: 100vw !important;
    transform: none !important;
}



:root {
    --primary-cyan: #fef5ec;
    --dark-gray: #522301;
    --accent-red: #E01823;
    --light-gray: #ffffff;
    --light-yellow: #531a01;
}

.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;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* 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: 100vw;
    max-width: 100vw;
    height: 100vh;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-x: hidden !important;
    overflow-y: hidden;
    box-sizing: border-box;
}

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

.mobile-nav-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100vw;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow: hidden;
    box-sizing: border-box;
}

.mobile-nav.active .mobile-nav-backdrop {
    opacity: 1;
}

.mobile-nav-drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background: linear-gradient(180deg, #fef5ec 0%, #ffffff 100%);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    max-width: calc(100vw - 0px);
}

.mobile-nav-drawer::-webkit-scrollbar {
    width: 6px;
}

.mobile-nav-drawer::-webkit-scrollbar-track {
    background: rgba(89, 34, 18, 0.1);
}

.mobile-nav-drawer::-webkit-scrollbar-thumb {
    background: var(--light-yellow);
    border-radius: 3px;
}

.mobile-nav-drawer::-webkit-scrollbar-thumb:hover {
    background: var(--dark-gray);
}

.mobile-nav.active .mobile-nav-drawer {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: var(--primary-cyan);
    border-bottom: 3px solid var(--dark-gray);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    flex-shrink: 0;
}

.mobile-nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-nav-brand-text {
    display: none;
}

.mobile-logo-img {
    display: none;
}

.mobile-nav-brand-text {
    font-family: "Poppins", sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--dark-gray);
    letter-spacing: 1px;
}

.mobile-nav-close {
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 0;
    position: relative;
    transition: transform 0.3s ease;
}

.mobile-nav-close:hover {
    transform: rotate(90deg);
}

.close-line {
    width: 24px;
    height: 3px;
    background-color: var(--dark-gray);
    border-radius: 2px;
    position: absolute;
    transition: all 0.3s ease;
}

.close-line:nth-child(1) {
    transform: rotate(45deg);
}

.close-line:nth-child(2) {
    transform: rotate(-45deg);
}

.mobile-nav-content {
    flex: 1;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    padding: 0 25px;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 18px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(89, 34, 18, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-nav-link:hover::before {
    left: 100%;
}

.mobile-nav-link:hover {
    background: rgba(89, 34, 18, 0.1);
    border-color: var(--light-yellow);
    transform: translateX(5px);
    color: var(--light-yellow);
}

.nav-link-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(89, 34, 18, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover .nav-link-icon {
    background: var(--light-yellow);
    transform: scale(1.1);
}

.nav-link-text {
    flex: 1;
    font-family: "Poppins", sans-serif;
}

.mobile-nav-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--dark-gray), transparent);
    margin: 30px 25px;
    opacity: 0.3;
}

.mobile-social-section {
    padding: 0 25px;
    margin-top: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.mobile-social-title {
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-align: center;
    opacity: 0.7;
}

.mobile-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.mobile-social-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(89, 34, 18, 0.1);
    border: 2px solid var(--light-yellow);
    border-radius: 12px;
    padding: 15px 20px;
    text-decoration: none;
    color: var(--dark-gray);
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-x: hidden;
}

.mobile-social-btn:hover {
    background: var(--light-yellow);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(89, 34, 18, 0.3);
}

.mobile-social-btn svg {
    width: 24px;
    height: 24px;
    color: currentColor;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.mobile-social-btn:hover svg {
    transform: scale(1.1);
}

.mobile-social-btn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.mobile-social-btn:hover img {
    transform: scale(1.1);
}

.mobile-social-btn span {
    flex: 1;
}

.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: #fec170;
    transform: translateY(-2px);
}

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

.social-btn img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
}

/* General SVG styling - ensure all SVGs are white */
svg {
    fill: white;
    color: white;
}

#main {
    min-height: calc(100vh - 80px);
    background-color: transparent;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

#page1{
    background-image: none;
    background-color: transparent;
    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: 1600px;
    gap: 60px;
    padding: 60px 40px;
}

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

.character-img {
    width: 700px;
    height: auto;
    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;
    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;
    margin: 0;
}

.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: #fef5ec;
    color: #000;
    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: #592212;
}

#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: transparent;
    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-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: #592212;
    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: #fef5ec;
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.button-icon {
    background-color: white;
    color: #592212;
    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: transparent;
    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: transparent;
    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: rgba(255, 255, 255, 0.9);
    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: transparent;
    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: rgba(255, 255, 255, 0.9);
    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: rgba(255, 255, 255, 0.9);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid #592212;
    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: #592212;
    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: #592212;
    color: white;
    border: 2px solid #fef5ec;
}

.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: #592212;
    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: transparent;
    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: rgba(234, 234, 234, 0.9);
    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 #fef5ec;
    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;
    border-radius: 50%;
}


.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: #fef5ec;
    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: #fec170;
    transform: translateY(-2px);
}

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

.social-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
}

/* 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;
    }

    #page1 {
        margin-top: 50px;
    }

    .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: 120%;
        margin-top: -150px;
        height: auto;
        position: relative;
        z-index: 2;
    }
    .main-heading {
        font-size: 2rem;
        margin-top: -30px;
    }
    
    .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: #fef5ec;
        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: #592212;
        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: #fef5ec !important; /* Deeper red color */
        color: black;
        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;
        padding: 0 20px !important;
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }

    .page5-left{
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 auto !important;
        width: 100% !important;
        padding: 0 !important;
        overflow: hidden;
    }
    
    .page5-left video {
        position: relative !important;
        right: auto !important;
        left: auto !important;
        max-width: 200px !important;
        width: 100% !important;
        height: auto !important;
        border-radius: 125px !important;
        margin: 0 auto !important;
        display: block !important;
        transform: scale(0.7) !important;
    }

    .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;
        border-radius: 50%;
    }
    
    .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: #fec170;
        transform: translateY(-2px);
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
        color: white;
        fill: white;
    }
    
    .social-icon img {
        width: 20px;
        height: 20px;
        object-fit: contain;
        display: block;
    }
}

/* Hide footer social buttons on very small screens */
@media (max-width: 375px) {
    .footer-right {
        display: none;
    }
}