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

@font-face {
    font-family: 'GentyDemo';
    src: url('public/GentyDemo-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary: #00b84f;
    /* Green Bull Market */
    --secondary: #222222;
    --text-color: #f0f0f0;
    --background: #0f1115;
    --font-head: 'GentyDemo', cursive;
    --font-body: 'Open Sans', sans-serif;
    --accent: #5eff45;
}

body {
    background-color: var(--background);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-head);
    letter-spacing: 0px;
    text-transform: lowercase;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: rgba(15, 17, 21, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--primary);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px var(--primary));
}

.logo span {
    font-family: var(--font-head);
    font-size: 1.8rem;
    color: var(--primary);
    text-shadow: 2px 2px 0px #000;
}

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

.nav-links a {
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.socials {
    display: flex;
    gap: 15px;
}

.socials img {
    width: 25px;
    height: 25px;
    transition: transform 0.3s ease;
}

.socials a:hover img {
    transform: scale(1.2) translateY(-2px);
    filter: drop-shadow(0 0 8px var(--primary));
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    background: rgba(15, 17, 21, 0.95);
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    z-index: 999;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-size: 1.5rem;
    font-family: var(--font-head);
    color: white;
}

/* Hero Section */
.hero {
    height: 100vh;
    padding-top: 76px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-split {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
}

.hero-text {
    flex: 1;
    padding: 0 50px;
    z-index: 10;
}

.hero-text h1 {
    font-size: 6rem;
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 4px 4px 0px #000;
}

.hero-text .highlight {
    color: var(--primary);
}

.hero-text .subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    max-width: 500px;
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 35px;
    font-family: var(--font-head);
    font-size: 1.5rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 4px 4px 0px #000;
    text-transform: lowercase;
    letter-spacing: 0;
}

.btn:active {
    box-shadow: 0px 0px 0px #000;
    transform: translate(4px, 4px);
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent);
}

.btn-secondary {
    background-color: white;
    color: #000;
}

.btn-secondary:hover {
    background-color: #ddd;
}

.hero-video-container {
    flex: 1;
    height: 100%;
    position: relative;
    overflow: hidden;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    box-shadow: -10px 0 20px rgba(0, 184, 79, 0.3);
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.video-overlay-text {
    position: absolute;
    bottom: 40px;
    right: 40px;
    font-family: var(--font-head);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    transform: rotate(-5deg);
}

/* Marquee */
.marquee-container {
    background: var(--primary);
    overflow: hidden;
    position: relative;
    padding: 15px 0;
    font-family: var(--font-head);
    font-size: 2rem;
    color: #fff;
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
    display: flex;
    text-transform: lowercase;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
}

.marquee-content span {
    margin: 0 50px;
    text-shadow: 2px 2px 0px #000;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Sections */
.section {
    padding: 100px 20px;
}

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

.text-center {
    text-align: center;
}

h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--primary);
    text-shadow: 2px 2px 0px #000;
}

.subtitle-small {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ccc;
}

/* About Section */
.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    text-align: center;
}

.floating-img {
    max-width: 100%;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.about-content {
    flex: 1;
}

.about-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Split Video Section */
.split-video-section {
    padding: 0;
    /* Full edge */
}

.split-wrapper {
    display: flex;
    min-height: 60vh;
}

.reverse .split-wrapper {
    flex-direction: row-reverse;
}

.half {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    position: relative;
}

.split-video {
    padding: 0;
}

.cover-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-box-green {
    background: var(--primary);
    color: #111;
}

.text-box-green h2 {
    color: #111;
    text-shadow: none;
}

.text-box-green p {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.text-box-dark {
    background: #111;
    color: #fff;
}

.text-box-dark p {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.dec-img {
    max-width: 250px;
    margin-top: 30px;
}

.mumu-shooting {
    position: absolute;
    bottom: -10px;
    right: 10%;
    max-width: 300px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.spin-img {
    animation: spin 10s linear infinite;
    filter: drop-shadow(0 0 15px var(--primary));
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Tokenomics Section */
.token-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.stat-box {
    background: #181c22;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    min-width: 250px;
    border: 3px solid #2a2e35;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.stat-box h3 {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 10px;
    text-shadow: 2px 2px 0px #000;
}

.stat-box p {
    font-size: 1.2rem;
    font-family: var(--font-head);
    letter-spacing: 1px;
}

.ca-container {
    background: #181c22;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 3px dashed var(--primary);
}

.ca-container p {
    font-family: var(--font-head);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.ca-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.ca-box span {
    background: #000;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: monospace;
    font-size: 1.2rem;
    word-break: break-all;
}

.copy-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-family: var(--font-head);
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s;
}

.copy-btn:hover {
    background: var(--accent);
}

/* How to buy Section */
.htb-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.htb-step {
    background: #181c22;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    border-top: 5px solid var(--primary);
}

.step-num {
    background: var(--primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 2rem;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

.htb-step h3 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

/* Footer */
footer {
    background: #0a0b0e;
    padding: 60px 20px 30px;
    border-top: 3px solid var(--primary);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    height: 50px;
}

.disclaimer {
    max-width: 600px;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    margin-top: 20px;
}

.copyright {
    color: #555;
    margin-top: 10px;
}

/* Know Your Meme Section */
.kym-section {
    background: #0a0b0e;
    border-top: 3px solid #2a2e35;
    border-bottom: 3px solid #2a2e35;
}

.kym-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.kym-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #181c22;
    border: 2px solid #2a2e35;
    border-radius: 50px;
    padding: 10px 20px;
    transition: border-color 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: #ccc;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kym-badge:hover {
    border-color: var(--primary);
    box-shadow: 0 0 18px rgba(0, 184, 79, 0.35);
    color: var(--primary);
}

.kym-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.kym-intro {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 50px;
    max-width: 720px;
}

.kym-lore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.kym-lore-card {
    background: #181c22;
    border: 2px solid #2a2e35;
    border-radius: 16px;
    padding: 30px 25px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.kym-lore-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(0, 184, 79, 0.2);
}

.kym-lore-icon {
    font-size: 2.8rem;
    margin-bottom: 14px;
    line-height: 1;
}

.kym-lore-card h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
    text-shadow: 1px 1px 0 #000;
}

.kym-lore-card p {
    font-size: 1rem;
    color: #bbb;
    line-height: 1.65;
}

.kym-lore-card p strong {
    color: var(--accent);
}

.kym-cta {
    text-align: center;
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 992px) {
    .hero-split {
        flex-direction: column-reverse;
    }

    .hero-video-container {
        width: 100%;
        clip-path: none;
        height: 40vh;
        flex: none;
    }

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

    .hero-text h1 {
        font-size: 4rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-container {
        flex-direction: column;
    }

    .split-wrapper {
        flex-direction: column;
    }

    .reverse .split-wrapper {
        flex-direction: column;
    }

    .half {
        padding: 40px 20px;
    }

    .split-video {
        height: 300px;
    }

    .mumu-shooting {
        position: relative;
        right: auto;
        bottom: auto;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .socials:not(.mobile-socials) {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 1.2rem;
    }

    h2 {
        font-size: 2.5rem;
    }
}