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

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Header Styling */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    width: 100%;
    color: white;
    overflow-x: auto;
}

header .logo {
    height: 50px;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

header nav ul::-webkit-scrollbar {
    display: none;
}

header nav ul li a {
    color: #A9A9A9;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

header nav ul li a:hover,
header nav ul li a:active {
    color: #FFD700;
}

@media (max-width: 768px) {
    header {
        padding: 10px 10px;
    }

    header nav ul {
        gap: 10px;
    }
}
/* Hero Banner Section */
.hero-banner {
    background-image: url('assets/hero-banner-test.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner .content {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.hero-banner .content h1 {
    font-size: 2.5rem;
    color: #333;
    margin: 0;
}

.hero-banner .content p {
    font-size: 1.2rem;
    color: #333;
    margin: 10px 0 0;
}

@media (max-width: 768px) {
    .hero-banner {
        background-position: 40% 50%;
        height: 80vh;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        background-position: 35% 50%;
        height: 75vh;
    }
}

/* Hero Section Content */
#hero {
    text-align: center;
    padding: 50px 20px;
}

#hero h1 {
    font-size: 2.5rem;
    color: #2E2E2E;
}

#hero p {
    font-size: 1.2rem;
    margin: 10px 0;
}

.contract-address {
    margin-top: 20px;
    font-size: 1rem;
    color: #555;
}

.contract-address code {
    font-family: 'Courier New', Courier, monospace;
    background: #f0f0f0;
    padding: 5px;
    border-radius: 5px;
}

.contract-address button,
#hero button {
    padding: 10px 20px;
    background: #2E2E2E;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.contract-address button:hover {
    background: #0056b3;
}

/* Section Styling */
section {
    padding: 40px 20px;
}

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

/* Tokenomics Section */
.tokenomics-overview {
    margin: 20px 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.tokenomics-list {
    list-style: none;
    padding: 0;
}

.tokenomics-list li {
    margin: 10px 0;
    font-size: 1rem;
}

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

/* Buy Steps Section */
.buy-steps {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.buy-steps li {
    margin-bottom: 20px;
    padding: 15px;
    border-left: 4px solid #2E2E2E;
    background: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.buy-steps li strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #2E2E2E;
}

.buy-steps li a {
    color: #2E2E2E;
    text-decoration: none;
    font-weight: bold;
}

.buy-steps li a:hover {
    text-decoration: underline;
}

/* Community Section */
.community-section {
    background-color: #333333;
    padding: 40px 20px;
    text-align: center;
    color: white;
    border-top: 5px solid #FFD700;
}

.community-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 8px rgba(255, 215, 0, 0.8);
}

.community-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.community-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    background-color: #1C1C1C;
    padding: 10px 20px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.community-link img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.community-link:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.4);
}

.telegram {
    background-color: #0088cc;
}

.twitter {
    background-color: #1DA1F2;
}

/* Story Section */
.story-section {
    background: linear-gradient(to bottom, #000000, #444444, #ffffff);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.story-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.story-intro {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
}

.story-epilogue {
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 20px;
}

p {
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .story-title {
        font-size: 2rem;
    }

    .story-content {
        padding: 20px;
    }
}

/* Meme Gallery Section */
.meme-gallery {
    padding: 40px 20px;
    background: #222;
    color: white;
    text-align: center;
}

.meme-gallery-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 8px rgba(255, 215, 0, 0.8);
}

.meme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    justify-content: center;
}

.meme-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.meme-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.4);
}
/* Overlay */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.overlay-content {
    position: relative;
    text-align: center;
}

.overlay img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
}

.overlay-buttons {
    margin-top: 10px;
}

.overlay-buttons button {
    margin: 5px;
    padding: 10px 20px;
    border: none;
    background: #FFD700;
    color: #333;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}

.overlay-buttons button:hover {
    background: #FFC107;
}

/* Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #FFD700;
    background: none;
    border: none;
    cursor: pointer;
}

.arrow.left {
    left: -20px;
}

.arrow.right {
    right: -20px;
}

.close-overlay {
    position: absolute;
    top: -20px;
    right: -20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #FFD700;
    cursor: pointer;
}

@media (max-width: 768px) {
    .arrow {
        top: 50%;
        font-size: 1.5rem;
    }

    .arrow.left {
        left: 10px;
    }

    .arrow.right {
        right: 10px;
    }

    .close-overlay {
        top: 10px;
        right: 10px;
    }

    .arrow,
    .close-overlay {
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        font-size: 1.5rem;
        color: #FFD700;
    }

    .arrow:hover,
    .close-overlay:hover {
        background: rgba(255, 255, 255, 0.3);
    }
}