/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background: transparent;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'DynaPuff', cursive;
    font-weight: 600;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
    text-transform: uppercase;
    background: transparent;
    margin: 0;
    padding: 0;
}

/* Navigation Menu */
.navigation-menu {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.nav-box {
    background: #ffffff;
    border: 4px solid #000000;
    border-radius: 20px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 140px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.nav-box:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #f8f8f8;
    animation: navDance 0.6s ease-in-out infinite alternate;
}

@keyframes navDance {
    0% {
        transform: translateY(-3px) scale(1.05) rotate(-1deg);
    }
    100% {
        transform: translateY(-3px) scale(1.05) rotate(1deg);
    }
}

.nav-text {
    font-family: 'DynaPuff', cursive;
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Logo Section */
.logo-container {
    position: fixed;
    top: 20px;
    left: -10px;
    z-index: 1000;
    max-width: 180px;
}

.logo-image {
    width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    transition: transform 0.3s ease;
    animation: logoDance 2s ease-in-out infinite;
}

.logo-image:hover {
    transform: scale(1.05);
    animation-play-state: paused;
}

/* Dancing Animation */
@keyframes logoDance {
    0%, 100% {
        transform: rotate(0deg) translateY(0px);
    }
    25% {
        transform: rotate(-2deg) translateY(-2px);
    }
    50% {
        transform: rotate(0deg) translateY(0px);
    }
    75% {
        transform: rotate(2deg) translateY(-1px);
    }
}

/* Image Sections */
.image-section {
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 100vh;
}

.image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.image-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 1200px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image-content:has(.instructions-box) {
    align-items: flex-end;
    justify-content: center;
}

/* Specific styling for b2 section with instructions */
#b2 .image-content {
    align-items: flex-end;
    justify-content: center;
}

.aster-large-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    animation: logoDance 3s ease-in-out infinite;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 3px solid #000000;
    border-radius: 15px;
    padding: 15px;
    width: 60px;
    height: 60px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #f8f8f8;
    animation: dance 0.6s ease-in-out infinite alternate;
}

@keyframes dance {
    0% {
        transform: translateY(-3px) scale(1.05) rotate(-2deg);
    }
    100% {
        transform: translateY(-3px) scale(1.05) rotate(2deg);
    }
}

.social-link i {
    font-size: 1.8rem;
    color: #000000;
}

/* Buy Now Button */
.buy-button-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.buy-now-button {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    background-size: 400% 400%;
    border: 4px solid #ffffff;
    border-radius: 25px;
    padding: 15px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: gradientShift 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.buy-now-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    animation: buyDance 0.6s ease-in-out infinite alternate, gradientShift 3s ease-in-out infinite;
}

.buy-now-button:active {
    transform: translateY(-2px) scale(1.02);
}

.buy-text {
    font-family: 'DynaPuff', cursive;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 
        -2px -2px 0 #000000,
        2px -2px 0 #000000,
        -2px 2px 0 #000000,
        2px 2px 0 #000000;
    letter-spacing: 1px;
}

.buy-now-button i {
    font-size: 1.2rem;
    color: #ffffff;
    text-shadow: 
        -1px -1px 0 #000000,
        1px -1px 0 #000000,
        -1px 1px 0 #000000,
        1px 1px 0 #000000;
}

.pancakeswap-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffffff;
    padding: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes buyDance {
    0% {
        transform: translateY(-5px) scale(1.05) rotate(-2deg);
    }
    100% {
        transform: translateY(-5px) scale(1.05) rotate(2deg);
    }
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    opacity: 0.9;
}

/* Instructions Box */
.instructions-box {
    background: rgba(0, 0, 0, 0.3);
    border: 4px solid #ffffff;
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
    margin-left: auto;
    max-width: 700px;
    max-height: 500px;
    text-align: left;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Custom Scrollbar Styling */
.instructions-box::-webkit-scrollbar {
    width: 16px;
}

.instructions-box::-webkit-scrollbar-track {
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.3) 20%,
        rgba(255, 255, 255, 0.1) 40%,
        rgba(255, 255, 255, 0.1) 60%,
        rgba(255, 255, 255, 0.3) 80%,
        rgba(255, 255, 255, 0.1) 100%);
    border-left: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
}

.instructions-box::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.instructions-box::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.5);
}

.instructions-box::-webkit-scrollbar-corner {
    background: transparent;
}

/* Firefox Scrollbar */
.instructions-box {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.6) rgba(255, 255, 255, 0.1);
}

.instructions-title {
    font-family: 'DynaPuff', cursive;
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 
        -2px -2px 0 #000000,
        2px -2px 0 #000000,
        -2px 2px 0 #000000,
        2px 2px 0 #000000;
}

.instruction-step {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    font-family: 'DynaPuff', cursive;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    background-size: 400% 400%;
    animation: gradientShift 3s ease-in-out infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 2rem;
    text-shadow: 
        -1px -1px 0 #000000,
        1px -1px 0 #000000,
        -1px 1px 0 #000000,
        1px 1px 0 #000000;
}

.step-content {
    font-family: 'DynaPuff', cursive;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.step-content strong {
    color: #ffffff;
    font-weight: 600;
    text-shadow: 
        -1px -1px 0 #000000,
        1px -1px 0 #000000,
        -1px 1px 0 #000000,
        1px 1px 0 #000000;
}

/* Community Driven Section - Right Aligned */
#b3 .image-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    max-width: 50%;
    margin-left: auto;
    padding-right: 2rem;
}

#b3 .section-title {
    color: #ffffff !important;
    text-shadow: none;
    font-family: 'DynaPuff', cursive;
    font-weight: 600;
}

/* TOKENOMICS Section - Right Aligned */
#b4 .image-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    max-width: 50%;
    margin-left: auto;
    padding-right: 2rem;
}

#b4 .section-title {
    color: #ffffff !important;
    text-shadow: none;
    font-family: 'DynaPuff', cursive;
    font-weight: 600;
}

/* Ready to Launch Section - Centered */
#b5 .image-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

#b5 .section-title {
    color: #ffffff !important;
    text-shadow: none;
    font-family: 'DynaPuff', cursive;
    font-weight: 600;
    margin-bottom: 2rem;
}

.contract-section {
    background: rgba(0, 0, 0, 0.3);
    border: 3px solid #ffffff;
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
    max-width: 600px;
    width: 100%;
}

.contract-label {
    font-family: 'DynaPuff', cursive;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.contract-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #ffffff;
    border-radius: 10px;
    padding: 1.5rem;
}

.contract-address {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    word-break: break-all;
    flex: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

.copy-button {
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 8px;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.copy-button:hover {
    background: #f8f8f8;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.copy-button i {
    font-size: 1.2rem;
    color: #000000;
}

/* Background Images */
#b1 {
    background-image: url('b1.png');
}

#b2 {
    background-image: url('b2.png');
}

#b3 {
    background-image: url('b3.png');
}

#b4 {
    background-image: url('b4.png');
}

#b5 {
    background-image: url('b5.png');
}

/* Black Thick Separators */
.separator {
    height: 10px;
    background: transparent;
    width: 100%;
    position: relative;
    z-index: 5;
    border-top: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
}

/* Marquee Section */
.marquee-container {
    background: #000000;
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    z-index: 5;
    height: 35px;
    display: flex;
    align-items: center;
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
    gap: 80px;
}

.marquee-text {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 
        -1px -1px 0 #000000,
        1px -1px 0 #000000,
        -1px 1px 0 #000000,
        1px 1px 0 #000000;
    flex-shrink: 0;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.marquee-text:hover {
    opacity: 1;
}

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

/* Animations */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Footer */
.footer {
    background: #000000;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navigation-menu {
        top: 15px;
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-box {
        padding: 8px 15px;
        min-width: 120px;
        border-width: 3px;
        border-radius: 15px;
    }
    
    .nav-text {
        font-size: 1rem;
    }
    
    .logo-container {
        max-width: 140px;
        top: 15px;
        left: -8px;
    }
    
    .logo-image {
        max-height: 80px;
    }
    
    .aster-large-image {
        max-height: 300px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
    }
    
    .instructions-box {
        padding: 1.2rem;
        margin-top: 1.5rem;
        max-width: 600px;
        max-height: 450px;
    }
    
    .instructions-title {
        font-size: 1.6rem;
    }
    
    .step-content {
        font-size: 1rem;
    }
    
    .image-section {
        min-height: 60vh;
        padding: 2rem 0;
    }
    
    .marquee-text {
        font-size: 1.8rem;
    }
    
    .marquee-content {
        gap: 60px;
    }
    
    .social-links {
        gap: 15px;
        margin-top: 1.5rem;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        padding: 10px;
    }
    
    .social-link i {
        font-size: 1.5rem;
    }
    
    .buy-now-button {
        padding: 12px 30px;
    }
    
    .buy-text {
        font-size: 1.2rem;
    }
    
    .buy-now-button i {
        font-size: 1rem;
    }
    
    .pancakeswap-icon {
        width: 20px;
        height: 20px;
    }
    
    /* Community Driven Section - Mobile */
    #b3 .image-content {
        max-width: 80%;
        padding-right: 1rem;
    }
    
    /* TOKENOMICS Section - Mobile */
    #b4 .image-content {
        max-width: 80%;
        padding-right: 1rem;
    }
    
    /* Ready to Launch Section - Mobile */
    #b5 .image-content {
        padding: 0 1rem;
    }
    
    .contract-section {
        max-width: 90%;
        padding: 1.2rem;
    }
    
    .contract-container {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .contract-address {
        font-size: 1.1rem;
        text-align: center;
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
    }
}

@media (max-width: 480px) {
    .navigation-menu {
        top: 10px;
        gap: 8px;
        flex-direction: column;
        align-items: center;
    }
    
    .nav-box {
        padding: 6px 12px;
        min-width: 100px;
        border-width: 2px;
        border-radius: 12px;
    }
    
    .nav-text {
        font-size: 0.9rem;
    }
    
    .logo-container {
        max-width: 120px;
        top: 10px;
        left: -6px;
    }
    
    .logo-image {
        max-height: 70px;
    }
    
    .aster-large-image {
        max-height: 250px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .instructions-box {
        padding: 1rem;
        margin-top: 1rem;
        border-width: 3px;
        max-width: 90%;
        max-height: 400px;
        margin-left: auto;
    }
    
    .instructions-title {
        font-size: 1.4rem;
    }
    
    .step-content {
        font-size: 0.9rem;
    }
    
    .instruction-step {
        gap: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .image-content {
        padding: 0 1rem;
    }
    
    .image-section {
        min-height: 50vh;
    }
    
    .marquee-text {
        font-size: 1.5rem;
    }
    
    .marquee-content {
        gap: 50px;
    }
    
    .marquee-container {
        padding: 10px 0;
        height: 35px;
    }
    
    .social-links {
        gap: 12px;
        margin-top: 1rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        padding: 8px;
    }
    
    .social-link i {
        font-size: 1.3rem;
    }
    
    .buy-now-button {
        padding: 10px 25px;
    }
    
    .buy-text {
        font-size: 1rem;
    }
    
    .buy-now-button i {
        font-size: 0.9rem;
    }
    
    .pancakeswap-icon {
        width: 18px;
        height: 18px;
    }
    
    /* Community Driven Section - Small Mobile */
    #b3 .image-content {
        max-width: 85%;
        padding-right: 0.5rem;
    }
    
    /* TOKENOMICS Section - Small Mobile */
    #b4 .image-content {
        max-width: 85%;
        padding-right: 0.5rem;
    }
    
    /* Ready to Launch Section - Small Mobile */
    #b5 .image-content {
        padding: 0 0.5rem;
    }
    
    .contract-section {
        max-width: 95%;
        padding: 1rem;
    }
    
    .contract-label {
        font-size: 1rem;
    }
    
    .contract-address {
        font-size: 0.9rem;
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
    }
    
    .copy-button {
        padding: 0.4rem;
    }
    
    .copy-button i {
        font-size: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced scrolling experience */
body {
    scroll-behavior: smooth;
}

/* Add some padding between sections for better visual separation */
.image-section {
    margin-bottom: 0;
}


/* Custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #4ecdc4;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #45b7d1;
}
