/* General Styles */
body {
    font-family: 'Sour Gummy', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a2e;
    color: #ffffff;
}

h1, h2 {
    text-align: center;
    color: #cfcfcf;
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

section {
    padding: 50px 20px;
    text-align: center;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #0f3460;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    width: 50px;
    border-radius: 50%;
}

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

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #e94560;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 10px;
        background: #0f3460;
        border-radius: 8px;
        padding: 10px;
        width: 150px;
    }

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

    .hamburger {
        display: flex;
    }
}

/* Buy Section */
#buy .contract-address {
    background: #16213e;
    padding: 10px;
    border-radius: 10px;
    color: #e94560;
    margin-bottom: 20px;
}
#buy-btn{
  font-size: 1.6rem;
  border-radius: 20px;
  background: seagreen;
  color: #fff;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px 0;
    background: #0f3460;
    color: #ffffff;
}




/* Memes Section */
.carousel-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    max-width: 90%;
}

.carousel {
    overflow: hidden;
    width: 80%;
    height: auto;
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-images img {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    margin: 0 5px;
    border-radius: 10px;
}

/* Arrow Buttons */
.arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #ffffff;
    background: #0f3460;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 10px;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
    z-index: 10;
    transition: background-color 0.3s;
}

.arrow-btn:hover {
    background-color: #e94560;
}

.prev-btn {
    left: -40px;
}

.next-btn {
    right: -40px;
}

/* Buy Section */
#buy {
    padding: 20px;
    text-align: center;
}

.contract-address {
    background: #16213e;
    color: #e94560;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
    max-width: 90%;
    margin: 10px auto;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.2);
}

.homeland{
  width: 300px;
  height: 300px;
  border-radius: 100%;
}
.aboutland{
  width: 100%;
  height: auto;
  border-radius: 25px;
}

.contact-icons img{
  align-items: center;
  width: 100px;
  height: 100px;
  border-radius: 100%;
}