/* styles.css */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Dekko', 'Roboto', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

.luckiest-guy-regular {
    font-family: "Luckiest Guy", cursive;
    font-weight: 400;
    font-style: normal;
}

body {
    background-color: #000;
    color: white;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    width: 100%;
}

/* Stars background */
#stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #000;
    overflow: hidden;
}

/* Water droplet animations */
.droplet {
    position: absolute;
    width: 20px;
    height: 40px;
    background-image: url('droplet.png'); /* Replace with your droplet image */
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
    animation: falling 15s linear infinite;
    z-index: 1;
    filter: drop-shadow(0 0 5px rgba(0, 162, 255, 0.7));
}

@keyframes falling {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(100vh) rotate(20deg);
        opacity: 0;
    }
}

/* Section Styles */
.section-padding {
    padding: 80px 5%;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.glow-text {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
    animation: glow 2s ease-in-out infinite alternate;
}

.big-glow-text {
    font-size: 42px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.9);
    animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.9), 0 0 30px rgba(255, 215, 0, 0.7);
    }
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

nav:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FFD700;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #FFD700;
}

.nav-link:hover::after {
    width: 100%;
}

.social-icons {
    display: flex;
    gap: 12px;
    position: absolute;
    top: 20px;
    right: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.social-icon:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.social-icon:hover::before {
    transform: scale(0.5);
}

.social-icon.twitter { background-color: #4DA2FF; }
.social-icon.telegram { background-color: #4DA2FF; }
.social-icon.discord { background-color: #4DA2FF; }
.social-icon.instagram { background-color: #4DA2FF; }
.social-icon.tiktok { background-color: #4DA2FF; }
.social-icon.reddit { background-color: #4DA2FF; }

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.welcome-container {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.welcome-img {
    max-width: 300px;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.7));
    animation: float 3s ease-in-out infinite;
    margin-bottom: 20px;
}

/* Contract address styling */
.contract-address-container {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
    max-width: 500px;
    width: 100%;
}

.contract-label {
    color: #D3D3D3;
    font-size: 14px;
    margin-bottom: 8px;
    text-align: left;
}

.address-copy-wrapper {
    display: flex;
    align-items: center;
    background: rgba(211, 211, 211, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.contract-address {
    flex: 1;
    background: transparent;
    border: none;
    color: #FFD700;
    font-family: monospace;
    font-size: 14px;
    padding: 10px;
    width: 100%;
    cursor: pointer;
    outline: none;
}

.copy-button {
    background: rgba(255, 215, 0, 0.2);
    border: none;
    color: #D3D3D3;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-button:hover {
    background: rgba(255, 215, 0, 0.4);
    color: white;
}

.copy-message {
    display: block;
    color: #D3D3D3;
    font-size: 12px;
    margin-top: 5px;
    text-align: right;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.buy-oops-button {
    background: linear-gradient(45deg, #D3D3D3, #D3D3D3);
    color: black;
    border: none;
    padding: 20px 40px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    margin-top: 30px;
}

.buy-oops-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s ease;
}

.buy-oops-button:hover {
    transform: translateY(-5px);
    background: linear-gradient(45deg, #ffffff00, #d3d3d300);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(199, 198, 198, 0.6);
}

.buy-oops-button:hover::before {
    left: 100%;
}

.buy-oops-button:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* About Section */
.about-card {
    background: linear-gradient(135deg, rgba(42, 110, 1, 0.8), rgba(42, 110, 1, 0.6));
    border-radius: 200px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Added to space out elements */
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.about-card:hover::before {
    transform: translateX(100%);
}

.about-card .coin-img {
    max-width: 396px;
    max-height: 402px;
    margin-right: 30px;
    animation: spin 10s linear infinite;
}

.about-card .about-text {
    flex: 1; /* Allows text to take available space */
    padding: 0 20px; /* Adds some padding to avoid crowding */
    color: #fff; /* Ensures text is visible against the gradient */
    z-index: 1; /* Brings text above any overlapping pseudo-elements */
}

.about-card .banana-img {
    max-width: 300px; /* Adjust size as needed */
    max-height: 300px; /* Adjust size as needed */
    margin-left: 30px; /* Adds space between text and banana */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 15px;
    font-size: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.about-text p:last-child {
    color: #FFD700;
    font-weight: bold;
}

.banana-img {
    max-width: 400px;
    position: absolute;
    right: 20px;
    bottom: 10px;
    transition: transform 0.3s ease;
}

.banana-img:hover {
    transform: scale(1.2) rotate(10deg);
}

/* Roadmap Section */
/* Roadmap Section Styling */
.roadmap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.roadmap {
    position: relative;
    margin-top: 50px;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background: linear-gradient(to bottom, #FFD700, rgba(255, 215, 0, 0.5));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
    z-index: 1;
}

.phase-container {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.phase-container.left {
    left: 0;
}

.phase-container.right {
    left: 50%;
}

.phase {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 215, 0, 0.7);
    border-radius: 15px;
    padding: 20px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    overflow: hidden;
}

.phase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.phase:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
    border-color: #FFD700;
}

.phase:hover::before {
    transform: translateX(100%);
}

.phase-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #FFD700;
    border-radius: 50%;
    border: 4px solid rgba(255, 215, 0, 0.5);
    top: 15px;
    z-index: 2;
    box-shadow: 0 0 10px #FFD700;
}

.phase-container.left .phase-dot {
    right: -50px;
}

.phase-container.right .phase-dot {
    left: -50px;
}

.phase-header {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
}

.phase h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #FFD700;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.phase h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: white;
    font-weight: 500;
    transition: transform 0.3s ease;
    padding-left: 5px;
}

.phase h3:hover {
    transform: translateX(5px);
    color: #FFD700;
}

.phase-content {
    padding-left: 10px;
}

.dj-banana {
    max-width: 250px;
    position: absolute;
    bottom: 20px;
    right: 20px;
    animation: float 3s ease-in-out infinite;
    z-index: 3;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px) rotate(3deg);
    }
    100% {
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Add this JavaScript to your JS file for the fade-in animation */
/* 
document.addEventListener('DOMContentLoaded', function() {
    const fadeElements = document.querySelectorAll('.fade-in');
    
    const observer = new IntersectionObserver((entries) => {
        entries.forEach(entry => {
            if (entry.isIntersecting) {
                entry.target.classList.add('active');
            }
        });
    }, { threshold: 0.1 });
    
    fadeElements.forEach(element => {
        observer.observe(element);
    });
});
*/

/* Responsive Styling */
@media screen and (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
    
    .phase-container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .phase-container.right {
        left: 0;
    }
    
    .phase-container.left .phase-dot,
    .phase-container.right .phase-dot {
        left: 15px;
    }
    
    .dj-banana {
        max-width: 150px;
        bottom: 10px;
        right: 10px;
    }
}

/* Tokenomics Section */
.tokenomics-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tokenomics-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.tokenomics-data {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
}

.tokenomics-item {
    display: flex;
    justify-content: space-between;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 5px 0;
    color: white;
    transition: all 0.3s ease;
}

.chart-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 350px;
}

.tokenomics-chart {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Utility Section */
.utility-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.utility-image {
    flex: 0 0 300px;
}

.scientist-banana {
    width: 100%;
    transition: all 0.5s ease;
    filter: drop-shadow(0 0 15px rgba(255, 0, 255, 0.3));
}

.scientist-banana:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.6));
}

.utility-list {
    flex: 1;
}

.utility-item {
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border-left: 4px solid #fff;
    transition: all 0.3s ease;
}

.utility-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.utility-item h3 {
    font-size: 18px;
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

/* How to Buy Section */
.buy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.buy-steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.banana-character-left, .banana-character-right {
    width: 180px;
    position: relative;
    z-index: 2;
}

.character-img {
    width: 100%;
    height: auto;
}

.buy-steps {
    flex: 1;
    max-width: 700px;
    margin: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.buy-step {
    background-color: #E0E0E0;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.buy-step:hover {
    transform: translateY(-5px);
}

.step-content {
    display: flex;
    padding: 0;
}

.logo-container {
    width: 100px;
    min-width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.step-icon {
    max-width: 100%;
    height: auto;
    max-height: 60px;
}

.step-text {
    flex: 1;
    padding: 20px 20px 20px 0;
}

.step-text h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.step-text p {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .buy-steps-container {
        flex-direction: column;
    }
    
    .banana-character-left, .banana-character-right {
        width: 120px;
        margin: 20px 0;
    }
    
    .buy-steps {
        margin: 0;
        width: 100%;
    }
    
    .logo-container {
        width: 80px;
        min-width: 80px;
        padding: 10px;
    }
    
    .step-text h3 {
        font-size: 16px;
    }
    
    .step-text p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .step-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .logo-container {
        width: 100%;
        padding: 15px 15px 0 15px;
    }
    
    .step-text {
        padding: 10px 15px 15px;
    }
}
/* Social Section (Footer) */
.socials {
    text-align: center;
    padding: 0;
    margin: 0;
    background-image: url('./oops-img/banana-bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100vw;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    left: 0;
}

.socials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    /* animation: shine 3s infinite linear; */
}

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

/* Buy OOPS Button Styling */
.buy-oops-wrapper {
    padding: 20px 0;
}

.buy-oops-button {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-family: "Luckiest Guy", cursive;
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.6);
    letter-spacing: 2px;
    display: inline-block;
}

.buy-oops-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.8);
    background: linear-gradient(45deg, #FFA500, #FFD700);
}

.buy-oops-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.buy-oops-button:hover::before {
    left: 100%;
}

/* Socials Title */
.socials-title {
    font-family: "Luckiest Guy", cursive;
    font-size: 80px;
    font-weight: 400;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 15px 0;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.socials-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px 0;
}

.social-icon {
    width: 50px;
    height: 50px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon span {
    display: block;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-x {
    background-image: url('./oops-white-icons/twitter-white.png');
}

.icon-telegram {
    background-image: url('./oops-white-icons/telegram-white.png');
}

.icon-discord {
    background-image: url('./oops-white-icons/discord-white.png');
}

.icon-reddit {
    background-image: url('./oops-white-icons/reddit-white.png');
}

.icon-youtube {
    background-image: url('./oops-white-icons/youtube-white.png');
}

.icon-tiktok {
    background-image: url('./oops-white-icons/tiktok-white.png');
}

.social-hover {
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.social-hover:hover {
    transform: translateY(-5px) scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.7));
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-right {
    opacity: 0;
    animation: slideInRight 0.8s forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.pop-in {
    opacity: 0;
    animation: popIn 0.6s forwards;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    /* Navigation */
    nav {
        flex-direction: row;
        padding: 15px 3%;
        position: relative;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 101;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: rgba(0, 0, 0, 0.9);
        padding: 20px;
        align-items: center;
    }

    .nav-links.show {
        display: flex;
    }

    .social-icons {
        position: absolute;
        top: 20px;
        right: 20px;
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 10px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    /* Hero */
    .hero {
        padding: 60px 15px;
        min-height: auto;
    }

    .welcome-img {
        margin-top: 30px;
        max-width: 220px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }

    /* About */
    .about-card {
        flex-direction: column;
        border-radius: 30px;
        padding: 30px 20px;
        text-align: center;
    }

    .about-card .coin-img {
        margin-right: 0;
        margin-bottom: 20px;
        max-width: 200px;
    }

    .banana-img {
        position: relative;
        right: auto;
        bottom: auto;
        max-width: 200px;
        margin-top: 20px;
    }

    /* Roadmap */
    .roadmap {
        flex-direction: column;
        gap: 15px;
    }

    .left-phases, .right-phases {
        width: 100%;
        order: 2;
    }

    .center-image {
        width: 100%;
        order: 1;
        margin-bottom: 20px;
    }

    .dj-banana {
        max-width: 200px;
        margin: 0 auto;
    }

    .phase {
        padding: 12px;
    }

    /* Tokenomics */
    .tokenomics-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .tokenomics-data {
        width: 100%;
    }

    .chart-container {
        max-width: 300px;
        width: 100%;
    }

    /* Utility */
    .utility-content {
        flex-direction: column;
        gap: 30px;
    }

    .utility-image {
        flex: 0 0 auto;
        width: 200px;
        margin: 0 auto;
    }

    .utility-item h3 {
        font-size: 16px;
    }

    /* How to Buy */
    .buy-steps-container {
        flex-direction: column;
    }

    .banana-character-left, .banana-character-right {
        display: none;
    }

    .buy-steps {
        width: 100%;
        max-width: 100%;
    }

    .step-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo-container {
        width: 100%;
        padding: 15px 15px 0;
    }

    .wallet-logo {
        max-width: 70px;
    }

    .step-text {
        padding: 15px;
    }

    .step-text h3 {
        font-size: 16px;
    }

    .step-text p {
        font-size: 13px;
    }

    /* Section padding */
    .section-padding {
        padding: 50px 3%;
    }

    /* Animation adjustments */
    @keyframes float {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-8px);
        }
    }

    .droplet {
        display: none;
    }

    #stars-container .star:nth-child(odd) {
        display: none;
    }

    /* Social Section (Footer) */
    .socials {
        padding: 0;
        margin: 0;
        width: 100vw;
        position: relative;
        left: 0;
        background-position: center center;
       
    }

    .buy-oops-button {
        padding: 12px 30px;
        font-size: 24px;
    }

    .socials-title {
        font-size: 60px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-icon span {
        width: 24px;
        height: 24px;
    }

    .socials-icons {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Touch targets */
    .nav-link, 
    .cta-button,
    .social-icon {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 12px;
    }

    /* Navigation */
    .nav-links {
        gap: 10px;
    }

    .nav-link {
        font-size: 12px;
        padding: 3px 0;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }

    /* Hero */
    .hero {
        padding: 40px 10px;
    }

    .welcome-img {
        max-width: 180px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }

    /* About */
    .about-card {
        padding: 20px 15px;
        border-radius: 20px;
    }

    .about-text p {
        font-size: 18px;
    }

    .about-card .coin-img,
    .banana-img {
        max-width: 150px;
    }

    /* Roadmap */
  /* Roadmap Section Styling */
.roadmap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.roadmap {
    position: relative;
    margin-top: 50px;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background: linear-gradient(to bottom, #FFD700, rgba(255, 215, 0, 0.5));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
    z-index: 1;
}

.phase-container {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.phase-container.left {
    left: 0;
}

.phase-container.right {
    left: 50%;
}

.phase {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 215, 0, 0.7);
    border-radius: 15px;
    padding: 20px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    overflow: hidden;
}

.phase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.phase:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
    border-color: #FFD700;
}

.phase:hover::before {
    transform: translateX(100%);
}

.phase-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #FFD700;
    border-radius: 50%;
    border: 4px solid rgba(255, 215, 0, 0.5);
    top: 15px;
    z-index: 2;
    box-shadow: 0 0 10px #FFD700;
}

.phase-container.left .phase-dot {
    right: -50px;
}

.phase-container.right .phase-dot {
    left: -50px;
}

.phase-header {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
}

.phase h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #FFD700;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.phase h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: white;
    font-weight: 500;
    transition: transform 0.3s ease;
    padding-left: 5px;
}

.phase h3:hover {
    transform: translateX(5px);
    color: #FFD700;
}

.phase-content {
    padding-left: 10px;
}

.dj-banana {
    max-width: 250px;
    position: absolute;
    bottom: 20px;
    right: 20px;
    animation: float 3s ease-in-out infinite;
    z-index: 3;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px) rotate(3deg);
    }
    100% {
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 960px) {
    .timeline::after {
        left: 31px;
    }
    
    .phase-container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .phase-container.right {
        left: 0;
    }
    
    .phase-container.left .phase-dot,
    .phase-container.right .phase-dot {
        left: 15px;
    }
    
    .dj-banana {
        position: relative;
        max-width: 200px;
        margin: 0 auto;
        display: block;
        bottom: auto;
        right: auto;
        margin-top: 30px;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .phase-container {
        padding-left: 60px;
        padding-right: 15px;
        margin-bottom: 20px;
    }
    
    .phase {
        padding: 15px;
    }
    
    .phase h4 {
        font-size: 18px;
    }
    
    .phase h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .dj-banana {
        max-width: 180px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    /* Reduce intensity of animations on mobile for better performance */
    @keyframes float {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-8px) rotate(2deg);
        }
    }
}

@media (max-width: 480px) {
    .phase-container {
        padding-left: 50px;
    }
    
    .phase-dot {
        width: 15px;
        height: 15px;
        border-width: 3px;
    }
    
    .timeline::after {
        width: 4px;
        left: 22px;
    }
    
    .phase h4 {
        font-size: 16px;
    }
    
    .phase h3 {
        font-size: 14px;
    }
    
    .phase-header {
        margin-bottom: 10px;
        padding-bottom: 8px;
    }
    
    .dj-banana {
        max-width: 150px;
    }
    
    .section-title {
        font-size: 24px;
    }
}
    /* Tokenomics */
    .tokenomics-item {
        font-size: 14px;
    }

    .chart-container {
        max-width: 250px;
    }

    .section-title.glow-text {
        font-size: 28px;
    }

    /* Utility */
    .utility-image {
        width: 150px;
    }

    .utility-item {
        margin-bottom: 15px;
        padding: 10px;
    }

    .utility-item h3 {
        font-size: 14px;
    }

    /* Section padding */
    .section-padding {
        padding: 40px 3%;
    }

    /* Social Section (Footer) */
    .socials {
        padding: 0;
        margin: 0;
        width: 100vw;
        position: relative;
        left: 0;
        background-position: center center;
    }

    .buy-oops-button {
        padding: 10px 25px;
        font-size: 20px;
    }

    .socials-title {
        font-size: 48px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }

    .social-icon span {
        width: 20px;
        height: 20px;
    }

    .socials-icons {
        gap: 10px;
    }
}

/* Ensure images are fully responsive */
img {
    max-width: 100%;
    height: auto;
}