@font-face {
    font-family: 'Milkei';
    src: url('fonts/Milkei.otf') format('opentype'); /* Path to your font file */
    font-weight: bold;
    font-style: normal;
}

/* Global Reset for Consistent Styling */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden; /* Prevent horizontal scrolling caused by large elements */
    box-sizing: border-box; /* Ensure padding and borders are included in element width */
}

*, *::before, *::after {
    box-sizing: inherit; /* Apply box-sizing globally */
}

/* General Reset */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: black;
}

/* Header and Navigation */
header {
    background-color: #333;
    color: white;
    padding: 0 15px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

header .logo {
    font-size: 24px;
    font-weight: bold;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
    align-items: center;
    padding-right: 15px;
}

header nav ul li {
    position: relative;
}

header nav ul li a {
    text-decoration: none;
    color: white;
    padding: 10px 15px;
    display: block;
}

/* Dropdown Menu Styling */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -15px;
    background-color: #444;
    padding: 0;
    list-style: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    z-index: 1000;
}

.dropdown-menu li a {
    padding: 10px 15px;
}

.dropdown-menu li a:hover {
    background-color: #007bff;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Hero Section */
#hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 20px 50px;
    background-color: black;
    color: white;
}

/* Hero Images */
.hero-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin-bottom: 30px;
}

.hero-logo {
    width: 50%;
    height: auto;
    object-fit: contain;
}

/* Hero Header Image */
.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
}

.hero-header {
    width: 100%;
    height: auto;
    margin-top: 20px;
}

.gold-bar {
    width: 100vw; /* Full width of the viewport */
    height: 10px; /* Thickness of the gold bar */
    background-color: #b8860b; /* Gold color */
    position: relative; /* Position it above the contract section */
    top: 0; /* Align it to the top of the section */
    left: 0; /* Stretch from the left edge */
    z-index: 1; /* Ensure it's above background elements */
}

#contract {
    color: white;
    padding: 50px 20px;
    text-align: center;
    position: relative; /* Maintain layout for the section */
    z-index: 2; /* Ensure content appears above the gold bar */
}

.bg-section {
    width: 100vw; /* Ensure the gold bar spans the full viewport width */
    box-sizing: border-box; /* Ensure padding doesn't break layout */
}
/* Container for Solana logo */
.solana-logo-container {
    display: flex;
    justify-content: center; /* Center horizontally */
    margin-top: 20px; /* Add space above the logo */
}

/* Solana logo styling */
.solana-logo {
    width: 100px; /* Adjust size as needed */
    height: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Ensure proper scaling */
    transition: transform 0.3s ease; /* Add smooth hover effect */
}

/* Hover effect for Solana logo */
.solana-logo:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
}

/* Header styling for the contract section */
#contract h2 {
    font-family: 'Milkei', Arial, sans-serif; /* Use Milkei font */
    font-weight: bold; /* Adjust based on preference */
    font-size: 2rem; /* Match heading size */
    text-transform: uppercase; /* Match navigation text */
    letter-spacing: 1px; /* Spacing to align with nav links */
    color: white; /* Default color */
}

#contract p, #how-to-buy ol, #legal p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 20px;
}

#legal {
    display: block; /* Ensure the section is visible */
    color: white; /* Text color */
    padding: 50px 20px; /* Spacing for the section */
    text-align: center; /* Center the text */
    background-color: black; /* Match the background */
    z-index: 2; /* Ensure it is above other elements */
    position: relative;
}

#legal {
    z-index: 2; /* Ensure it is above other elements */
    position: relative;
}

/* Footer container */
footer {
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Vertically align all items */
    justify-content: space-between; /* Space out items horizontally */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    background-color: #222;
    color: white;
    padding: 20px;
    position: relative;
}

/* Footer left section for Solana logo */
.footer-left {
    display: flex;
    align-items: center; /* Center the logo vertically */
    margin-bottom: 10px; /* Add spacing below the logo on smaller screens */
}

/* Footer logo (Solana) */
.footer-logo {
    height: 40px; /* Set a consistent logo size */
    width: auto; /* Maintain aspect ratio */
    object-fit: contain;
}

/* Footer text */
footer p {
    flex: 1; /* Allow the text to grow and take up available space */
    text-align: center; /* Center-align text */
    margin: 0;
}

/* Footer social links */
footer .social-links {
    display: flex;
    justify-content: center; /* Center links horizontally */
    gap: 20px;
    flex-wrap: wrap; /* Allow links to wrap on smaller screens */
}

/* Social icon styles */
footer .social-links a {
    display: inline-block;
    width: 32px; /* Base size for all icons */
    height: 32px;
}

footer .social-links img.social-icon {
    width: 100%; /* Icon fills the container */
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Ensures white icon with no background */
    transition: transform 0.3s; /* Smooth hover effect */
}

footer .social-links img.social-icon:hover {
    transform: scale(1.2); /* Enlarge slightly on hover */
}

/* Responsive Design for Mobile */
@media screen and (max-width: 768px) {
    footer {
        flex-direction: column; /* Stack items vertically */
        text-align: center; /* Center-align all content */
    }

    .footer-left {
        justify-content: center; /* Center the logo */
        margin-bottom: 10px; /* Add spacing between logo and text */
    }

    footer p {
        margin: 10px 0; /* Add spacing above and below the text */
    }

    .social-links {
        justify-content: center; /* Center links on mobile */
    }
}

/* Slightly increase size of dex-icon */
footer .social-links a[href*="dex-platform-link.com"] img.social-icon {
    width: 36px; /* Slightly larger size for alignment */
    height: auto;
    filter: brightness(0) invert(1); /* Match behavior of other icons */
    background-color: transparent; /* No background */
}


footer .social-links a[href*="dex-platform-link.com"] img.social-icon {
    filter: none; /* Remove the invert and brightness filter */
}

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure the body is at least the height of the viewport */
}

main {
    flex: 1; /* Ensures the main content takes up the remaining space */
}

footer {
    margin-top: auto; /* Push the footer to the bottom */
    background-color: #222; /* Adjust to your desired color */
    color: white;
    padding: 20px;
    text-align: center;
}

/* Background Section for Contract and How to Buy */
.bg-section {
    background-image: url('buysectionbg.jpg'); /* Path to your background image */
    background-size: cover; /* Ensure the image covers the entire section */
    background-position: center; /* Center the image */
    padding: 50px 20px; /* Add spacing inside the section */
    border-top: 10px solid white; /* White border on the top */
    border-bottom: 10px solid white; /* White border on the bottom */
}

/* Content Inside the Background Section */
#contract, #how-to-buy {
    color: white; /* Ensure text is visible on the background */
    text-align: center; /* Center-align the text */
    max-width: 800px; /* Limit the width of the content */
    margin: 0 auto; /* Center the content horizontally */
}

#contract h2, #how-to-buy h2 {
    font-size: 2rem; /* Heading size */
    margin-bottom: 20px; /* Space below the headings */
}

#contract p, #how-to-buy ol {
    font-size: 1.2rem; /* Font size for paragraphs and lists */
    line-height: 1.6; /* Improve readability */
}

/* Make contract address interactive */
#contract-address {
    cursor: pointer; /* Change cursor to pointer */
    transition: text-shadow 0.3s ease, color 0.3s ease; /* Smooth transitions */
    font-family: 'Milkei', Arial, sans-serif; /* Use Milkei font */
    font-size: 1.2rem; /* Adjust size for visibility */
    text-transform: uppercase; /* Match navbar text styling */
    letter-spacing: 1px; /* Add letter spacing */
    color: white; /* Default text color */
    transition: all 0.2s ease;
}

#contract-address:hover {
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
    color: #FFD700;
}

#contract-address:active {
    transform: scale(0.98);
    text-shadow: 0 0 10px rgba(255, 69, 0, 0.4);
    color: #FFA500;
}

/* Logo Image in Navbar */
.nav-logo {
    height: 40px; /* Adjust to match the height of the navbar */
    width: auto; /* Maintain aspect ratio */
    display: block; /* Ensures the image is treated like an inline-block */
}

/* Header and Navigation */
header {
    background-color: #333;
    color: white;
    padding: 0 15px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

/* Logo container */
.logo {
    display: flex;
    align-items: center; /* Vertically center the logo */
    justify-content: center; /* Optional: center horizontally */
    height: 100%; /* Match the height of the navbar */
    padding-left: 10px; /* Add spacing from the left (optional) */
}

/* Logo image in navbar */
.nav-logo {
    height: 40px; /* Adjust height to align with links and hamburger */
    width: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Ensure proper scaling */
    display: block; /* Render the image as a block */
    vertical-align: middle; /* Vertically align it with the text and hamburger */
}

/* Navigation menu */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
    align-items: center; /* Vertically align text with logo */
}

/* Navigation links */
nav ul li a {
    text-decoration: none;
    color: white; /* Adjust color if needed */
    font-family: 'CallOfOpsDuty', Arial, sans-serif; /* Apply CallOfOpsDuty font */
    font-weight: normal; /* Adjust based on font style */
    font-size: 1.2rem; /* Customize size */
    text-transform: uppercase; /* Make text uppercase */
    letter-spacing: 1px; /* Add letter spacing */
    padding: 10px 15px;
    display: block;
}
#video-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('flagbg.webp'); /* Replace with your image file extension if different */
    background-size: cover;
    background-position: center;
    padding: 50px 20px;
    text-align: center;
    border-top: 10px solid white; /* Only top border */
}

#video-section video {
    pointer-events: none; /* Disable user interaction */
    max-width: 80%;
    height: auto;
    border: 5px solid white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    display: block;
}

#audio {
    display: none;
}

#homan-wants-you-section {
    background-color: black; /* Black background for the section */
    text-align: center; /* Center-align the image */
    padding: 50px 20px; /* Add spacing around the image */
    border-top: 10px solid white; /* Add a white border at the top */
}

.homan-wants-you-image {
    max-width: 80%; /* Make the image responsive */
    height: auto;
    border-radius: 10px; /* Optional: Add rounded corners to the image */
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.3); /* Optional: Add a light shadow effect */
}

#handshake-section {
    background-color: black;
    text-align: center;
    height: auto; /* Adjust height dynamically */
    position: relative;
    border-top: 10px solid white;
    overflow: hidden; /* Prevent content overflow */
    padding: 30px 20px 0; /* Remove bottom padding */
}

.handshake-heading {
    font-family: 'Milkei', Arial, sans-serif; /* Use the same font as Contract Address */
    font-weight: bold; /* Ensure the heading is bold */
    font-size: 2rem; /* Adjust size for consistency */
    text-transform: uppercase; /* Make it uppercase */
    color: khaki; /* Same color as Contract Address */
    letter-spacing: 1px; /* Optional: improve spacing */
    text-align: center; /* Center-align the heading */
}

.handshake-paragraph {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 10px auto;
}

.handshake-image {
    display: block;
    margin: 0 auto; /* Center the image horizontally */
    max-width: 70%; /* Ensure responsive scaling */
    height: auto; /* Maintain aspect ratio */
    position: relative; /* Allows precise placement */
    bottom: 0; /* Align with the bottom of the section */
    margin-top: auto; /* Automatically push it down */
}

/* Add to styles.css */
.handshake-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.handshake-content.visible {
    opacity: 1;
    transform: translateY(0);
}


@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Social Links under Hero Section */
.hero-social-links {
    margin-top: 20px; /* Space above the icons */
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between icons */
}

.hero-social-links a {
    display: inline-block;
    width: 32px; /* Base size for icons */
    height: 32px;
}

.hero-social-links img.social-icon {
    width: 100%; /* Icon fills the container */
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Ensures white icon with no background */
    transition: transform 0.3s; /* Smooth hover effect */
}

.hero-social-links img.social-icon:hover {
    transform: scale(1.2); /* Enlarge slightly on hover */
}

/* Specific adjustment for dex-icon under hero */
.hero-social-links a[href*="dex-platform-link.com"] img.social-icon {
    width: 36px; /* Slightly larger size for alignment */
    height: auto;
    filter: brightness(0) invert(1);
    background-color: transparent; /* No background */
}

/* How to Buy Section */
#how-to-buy {
    background-image: url('buysectionbg.jpg'); /* Ensure correct file path */
    background-size: cover; /* Stretch the image to cover the section */
    background-position: center; /* Center the background */
    background-repeat: no-repeat; /* Avoid tiling */
    width: 100%; /* Full width based on parent container */
    min-width: 100vw; /* Ensure section spans viewport width */
    margin: 0; /* Remove default margins */
    padding: 50px 0; /* Add spacing inside */
    box-sizing: border-box; /* Include padding in width calculation */
    position: relative; /* Maintain proper stacking */
    overflow: hidden; /* Prevent content overflow */
    border-top: 10px solid #b8860b;
    border-bottom: 10px solid #b8860b;
}

@font-face {
    font-family: 'Milkei';
    src: url('fonts/Milkei.otf') format('opentype'); /* Path to your font file */
    font-weight: normal;
    font-style: normal;
}

/* Global Reset for Consistent Styling */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden; /* Prevent horizontal scrolling caused by large elements */
    box-sizing: border-box; /* Ensure padding and borders are included in element width */
}

*, *::before, *::after {
    box-sizing: inherit; /* Apply box-sizing globally */
}

/* General Reset */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: black;
}

/* Header and Navigation */
header {
    background-color: #333;
    color: white;
    padding: 0 15px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

header .logo {
    font-size: 24px;
    font-weight: bold;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
    align-items: center;
    padding-right: 15px;
}

header nav ul li {
    position: relative;
}

header nav ul li a {
    text-decoration: none;
    color: white;
    padding: 10px 15px;
    display: block;
}

/* Dropdown Menu Styling */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -15px;
    background-color: #444;
    padding: 0;
    list-style: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    z-index: 1000;
}

.dropdown-menu li a {
    padding: 10px 15px;
}

.dropdown-menu li a:hover {
    background-color: #007bff;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Hero Section */
#hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 20px 50px;
    background-color: black;
    color: white;
}

/* Hero Images */
.hero-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin-bottom: 30px;
}

.hero-logo {
    width: 50%;
    height: auto;
    object-fit: contain;
}

/* Hero Header Image */
.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
}

.hero-header {
    width: 100%;
    height: auto;
    margin-top: 20px;
}

.gold-bar {
    width: 100vw; /* Full width of the viewport */
    height: 10px; /* Thickness of the gold bar */
    background-color: #b8860b; /* Gold color */
    position: relative; /* Position it above the contract section */
    top: 0; /* Align it to the top of the section */
    left: 0; /* Stretch from the left edge */
    z-index: 1; /* Ensure it's above background elements */
}

#contract {
    color: white;
    padding: 50px 20px;
    text-align: center;
    position: relative; /* Maintain layout for the section */
    z-index: 2; /* Ensure content appears above the gold bar */
}

.bg-section {
    width: 100vw; /* Ensure the gold bar spans the full viewport width */
    box-sizing: border-box; /* Ensure padding doesn't break layout */
}
/* Container for Solana logo */
.solana-logo-container {
    display: flex;
    justify-content: center; /* Center horizontally */
    margin-top: 20px; /* Add space above the logo */
}

/* Solana logo styling */
.solana-logo {
    width: 100px; /* Adjust size as needed */
    height: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Ensure proper scaling */
    transition: transform 0.3s ease; /* Add smooth hover effect */
}

/* Hover effect for Solana logo */
.solana-logo:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
}

/* Header styling for the contract section */
#contract h2 {
    font-family: 'Milkei', Arial, sans-serif; /* Use Milkei font */
    font-weight: bold; /* Adjust based on preference */
    font-size: 2rem; /* Match heading size */
    text-transform: uppercase; /* Match navigation text */
    letter-spacing: 1px; /* Spacing to align with nav links */
    color: white; /* Default color */
}

#contract p, #how-to-buy ol, #legal p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 20px;
}

#legal {
    display: block; /* Ensure the section is visible */
    color: white; /* Text color */
    padding: 50px 20px; /* Spacing for the section */
    text-align: center; /* Center the text */
    background-color: black; /* Match the background */
    z-index: 2; /* Ensure it is above other elements */
    position: relative;
}

#legal {
    z-index: 2; /* Ensure it is above other elements */
    position: relative;
}

/* Footer container */
footer {
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Vertically align all items */
    justify-content: space-between; /* Space out items horizontally */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    background-color: #222;
    color: white;
    padding: 20px;
    position: relative;
}

/* Footer left section for Solana logo */
.footer-left {
    display: flex;
    align-items: center; /* Center the logo vertically */
    margin-bottom: 10px; /* Add spacing below the logo on smaller screens */
}

/* Footer logo (Solana) */
.footer-logo {
    height: 40px; /* Set a consistent logo size */
    width: auto; /* Maintain aspect ratio */
    object-fit: contain;
}

/* Footer text */
footer p {
    flex: 1; /* Allow the text to grow and take up available space */
    text-align: center; /* Center-align text */
    margin: 0;
}

/* Footer social links */
footer .social-links {
    display: flex;
    justify-content: center; /* Center links horizontally */
    gap: 20px;
    flex-wrap: wrap; /* Allow links to wrap on smaller screens */
}

/* Social icon styles */
footer .social-links a {
    display: inline-block;
    width: 32px; /* Base size for all icons */
    height: 32px;
}

footer .social-links img.social-icon {
    width: 100%; /* Icon fills the container */
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Ensures white icon with no background */
    transition: transform 0.3s; /* Smooth hover effect */
}

footer .social-links img.social-icon:hover {
    transform: scale(1.2); /* Enlarge slightly on hover */
}

/* Responsive Design for Mobile */
@media screen and (max-width: 768px) {
    footer {
        flex-direction: column; /* Stack items vertically */
        text-align: center; /* Center-align all content */
    }

    .footer-left {
        justify-content: center; /* Center the logo */
        margin-bottom: 10px; /* Add spacing between logo and text */
    }

    footer p {
        margin: 10px 0; /* Add spacing above and below the text */
    }

    .social-links {
        justify-content: center; /* Center links on mobile */
    }
}

/* Slightly increase size of dex-icon */
footer .social-links a[href*="dex-platform-link.com"] img.social-icon {
    width: 36px; /* Slightly larger size for alignment */
    height: auto;
    filter: brightness(0) invert(1); /* Match behavior of other icons */
    background-color: transparent; /* No background */
}


footer .social-links a[href*="dex-platform-link.com"] img.social-icon {
    filter: none; /* Remove the invert and brightness filter */
}


/* Background Section for Contract and How to Buy */
.bg-section {
    background-image: url('buysectionbg.jpg'); /* Path to your background image */
    background-size: cover; /* Ensure the image covers the entire section */
    background-position: center; /* Center the image */
    padding: 50px 20px; /* Add spacing inside the section */
    border-top: 10px solid white; /* White border on the top */
    border-bottom: 10px solid white; /* White border on the bottom */
}

/* Content Inside the Background Section */
#contract, #how-to-buy {
    color: white; /* Ensure text is visible on the background */
    text-align: center; /* Center-align the text */
    max-width: 800px; /* Limit the width of the content */
    margin: 0 auto; /* Center the content horizontally */
}

#contract h2, #how-to-buy h2 {
    font-size: 2rem; /* Heading size */
    margin-bottom: 20px; /* Space below the headings */
}

#contract p, #how-to-buy ol {
    font-size: 1.2rem; /* Font size for paragraphs and lists */
    line-height: 1.6; /* Improve readability */
}

/* Make contract address interactive */
#contract-address {
    cursor: pointer; /* Change cursor to pointer */
    transition: text-shadow 0.3s ease, color 0.3s ease; /* Smooth transitions */
    font-family: 'Milkei', Arial, sans-serif; /* Use Milkei font */
    font-size: 1.2rem; /* Adjust size for visibility */
    text-transform: uppercase; /* Match navbar text styling */
    letter-spacing: 1px; /* Add letter spacing */
    color: white; /* Default text color */
}

/* Hover effect for glow */
#contract-address:hover {
    text-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700; /* Gold glow */
    color: #FFD700; /* Change text color to gold */
}

/* Click effect for feedback */
#contract-address:active {
    text-shadow: 0 0 15px #FF4500, 0 0 25px #FF4500; /* Intense red/orange glow */
    color: #FF4500; /* Change text color to red/orange */
}

/* Logo Image in Navbar */
.nav-logo {
    height: 40px; /* Adjust to match the height of the navbar */
    width: auto; /* Maintain aspect ratio */
    display: block; /* Ensures the image is treated like an inline-block */
}

/* Header and Navigation */
header {
    background-color: #333;
    color: white;
    padding: 0 15px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

/* Logo container */
.logo {
    display: flex;
    align-items: center; /* Vertically center the logo */
    justify-content: center; /* Optional: center horizontally */
    height: 100%; /* Match the height of the navbar */
    padding-left: 10px; /* Add spacing from the left (optional) */
}

/* Logo image in navbar */
.nav-logo {
    height: 40px; /* Adjust height to align with links and hamburger */
    width: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Ensure proper scaling */
    display: block; /* Render the image as a block */
    vertical-align: middle; /* Vertically align it with the text and hamburger */
}

/* Navigation menu */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
    align-items: center; /* Vertically align text with logo */
}

/* Navigation links */
nav ul li a {
    text-decoration: none;
    color: white; /* Adjust color if needed */
    font-family: 'CallOfOpsDuty', Arial, sans-serif; /* Apply CallOfOpsDuty font */
    font-weight: normal; /* Adjust based on font style */
    font-size: 1.2rem; /* Customize size */
    text-transform: uppercase; /* Make text uppercase */
    letter-spacing: 1px; /* Add letter spacing */
    padding: 10px 15px;
    display: block;
}
#video-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('flagbg.webp'); /* Replace with your image file extension if different */
    background-size: cover;
    background-position: center;
    padding: 50px 20px;
    text-align: center;
    border-top: 10px solid white; /* Only top border */
}

#video-section video {
    pointer-events: none; /* Disable user interaction */
    max-width: 80%;
    height: auto;
    border: 5px solid white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    display: block;
}

#audio {
    display: none;
}

#homan-wants-you-section {
    background-color: black; /* Black background for the section */
    text-align: center; /* Center-align the image */
    padding: 50px 20px; /* Add spacing around the image */
    border-top: 10px solid white; /* Add a white border at the top */
}

.homan-wants-you-image {
    max-width: 80%; /* Make the image responsive */
    height: auto;
    border-radius: 10px; /* Optional: Add rounded corners to the image */
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.3); /* Optional: Add a light shadow effect */
}

#handshake-section {
    background-color: black;
    text-align: center;
    height: auto; /* Adjust height dynamically */
    position: relative;
    border-top: 10px solid white;
    overflow: hidden; /* Prevent content overflow */
    padding: 30px 20px 0; /* Remove bottom padding */
}

.handshake-heading {
    font-family: 'Milkei', Arial, sans-serif; /* Use the same font as Contract Address */
    font-weight: bold; /* Ensure the heading is bold */
    font-size: 2rem; /* Adjust size for consistency */
    text-transform: uppercase; /* Make it uppercase */
    color: khaki; /* Same color as Contract Address */
    letter-spacing: 1px; /* Optional: improve spacing */
    text-align: center; /* Center-align the heading */

}

.handshake-paragraph {
    color: white; /* Ensure text remains visible */
    font-size: 1.5rem; /* Default font size for desktop */
    line-height: 2; /* Improve line spacing */
    max-width: 800px; /* Keep a readable width */
    margin: 0 auto 20px; /* Center and add spacing below */
    text-align: center; /* Center-align the text */
}

/* Responsive adjustments for smaller screens */
@media screen and (max-width: 768px) {
    .handshake-paragraph {
        font-size: 1.2rem; /* Reduce font size for tablets */
        line-height: 1.8; /* Adjust line spacing */
    }
}

@media screen and (max-width: 480px) {
    .handshake-paragraph {
        font-size: 1rem; /* Further reduce font size for mobile */
        line-height: 1.6; /* Adjust line spacing */
    }
}

.handshake-image {
    display: block;
    margin: 0 auto; /* Center the image horizontally */
    max-width: 70%; /* Ensure responsive scaling */
    height: auto; /* Maintain aspect ratio */
    position: relative; /* Allows precise placement */
    bottom: 0; /* Align with the bottom of the section */
    margin-top: auto; /* Automatically push it down */
}


@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Social Links under Hero Section */
.hero-social-links {
    margin-top: 20px; /* Space above the icons */
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between icons */
}

.hero-social-links a {
    display: inline-block;
    width: 32px; /* Base size for icons */
    height: 32px;
}

.hero-social-links img.social-icon {
    width: 100%; /* Icon fills the container */
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Ensures white icon with no background */
    transition: transform 0.3s; /* Smooth hover effect */
}

.hero-social-links img.social-icon:hover {
    transform: scale(1.2); /* Enlarge slightly on hover */
}

/* Specific adjustment for dex-icon under hero */
.hero-social-links a[href*="dex-platform-link.com"] img.social-icon {
    width: 36px; /* Slightly larger size for alignment */
    height: auto;
    filter: brightness(0) invert(1);
    background-color: transparent; /* No background */
}

/* How to Buy Section */
#how-to-buy {
    background-image: url('buysectionbg.jpg'); /* Ensure correct file path */
    background-size: cover; /* Stretch the image to cover the section */
    background-position: center; /* Center the background */
    background-repeat: no-repeat; /* Avoid tiling */
    width: 100%; /* Full width based on parent container */
    min-width: 100vw; /* Ensure section spans viewport width */
    margin: 0; /* Remove default margins */
    padding: 50px 0; /* Add spacing inside */
    box-sizing: border-box; /* Include padding in width calculation */
    position: relative; /* Maintain proper stacking */
    overflow: hidden; /* Prevent content overflow */
    border-top: 10px solid #b8860b;
    border-bottom: 10px solid #b8860b;
}

#how-to-buy h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.how-to-buy-box h3 {
    font-family: 'Milkei', Arial, sans-serif; /* Replace with your desired font */
    font-size: 1.5rem; /* Adjust heading font size */
    font-weight: bold;
    color: #333; /* Default text color for the heading */
}

.how-to-buy-box h3::before {
    content: attr(data-number); /* Use the data-number attribute */
    color: green; /* Set number color to green */
    font-weight: bold; /* Make it bold for better visibility */
    margin-right: 5px; /* Add space between number and text */
}

.how-to-buy-box p {
    font-family: 'Milkei', Arial, sans-serif; /* Replace with the desired font */
    font-size: 1.1rem; /* Adjust paragraph font size */
    line-height: 1.6;
    color: #555; /* Adjust color */
}

.how-to-buy-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Space between boxes */
    justify-content: center; /* Center the boxes */
    padding: 0 20px; /* Add horizontal padding for content */
    max-width: 1200px; /* Optional: Limit the width for better readability on larger screens */
    margin: 0 auto; /* Center the container */
}

.how-to-buy-box {
    flex: 1 1 calc(25% - 20px); /* Ensure four boxes fit in a row with gap */
    box-sizing: border-box; /* Include padding and border in size */
    border: 5px solid #333; /* Match the header background color */
    padding: 15px; /* Space inside each box */
    text-align: center; /* Center-align text */
    background-color: white; /* Box background color */
    color: black; /* Text color */
    font-size: 1rem;
    border-radius: 8px; /* Optional: Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add subtle shadow */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth hover effect */
    opacity: 0; /* Start with opacity at 0 for animation */
    transform: translateY(20px); /* Start with a slight offset for animation */
}

.how-to-buy-box.visible {
    opacity: 1; /* Full opacity when visible */
    transform: translateY(0); /* No offset when visible */
}

.how-to-buy-box:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

/* Adjust for smaller screens */
@media screen and (max-width: 768px) {
    .how-to-buy-box {
        flex: 1 1 calc(50% - 20px); /* Two boxes per row */
    }
}

@media screen and (max-width: 480px) {
    .how-to-buy-box {
        flex: 1 1 100%; /* One box per row */
    }
}

/* Scroll Reveal */
.how-to-buy-box {
    opacity: 0;
    transform: translateY(20px);
}

.how-to-buy-box.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Effect */
.how-to-buy-box:hover {
    transform: translateY(-5px); /* Slight rise on hover */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth hover effect */
}

/* Default State: Hidden */
.nav-links {
    height: 0;
    display: flex;
    flex-direction: column;
    background-color: #333;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    overflow: hidden;
    transition: height 0.3s ease-out; /* Smooth dropdown animation */
    z-index: 1000;
}

.nav-links.active {
    height: auto; /* Adjust to fit content */
}

/* Hover and active effects for dropdown menu links */
.nav-links a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 10px;
    font-family: 'CallOfOpsDuty', Arial, sans-serif; /* Your desired font */
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-links a:hover {
    text-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700; /* Gold glow */
    color: #FFD700; /* Gold color on hover */
}

.nav-links a:active {
    text-shadow: 0 0 15px #FF4500, 0 0 25px #FF4500; /* Intense glow on click */
    color: #FF4500; /* Red/orange color on click */
}

/* Hamburger Icon */
.hamburger {
    display: none; /* Hidden by default for desktop */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1100; /* Make sure it's on top of other elements */
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: white; /* Color of the bars */
    border-radius: 5px;
    transition: all 0.3s ease; /* Smooth animations */
}

/* Show Hamburger on Mobile */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex; /* Show on mobile screens */
    }

    nav ul {
        display: none; /* Hide default menu on mobile */
    }
}

/* Ensure .nav-links are visible on desktop */
@media screen and (min-width: 769px) {
    .nav-links {
        display: flex !important; /* Ensure links are visible on desktop */
        flex-direction: row; /* Align links horizontally */
        position: static; /* Remove absolute positioning */
        width: auto; /* Reset width */
        height: auto; /* Reset height */
        background-color: transparent; /* Remove background */
        overflow: visible; /* Reset overflow */
    }

    .nav-links.active {
        display: flex !important; /* Ensure visibility */
    }
}

@font-face {
    font-family: 'CallOfOpsDuty';
    src: url('fonts/CallOfOpsDuty.otf') format('opentype'); /* Path to your font file */
    font-weight: bold;
    font-style: normal;
}

/* Make contract address interactive */
#contract-address {
    cursor: pointer; /* Change cursor to pointer */
    transition: text-shadow 0.3s ease, color 0.3s ease; /* Smooth transitions */
}

/* Hover effect for glow */
#contract-address:hover {
    text-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700; /* Gold glow */
    color: #FFD700; /* Change text color to gold */
}

/* Click effect for feedback */
#contract-address:active {
    text-shadow: 0 0 15px #FF4500, 0 0 25px #FF4500; /* Intense red/orange glow */
    color: #FF4500; /* Change text color to red/orange */
}

#contract-address {
    opacity: 0; /* Initially hidden */
    transform: translateY(20px); /* Start with an offset */
    transition: opacity 0.6s ease, transform 0.6s ease; /* Smooth transition */
}

#contract-address.visible {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* No offset */
}

.how-to-buy-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Space between boxes */
    justify-content: center; /* Center the boxes */
    padding: 0 20px; /* Add horizontal padding for content */
    max-width: 1200px; /* Optional: Limit the width for better readability on larger screens */
    margin: 0 auto; /* Center the container */
}

.how-to-buy-box {
    flex: 1 1 calc(25% - 20px); /* Ensure four boxes fit in a row with gap */
    box-sizing: border-box; /* Include padding and border in size */
    border: 5px solid #333; /* Match the header background color */
    padding: 15px; /* Space inside each box */
    text-align: center; /* Center-align text */
    background-color: white; /* Box background color */
    color: black; /* Text color */
    font-size: 1rem;
    border-radius: 8px; /* Optional: Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add subtle shadow */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth hover effect */
    opacity: 0; /* Start with opacity at 0 for animation */
    transform: translateY(20px); /* Start with a slight offset for animation */
}

.how-to-buy-box.visible {
    opacity: 1; /* Full opacity when visible */
    transform: translateY(0); /* No offset when visible */
}

.how-to-buy-box:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

/* Adjust for smaller screens */
@media screen and (max-width: 768px) {
    .how-to-buy-box {
        flex: 1 1 calc(50% - 20px); /* Two boxes per row */
    }
}

@media screen and (max-width: 480px) {
    .how-to-buy-box {
        flex: 1 1 100%; /* One box per row */
    }
}

/* Scroll Reveal */
.how-to-buy-box {
    opacity: 0;
    transform: translateY(20px);
}

.how-to-buy-box.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Effect */
.how-to-buy-box:hover {
    transform: translateY(-5px); /* Slight rise on hover */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth hover effect */
}

/* Default State: Hidden */
.nav-links {
    height: 0;
    display: flex;
    flex-direction: column;
    background-color: #333;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    overflow: hidden;
    transition: height 0.3s ease-out; /* Smooth dropdown animation */
    z-index: 1000;
}

.nav-links.active {
    height: auto; /* Adjust to fit content */
}

/* Hamburger Icon */
.hamburger {
    display: none; /* Hidden by default for desktop */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1100; /* Make sure it's on top of other elements */
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: white; /* Color of the bars */
    border-radius: 5px;
    transition: all 0.3s ease; /* Smooth animations */
}

/* Show Hamburger on Mobile */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex; /* Show on mobile screens */
    }

    nav ul {
        display: none; /* Hide default menu on mobile */
    }
}

/* Ensure .nav-links are visible on desktop */
@media screen and (min-width: 769px) {
    .nav-links {
        display: flex !important; /* Ensure links are visible on desktop */
        flex-direction: row; /* Align links horizontally */
        position: static; /* Remove absolute positioning */
        width: auto; /* Reset width */
        height: auto; /* Reset height */
        background-color: transparent; /* Remove background */
        overflow: visible; /* Reset overflow */
    }

    .nav-links.active {
        display: flex !important; /* Ensure visibility */
    }
}

@font-face {
    font-family: 'CallOfOpsDuty';
    src: url('fonts/CallOfOpsDuty.otf') format('opentype'); /* Path to your font file */
    font-weight: Bold;
    font-style: normal;
}

/* Make contract address interactive */
#contract-address {
    cursor: pointer; /* Change cursor to pointer */
    transition: text-shadow 0.3s ease, color 0.3s ease; /* Smooth transitions */
}

/* Hover effect for glow */
#contract-address:hover {
    text-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700; /* Gold glow */
    color: #FFD700; /* Change text color to gold */
}

/* Click effect for feedback */
#contract-address:active {
    text-shadow: 0 0 15px #FF4500, 0 0 25px #FF4500; /* Intense red/orange glow */
    color: #FF4500; /* Change text color to red/orange */
}

#border911 {
    background-color: black;
    color: white;
    text-align: center;
    padding: 50px 20px;
    border-bottom: 10px solid #b8860b; /* Gold border */
}

#border911 h2 {
    font-family: 'Milkei', Arial, sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: khaki; /* Khaki green for the heading */
}

#border911 p {
    font-family: 'Milkei', Arial, sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0 auto 20px;
    max-width: 800px;
    color: white;
}

.donate-button-container {
    margin-top: 20px;
}

.donate-button {
    display: inline-block;
    background-color: #FF0000; /* Red background */
    color: white; /* White text for visibility */
    font-family: 'Milkei', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px; /* Add this to space out the letters */
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.donate-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Shadow effect */
    background-color: #CC0000; /* Darker red for hover */
    color: white; /* Text remains white */
    letter-spacing: 1px; /* Maintain the same spacing on hover */
}

@media screen and (min-width: 769px) {
    .donate-button {
        font-size: 1.4rem; /* or adjust as needed */
    }
}

/* Contract Address Section */
#contract {
    color: white;
    padding: 50px 20px;
    text-align: center;
    position: relative; /* Relative positioning for child elements */
    z-index: 1; /* Ensure it sits above the background */
    overflow: hidden; /* Ensure the Solana logo stays within the section borders */
}

/* Contract Address Section */
#contract {
    color: white;
    padding: 50px 20px;
    text-align: center;
    position: relative; /* Ensure child elements are positioned relative to this */
    z-index: 1; /* Ensure it sits above the logo */
    overflow: hidden; /* Prevent content overflow */
}

/* Contract Address Section */
#contract {
    color: white;
    padding: 50px 20px;
    text-align: center;
    position: relative; /* Ensure child elements are positioned relative to this */
    z-index: 1; /* Ensure it sits above the logo */
    overflow: hidden; /* Prevent the bouncing logo from leaving the section */
}

/* Contract Address Section */
#contract {
    color: white;
    padding: 50px 20px;
    text-align: center;
    position: relative; /* Anchor for child elements */
    z-index: 1; /* Ensure text stays above */
    overflow: hidden; /* Prevent the image from moving outside the section */
}

/* Contract Section */
#contract {
    color: white;
    padding: 50px 20px;
    text-align: center;
    position: relative; /* Anchor for absolute positioning */
    z-index: 1; /* Ensure text stays above */
    overflow: hidden; /* Prevent the image from escaping */
}

/* Solana Logo Container */
.solana-logo-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Full width of the section */
    height: 100%; /* Full height of the section */
    pointer-events: none; /* Disable interaction with the logo */
    z-index: 0; /* Place behind the text */
}

#contract {
    position: relative; /* Anchor the Solana image within the section */
    overflow: hidden; /* Prevent the image from escaping the section */
    background-color: black; /* Ensure the section is visually distinct */
    color: white; /* Text color for contrast */
}

.solana-logo {
    position: absolute; /* Allow the image to move freely within the section */
    top: 0;
    left: 0;
    width: 100px; /* Adjust the size as needed */
    height: auto; /* Maintain aspect ratio */
    opacity: 0.4; /* Make it semi-transparent */
    pointer-events: none; /* Prevent interaction with the image */
    z-index: 0; /* Place it behind the text */
}

#contract h2,
#contract p {
    position: relative;
    z-index: 1; /* Ensure the text stays above the image */
}

#contract h2 {
    font-family: 'Milkei', Arial, sans-serif; /* Use the same font as Border911 */
    font-weight: bold; /* Match the style */
    font-size: 2rem; /* Adjust the size */
    text-transform: uppercase; /* Keep it consistent */
    color: khaki; /* Same color as Border911 heading */
    letter-spacing: 1px; /* Optional: add spacing for a better look */
}

//* Optional: an animation to make the bubble "pulse" a little */
@keyframes bubbleAnimation {
  0%   { transform: scale(1);   }
  50%  { transform: scale(1.05); }
  100% { transform: scale(1);   }
}

/* --- Container --- */
#tokenomics {
  background-color: #111;
  padding: 50px 20px;
  border-bottom: 10px solid #b8860b; /* Gold border */
  color: #fff;
  text-align: center;
}

.tokenomics-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Heading matching handshake section (Milkei, 2rem, khaki, uppercase) --- */
.tokenomics-heading {
  font-family: 'Milkei', Arial, sans-serif;
  font-weight: bold;
  font-size: 2rem;
  text-transform: uppercase;
  color: khaki;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 30px;
}

/* --- Responsive Grid Layout --- */
.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* --- Cards with gradient & soft shadow --- */
.tokenomics-card {
  /* Subtle gradient background */
  background: linear-gradient(145deg, #2e2e2e, #383838);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 5px 5px 10px #1a1a1a, -5px -5px 10px #4e4e4e; /* Soft "neo" shadows */
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Lift on hover (like your How to Buy boxes) */
.tokenomics-card:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 16px #1a1a1a, -8px -8px 16px #4e4e4e;
}

/* Card Headings */
.tokenomics-card h3 {
  margin-top: 0;
  font-family: 'Milkei', Arial, sans-serif;
  font-size: 1.5rem;
  color: #FFD700; /* Gold subheading text */
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

/* Numeric values (1B, 800M, etc.) */
.tokenomics-value {
  font-size: 2rem;
  font-weight: bold;
  margin: 10px 0;
  color: #fff;
}

/* Supply Cards: stack or row (media query optional) */
.supply-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* If you want them in a row on bigger screens:
@media (min-width: 600px) {
  .supply-cards {
    flex-direction: row;
    justify-content: center;
  }
}
*/

/* Chart card can span columns if desired; keep as 1 for now */
.chart-card {
  grid-column: span 1;
}

/* --- Bubble Chart --- */
.distribution-chart {
  width: 220px;
  height: 220px;
  margin: 0 auto 20px;
  border-radius: 50%; /* Make the chart circular */
  background: conic-gradient(
    #4caf50 0% 80%, /* 80% green */
    #2196f3 80% 100% /* 20% blue */
  );
  position: relative;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2); /* Subtle glowing effect */
  animation: neonGlow 3s ease-in-out infinite; /* Glowing animation */
  transition: transform 0.3s, box-shadow 0.3s; /* Smooth hover effect */
}

/* Neon Glow Animation */
@keyframes neonGlow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
  }
}

/* Scale on hover */
.distribution-chart:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 16px rgba(0, 0, 0, 0.4);
}

/* Neon glow animation (subtle pulsing) */
@keyframes neonGlow {
  0%, 100% {
    box-shadow: 0 0 10px #fff, 0 0 20px #4caf50, 0 0 30px #2196f3;
  }
  50% {
    box-shadow: 0 0 10px #fff, 0 0 30px #2196f3, 0 0 60px #4caf50;
  }
}

/* --- Legend --- */
.distribution-legend {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 280px; 
  text-align: left;
}

.distribution-legend li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  color: #fff;
  font-size: 1rem;
}

/* Colored squares in legend */
.legend-color {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  border-radius: 3px;
}
.legend-color.green  { background-color: #4CAF50; }
.legend-color.blue   { background-color: #2196F3; }
.legend-color.orange { background-color: #FF5722; }

/* Icon styling (lock, fire) */
.legend-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  margin-left: 4px;
  vertical-align: middle;
}

/* Extra text for the monthly burn note, next to lock icon */
.burn-note {
  margin-left: 6px; 
  color: #FF6347;  /* "Tomato" color or anything you like */
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
}

/* --- "Locked & Burned Over 4 Years" Explainer --- */
.locked-explainer {
  margin-top: 15px;
  padding: 15px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
}

.locked-explainer h4 {
  margin-top: 0;
  font-family: 'Milkei', Arial, sans-serif;
  font-size: 1.2rem;
  color: #FFD700; /* Gold text for sub-subheading */
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.locked-explainer p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ddd;
}

/* --- Key Mechanisms --- */
.tokenomics-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left; /* or center if desired */
}

.tokenomics-list li {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.4;
}

/* --- Responsive bubble size on smaller screens --- */
@media (max-width: 600px) {
  .distribution-chart {
    width: 180px;
    height: 180px;
  }

/* Add these styles to your existing styles.css file */

/* Tokenomics Card Reveal Animation */
.tokenomics-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.tokenomics-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Distribution Chart Reveal Animation */
.distribution-chart {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.distribution-chart.visible {
    opacity: 1;
    transform: scale(1);
}

/* Locked Explainer Reveal Animation */
.locked-explainer {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.locked-explainer.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Supply Graph Styling */
.supply-graph {
  margin-top: 20px;
  padding: 20px;
  background-color: #f9f9f9; /* Light background for contrast */
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.supply-graph h4 {
  font-family: Arial, sans-serif;
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
}

.burn-chart {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 0 auto;
}

.burn-chart line {
  stroke: #000;
  stroke-width: 2px;
}

.burn-chart polyline {
  stroke: #FF4500;
  stroke-width: 3px;
  fill: none;
}

.burn-chart circle {
  fill: #FF4500;
  transition: transform 0.2s;
}

.burn-chart circle:hover {
  transform: scale(1.2);
  fill: #FF6347;
}

.burn-chart text {
  font-family: Arial, sans-serif;
  font-size: 10px;
  fill: #333;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .burn-chart {
    max-width: 100%;
  }
}