html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

body {
    background-color: #000; 
    color: #111; 
    font-family: 'Luckiest Guy', 'Comic Sans MS', sans-serif;
    overflow-x: hidden; 
    overflow-y: auto;
}

/* Navbar */
.navbar {
    background-color: #111;
    color: #fff;
    padding: 10px 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.navbar .text-logo {
    color: #FFD700; /* Gold color */
    font-size: 2rem; /* Larger text size */
    font-weight: bold; /* Bold text */
    margin: 0; /* Remove default margin */
    text-transform: uppercase; /* All uppercase letters */
    letter-spacing: 2px; /* Spacing between letters */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6), 0 0 10px #FFD700, 0 0 20px #FFA500; /* Glow effect */
    font-family: 'Poppins', sans-serif; /* Modern font style */
    animation: shine 2s infinite alternate; /* Shining animation */
    line-height: 1;
    display: inline-block;
    margin-left: 7px;
}

/* Shining animation */
@keyframes shine {
    0% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6), 0 0 10px #FFD700, 0 0 20px #FFA500;
    }
    100% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6), 0 0 15px #FFD700, 0 0 30px #FFA500;
    }
}


/* Logo Image */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    width: 50px; /* Logo size */
    height: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1); /* Zoom effect on hover */
}

/* Menu */
.menu {
    display: flex;
    list-style: none;
    transform: translateX(-25px);
    -webkit-transform: translateX(-25px);
    -moz-transform: translateX(-25px);
    -ms-transform: translateX(-25px);
    -o-transform: translateX(-25px);
}

.menu li {
    margin-left: 20px;
}

.menu li a {
    font-family: 'Luckiest Guy', 'Comic Sans MS', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    color: #5b5656; 
    text-decoration: none;
    transition: color 0.3s;

}

.menu li a:hover {
    color: #ffd700; 
}

.menu a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: #FFD700; /* Gold color on hover */
}

/* Mobile Menu Button */
.button {
    display: none;
    font-size: 2.5rem;
    color: #FFD700;
    cursor: pointer;
    transform: translateX(-20px);
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
}

/* Responsive */
@media (max-width: 768px) {
    .button {
        display: block;
    }

    .menu {
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        background-color: #111;
        flex-direction: column;
        align-items: center;
        display: none; 
    }

    .menu.active {
        display: flex; /* Show menu when active */
    }

    .menu li {
        margin: 15px 0;
    }
}

/* General Styling */


h1, h2 {
    text-align: center;
    color: #d4af37; /* Gold color */
}

.highlight {
    color: #d4af37;
}

.golden-text {
    color: #ffd700; /* Bright gold color */
    font-weight: bold;
}

.meme-names {
    font-style: italic;
    color: #ffa500; /* Bright orange */
}

/* Welcome Section - Add padding to avoid being covered by the navbar */

.welcome {
    font-family: 'Luckiest Guy', 'Comic Sans MS', sans-serif;
    padding-top: 75px; /* Space from top to avoid being covered by navbar */
    text-align: center;
    background-color: #000;
    color: #fff;
    min-height: 50vh; /* Cover full viewport height */
}

.welcome h1 {
    font-family: 'Luckiest Guy', 'Comic Sans MS', sans-serif;
    font-size: 3rem; 
    font-weight: bold; 
    margin-bottom: 15px; 
    line-height: 1.2; 
    color: #fff; 
}

.welcome-image {
    max-width: 50%; 
    height: auto; 
    margin-top: 10px; 
    border-radius: 10px; 
}


.welcome p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}


.logo-img {
    width: 40px;
    margin-top: 0px;
}

/* About Section */
.about {
    background: url('background.png') no-repeat center center/cover;
    padding: 50px 20px;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.about h2 {
    font-family: 'Luckiest Guy', 'Comic Sans MS', sans-serif;
    margin-bottom: 30px;
    text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.8);
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.about-text {
    font-family: 'Luckiest Guy', 'Comic Sans MS', sans-serif;
    flex: 1 1 300px;
    max-width: 600px;
    padding: 20px;
    background: #222;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.6);
    text-align: center;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #ddd;
}

.highlight-box {
    display: inline-block;
    background-color: #d4af37;
    color: #111;
    padding: 2px 5px;
    border-radius: 5px;
    font-weight: bold;
}

.wave-text {
    animation: waveAnimation 2s ease infinite;
    font-style: italic;
}

/* Wave Animation */
@keyframes waveAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
        -webkit-transform: translateY(-5px);
        -moz-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        -o-transform: translateY(-5px);
    }
}

.about-image {
    flex: 1 1 300px;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }
}

/* How to Buy Section */
.buy {
    font-family: 'Luckiest Guy', 'Comic Sans MS', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

/* Box Styling */
.buy-box {
    max-width: 1000px;
    background: #000;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
    text-align: left;
}

/* Heading Styling */
.buy-box h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

/* Paragraph Styling */
.buy-box p {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Chart */
.chart {
    margin: 15px auto; /* Center margin */
    width: 75%;       /* Full width */
    max-width: 700px;  /* Maximum width 800px */
    height: 500px;     /* Fixed height */
    border-radius: 10px;  /* Rounded corners */
    overflow: hidden;     /* Ensure content does not overflow */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow */
    background-color: #ffffff; /* White background */
}

.chart-frame {
    width: 100%;  /* Full width within container */
    height: 100%; /* Full height within container */
    border: none; /* Remove default iframe border */
}


/* Tokenomics Section */

.tokenomics {
    font-family: 'Luckiest Guy', 'Comic Sans MS', sans-serif;
    background-color: #000;
    color: #d4af37; /* Gold color */
    text-align: center;
    padding: 50px 20px;
}

.tokenomics h2 {
    font-family: 'Luckiest Guy', 'Comic Sans MS', sans-serif;
    font-size: 3rem;
    margin-bottom: 30px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: pop 1s ease infinite alternate;
}

/* Animation for the title */
@keyframes pop {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

/* Tokenomics Container */
.tokenomics-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: center;
}

/* Card-Style Box */
.tokenomics-item {
    background: linear-gradient(145deg, #222, #333); /* Soft gradient */
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.6);
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: #fff;
}

/* Hover Effect */
.tokenomics-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.8);
    background: linear-gradient(145deg, #444, #555);
}

/* Icon inside the box */
.token-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    animation: float 2s ease infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Text inside the box */
.tokenomics-item h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #d4af37; /* Gold color */
}

.tokenomics-item p {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.tokenomics-item span {
    font-size: 1rem;
    color: #bbb;
    font-style: italic;
}

/* Listed Section */
.listed {
    text-align: center;
    padding: 50px 20px;
    background-color: #1a1a1a;
}

.list-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.list-item {
    background: linear-gradient(145deg, #222, #333);
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    text-align: center;
    padding: 20px;
    width: 200px;
    transition: all 0.3s ease;
}

.list-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.8);
}

.list-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
}

.list-item p {
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
    font-weight: bold;
}

.list-item span {
    color: #d4af37; 
    font-size: 1rem;
}


/* Roadmap Section */
.roadmap {
    font-family: 'Luckiest Guy', 'Comic Sans MS', sans-serif;
    background-color: #000;
    color: #d4af37; 
    text-align: center;
    padding: 50px 20px;
}

.roadmap h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
}

/* Container for roadmap items */
.roadmap-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

/* Box for each roadmap item */
.roadmap-item {
    background: #222;
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Border shadow */
    padding: 20px;
    width: 90%; /* Box width */
    max-width: 300px;
    text-align: center;
    transition: all 0.3s ease;
}

.roadmap-item:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.7);
}

.roadmap-item h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 10px;
}

.roadmap-item p {
    font-size: 1.2rem;
    font-weight: bold;
    color: #d4af37; /* Gold color */
}

/* Responsive Design */
@media (min-width: 768px) {
    .roadmap-container {
        flex-direction: row;
    }

    .roadmap-item {
        width: 250px;
    }
}



/* List Styling */
.buy-box ul {
    margin: 15px 0;
    padding-left: 20px;
    list-style-type: disc;
}

.buy-box ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #ffffff;
}

.buy-box ul ul {
    list-style-type: circle;
    margin-left: 20px;
}

.buy-box ul ul li {
    font-size: 0.95rem;
    color: #a4a1a1;
}


/* Responsive Design */
@media (max-width: 768px) {
    .buy-box {
        padding: 20px 15px;
    }

    .buy-box h2 {
        font-size: 1.8rem;
    }

    .buy-box p {
        font-size: 0.95rem;
    }

    .buy-box ul li {
        font-size: 0.9rem;
    }

    .buy-box .cta {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

/* Social Media Section */
.social-media {
    font-family: 'Luckiest Guy', 'Comic Sans MS', sans-serif;
    text-align: center;
    padding: 40px 20px;
    background-color: #1a1a1a; /* Dark background */
    border-top: none;  /* Remove the top border */
    border-bottom: 2px solid #444;  /* Keep the bottom border */
}


.social-media .highlight {
    color: #fff;
    font-weight: bold;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between icons */
}

.icon-link img {
    width: 60px; /* Icon size */
    height: 60px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 50%; /* Make icons circular */
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.icon-link img:hover {
    transform: scale(1.2); /* Zoom effect on hover */
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6); /* Shadow on hover */
}

/* Footer */
footer {
    text-align: center;
    padding: 15px 10px;
    background-color: #000;
    color: #fff;
    font-size: 0.9rem;
     border-top: 2px solid #444;
}

footer .highlight {
    color: #FFD700; /* Gold color */
    font-weight: bold;
}

