body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #fff;
    background-color: #000;
}

header {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 139, 0.5); /* Navy blue with 50% opacity */
    z-index: 0;
}

.header-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 250px; /* Increased width for a bigger logo */
    margin-bottom: 10px;
}

h1 {
    margin: 10px 0;
    font-size: 2em;
    color: #fff;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons img {
    width: 40px;
}

main {
    padding: 20px;
    background-color: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section {
    margin-bottom: 40px;
    width: 80%;
    max-width: 800px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    color: #000;
    position: relative;
}

.dancing-gif {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.dancing-gif.left {
    left: -180px; /* Adjust this value as needed */
}

.dancing-gif.right {
    right: -180px; /* Adjust this value as needed */
}

.dancing-gif img {
    width: 150px;
}

#about {
    background-color: #00008b; /* Blue background for About section */
    color: #fff; /* White text color for better contrast */
}

#tokenomics {
    background-color: #ff0000; /* Red background for Tokenomics section */
    color: #fff; /* White text color for better contrast */
}

#how-to-buy {
    background-color: #fff; /* White background for How to Buy section */
    color: #000; /* Black text color for better contrast */
}

#meme-gallery {
    background-color: #00008b; /* Blue background for Meme Gallery section */
    color: #fff; /* White text color for better contrast */
}

h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

hr {
    border: 1px solid #000; /* Black color for horizontal lines in How to Buy section */
    margin: 20px 0;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.gallery img {
    width: 100%;
    max-width: 250px; /* Increased max-width for larger images */
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #222;
    color: #fff;
    position: relative;
}

footer .disclaimer {
    background-color: #333;
    padding: 10px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.8em; /* Smaller font size for disclaimer */
    max-width: 600px;
}

footer a {
    color: #fff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .contract-address,
    .how-to-buy-address {
        word-break: break-all; /* Breaks the word if it doesn't fit */
        font-size: 0.9em; /* Adjust font size for better fit */
    }
    .dancing-gif.left,
    .dancing-gif.right {
        position: relative;
        top: initial;
        left: initial;
        right: initial;
        transform: none;
        margin: 20px auto;
        display: block;
    }
}

.claim-button {
    background-color: #bd4b21; 
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin-top: 20px;
}

.claim-button:hover {
    background-color: #e03e00; /* Slightly darker orange on hover */
}


