/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styles */
body {
    font-family: "Anton SC", sans-serif;
    font-weight: 200;
    font-style: normal;
    background-color: #5ca5ea;
    color: #000;
}

/* Navigation */
nav {
    display: flex; /* Use flexbox */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    padding: 50px;
    background-color: #89bceb;
    font-size: 14px;
}

nav span {
    font-family: "Anton SC", sans-serif;
    font-weight: 900;
    color: white;
    font-weight: bold;
    font-size: 60px;
}

.nav-right a {
    margin-left: 20px;
    text-decoration: none;
    color: black;
    font-weight: bold;
}

/* Main Section Blur Background */
.blur-background-main {
    position: relative; /* Position relative for stacking */
    overflow: hidden; /* Prevent overflow */
}

.blur-background-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background-image: url('back2.jpg');  Replace with your main image */
    background-size: cover; /* Cover the entire area */
    background-position: center; /* Center the image */
    filter: blur(2px); /* Adjust blur amount */
    z-index: 1; /* Behind content */
}

/* Section Styles */
.main-section {
    position: relative; /* Position for stacking */
    z-index: 2; /* On top of the blur */
    padding: 40px; /* Add padding for spacing */
    display: flex; /* Maintain the layout */
    justify-content: center;
    align-items: center;
}

/* Main Section Content */
.dog-image img {
    width: 700px;
    height: auto;
    border: 2px solid black;
}

.genki-info {
    font-family: "Lexend", sans-serif;
    margin-left: 50px;
    text-align: center;
}

.genki-info h1 {
    font-size: 4rem;
    color: white;
    font-weight: 900;
    text-shadow: 3px 3px #000000;
}


.genki-info button  {
    font-family: "Lexend", sans-serif;
    font-weight: 900;
    padding: 13px 50px;
    font-size: 2rem;
    border: none;
    background-color: #89bceb;
    color: white;
    text-shadow: 3px 3px #000000;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 20px;
}

.icons {
    margin-top: 20px;
    border: none;
}

.icons img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    border: none;
}

/* Subsection */
.subsection {
    font-family: "Lexend", sans-serif;
    font-weight: 400;
    padding: 13px 50px;
    font-size: 1.54rem;
    border: none;
    background-color: #89bceb;
    color: white;
    text-shadow: 3px 3px #000000;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 20px;
    text-align: center;
}

/* About Section Blur Background */
.blur-background-about {
    position: relative; /* Position relative for stacking */
    overflow: hidden; /* Prevent overflow */
}

.blur-background-about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('back1.jpg'); /* Replace with your about image */
    background-size: cover; /* Cover the entire area */
    background-position: center; /* Center the image */
    filter: blur(2px); /* Adjust blur amount */
    z-index: 1; /* Behind content */
}

/* About Section Styles */
.about-section {
    font-family: "Lexend", sans-serif;
    position: relative; /* Position for stacking */
    z-index: 2; /* On top of the blur */
    text-align: center;
    padding: 50px;
}

.about-section h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 900;
    color: white;
    text-shadow: 3px 3px #000000;

    
    text-shadow: 3px 3px black;
}

.about-section p {
    font-size: 24px;
    margin-bottom: 40px;
    line-height: 1.6;
    color: white;
    font-weight: 400;
}

.dog-image-about img {
    width: 300px;
    height: auto;
    border: 3px solid black;
}

.about-content {
    display: flex; /* Use flexbox for horizontal alignment */
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center content */
    margin-top: 20px; /* Add margin for spacing */
}

.dog-image-about {
    margin-right: 20px; /* Space between images */
}

.image-gallery-wrapper {
    width: 100%; /* Full-width container */
    overflow: hidden; /* Hide overflow */
    position: relative;
}

/* Image gallery scrolling horizontally */
.image-gallery {
    display: flex;
    width: calc(150px * 12); /* Adjust width for all images plus cloned images */
    animation: scroll 20s linear infinite; /* Control the speed here */
}

/* Individual images inside the gallery */
.image-gallery img {
    width: 400px; /* Set image width */
    height: auto; /* Maintain aspect ratio */
    flex-shrink: 0; /* Prevent images from shrinking */
    margin-right: 10px; /* Optional space between images */
    border-radius: 20px;
}

/* Keyframes for continuous scrolling */
@keyframes scroll {
    0% {
        transform: translateX(0); /* Start at normal position */
    }
    100% {
        transform: translateX(-100%); /* Move left by 100% of the container width */
    }
}


.image-gallery img:hover {
    transform: scale(1.05); /* Scale up on hover */
}

.copy-btn {
    width: 30px; /* Set the width of the image */
    height: auto; /* Keep the aspect ratio */
    margin-left: 20px;
    cursor: pointer;
    transition: transform 0.2s, filter 0.2s;
}

.copy-btn:hover {
    transform: scale(1.2); /* Enlarges the image on hover */
    filter: brightness(1.2); /* Brighten the image on hover */
}

.TOKENOMICS-Image img {
    width: 400px; /* Set image width */
    height: auto; 
    border-radius: 700px;
    margin: 30px; 
    
    image-orientation: center;
}

.blurred {
    filter: blur(20px);
    pointer-events: none; /* Disable interaction with blurred content */
}

/* Popup styling */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    font-family: "Lexend", sans-serif;
    font-weight: 900;
    color: white;
    background-color: black;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 400px; /* Set a defined width */
    width: 100%; /* Ensure it takes full width of max-width */
    height: auto; /* Allows the height to grow with content */
}

/* Stack buttons vertically */
.popup-content button {
    font-family: "Lexend", sans-serif;
    font-weight: 900;
    padding: 10px 20px;
    margin-top: 10px; /* Space between buttons */
    font-size: 16px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: block; /* Ensure buttons are block elements */
    width: 100%; /* Make buttons full width */
}

.popup-content h2 {
    margin-bottom: 15px;
}

.popup-content p {
    margin-bottom: 15px;
}

#reject-button {

    background-color: gray;

}

#confirm-button {

    background-color: #5ca5ea;

}

.popup-content button:hover {
    background-color: #d07f42;
}


.about-section {
    text-align: center; /* Center the text and images */
    margin: 20px; /* Space around the section */
}

.TOKENOMICS-wrapper {
    display: flex; /* Use flexbox to align items */
    justify-content: center; /* Center items in the wrapper */
    gap: 20px; /* Space between items */
}

.TOKENOMICS-item {
    display: flex; /* Align image and text vertically */
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
}

.TOKENOMICS-item img {
    width: 250px; /* Set a consistent width for images */
    height: 250px; /* Set the height equal to width for a perfect circle */
    border-radius: 50%; /* Use 50% to create a circular shape */
    margin: 30px; /* Space around the image */
    object-fit: cover; /* Ensures the image covers the entire area without distortion */
    border: 3px solid black;
}

.tokenomics-text {
    font-family: "Lexend", sans-serif !important;
    font-weight: 500 !important;
    margin-top: 5px; /* Space between the image and text */
    margin-bottom: 10px;
    font-size: 23px !important; /* Adjust font size */
    color: black !important; /* Text color */
}

.tokenomics-textss {
    font-family: "Lexend", sans-serif !important;
    font-weight: 900 !important;
    margin-top: 5px; /* Space between the image and text */
    font-size: 2rem !important; /* Adjust font size */
    color: white !important; /* Text color */
}


 /**********************************************************/

 .swap-section {
    display: flex;
    flex-direction: column; /* Stack heading and steps vertically */
    align-items: center; /* Center content horizontally */
    justify-content: center; /* Center content vertically */
    text-align: center;
    margin: 20px;
}

.swap-section h1 {
    font-family: "Lexend", sans-serif;
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 900;
    color: white;
    text-shadow: 3px 3px #000000;
    text-shadow: 3px 3px black;
}

.swap-steps {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    justify-content: center; /* Center items vertically */
    gap: 20px; /* Space between items */
}

.swap-item {
    display: flex;
    flex-direction: row; /* Align image and text-content side by side */
    align-items: center; /* Align items vertically */
    margin: 30px;
}

.swap-item img {
    width: 150px;
    height: auto;
    margin-right: 90px; /* Space between image and text-content */
}
#wallet3 {
    width: 180px;
    height: auto;
    margin-right: 80px; /* Space between image and text-content */
}

#connect{
    
    margin-right: 160px; /* Space between image and text-content */
}

#text3{
    
    margin-left: 50px; /* Space between image and text-content */
}


.text-content {
    display: flex;
    flex-direction: column; /* Stack header and text vertically */
    justify-content: center; /* Vertically center the text-content */
}

.step-header {
    font-family: "Lexend", sans-serif !important;
    font-weight: 900 !important;
    margin-bottom: 10px; /* Space between header and text */
    font-size: 2rem !important;
    color: white !important;
}

.step-text {
    font-family: "Lexend", sans-serif !important;
    font-weight: 500 !important;
    margin-bottom: 10px;
    font-size: 1rem !important;
    color: black !important;
}

a.custom-link {
    text-decoration: none;
    color: white;
  }