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

/* Body styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #0b1b33;
    color: #e1e5ea;
}

/* Container */
.container {
    width: 80%;
    margin: 0 auto;
}

/* Header and banner styles */
.header img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}

/* Navigation styles */
.nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 15px 0;
    background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0px, rgba(255, 255, 255, 0.1) 10px, transparent 10px, transparent 20px);
}

.nav ul li {
    margin: 0 15px;
}

.nav ul li a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    font-weight: 500;
}

.nav ul li a:hover {
    font-weight: bold;
    text-decoration: underline;
}

/* Hero section (Buy Now and video) */
.buy-top {
    text-align: center;
    /*margin-top: 20px;*/
    padding-bottom: 26px; /* Added padding-bottom */
}

.buy-top video {
    width: 100%;
    border-radius: 0 0 10px 10px;
    margin-bottom: 20px;
}

/* Contract address box and styling */
.contract-address-wrapper {
    margin-top: 20px;
    font-size: 1.2em;
    color: #fff;
}

/* Buy Now Button Styling */
.cta-button {
    background-color: #184a8a;
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    margin-top: 10px;
}

/* Contract box styling */
.contract-box {
    margin-top: 10px;
    padding: 10px;
    background-color: #184a8a;
    background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0px, rgba(255, 255, 255, 0.1) 10px, transparent 10px, transparent 20px);
    color: #fff;
    border-radius: 5px;
    display: inline-block;
    width: 100%;
    max-width: 400px;
    cursor: pointer;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

/* Click to copy text */
.click-to-copy {
    font-size: 12px;
    margin-top: 5px;
    color: #ddd;
    text-align: center;
}

/* Adjusted up arrows on both sides */
.click-to-copy::before, .click-to-copy::after {
    content: "↑";
    margin: 0 5px;
}

/* About section */
.about {
    background-color: #1b3b6f;
    padding: 50px 0;
    text-align: center;
}

.about h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}

.about p {
    font-size: 18px;
    margin-bottom: 20px;
}

.about-media img {
    width: 100%;
    border-radius: 10px;
}

/* Memes section */
.memes {
    background-color: #123456;
    padding: 50px 0;
    text-align: center;
}

.memes h2 {
    font-size: 44px; /* Increased font size */
    font-weight: bold;
    margin-bottom: 20px;
}

.memes p {
    margin-bottom: 20px; /* Added margin to create space between text and images */
}

.meme-gallery {
    column-count: 3;
    column-gap: 15px;
}

.meme-gallery img {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 10px;
}

/* Stack images on mobile */
@media screen and (max-width: 768px) {
    .meme-gallery {
        column-count: 1;
    }

    .meme-gallery img {
        width: 100%;
        margin-right: 0;
    }
}

/* Video Display for Desktop */
.video-display-desktop {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.video-display-desktop video {
    width: 24%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
}

@media screen and (max-width: 768px) {
    .video-display-desktop {
        display: none;
    }
}

/* How to Buy Section */
.howtobuy {
    background-color: #1b3b6f;
    padding: 50px 0;
    text-align: center;
}

.howtobuy h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}

.step {
    margin-bottom: 10px;
}

.howtobuy a {
    color: #1a73e8;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.howtobuy a:hover {
    color: #1558a8; /* Gradually turns into a different shade of blue */
    text-decoration: underline;
    font-weight: bolder;
}

.buy-now-container {
    margin: 14px 0 30px;
}

/* Donation Section Styling */
.donation {
    background-color: #123456;
    padding: 50px 0;
    text-align: center;
}

.donation h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}

.donation-text {
    font-size: 20px;
    margin-bottom: 30px; /* Added space below the text */
}

.donation-flyer {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
}

/* Merch Store Section */
.merch {
    background-color: #1b3b6f;
    padding: 50px 0;
    text-align: center;
}

.merch h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}

.merch-items img {
    width: 30%;
    margin-right: 20px;
}

.merch-items img:last-child {
    margin-right: 0;
}

/* Socials Section */
.socials {
    background-color: #123456;
    padding: 50px 0;
    text-align: center;
}

.socials h2 {
    margin-bottom: 20px;
}

.social-icons img {
    width: 30px;
    margin: 0 10px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #184a8a;
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    z-index: 999;
}

.back-to-top:hover {
    background-color: #1a568b;
}

/* Footer styles */
.footer {
    background-color: #1b3b6f;
    background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0px, rgba(255, 255, 255, 0.1) 10px, transparent 10px, transparent 20px);
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 3px;
    opacity: 0.9;
}

.footer p {
    margin: 5px 0;
    font-size: 0.9em;
}
