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

:root {
    --green: #7CB518;
    --green-light: #9AE62B;
    --green-dark: #5A8A0E;
    --purple: #8B5CF6;
    --purple-dark: #6D28D9;
    --orange: #FF6B35;
    --pink: #EC4899;
    --yellow: #FBBF24;
}

body {
    font-family: 'Nunito', sans-serif;
    color: #fff;
    overflow-x: hidden;
}

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

h2 {
    font-family: 'Bangers', cursive;
    font-size: 4rem;
    text-align: center;
    color: #fff;
    text-shadow: 4px 4px 0 var(--purple), 6px 6px 0 rgba(0,0,0,0.3);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    transition: all 0.3s;
}

.navbar.scrolled {
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(20px);
    padding: 10px 40px;
}

.nav-logo img {
    height: 120px;
    filter: drop-shadow(0 0 15px rgba(124,181,24,0.6));
    transition: all 0.3s;
}

.nav-logo img:hover {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 0 25px rgba(124,181,24,0.9));
}

.nav-links {
    display: flex;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
    padding: 8px 15px;
    border-radius: 50px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2), inset 0 0 0 3px var(--green);
    animation: navPulse 3s ease-in-out infinite;
}

@keyframes navPulse {
    0%, 100% { box-shadow: 0 5px 25px rgba(0,0,0,0.2), inset 0 0 0 3px var(--green); }
    50% { box-shadow: 0 5px 35px rgba(124,181,24,0.4), inset 0 0 0 3px var(--purple); }
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 900;
    padding: 12px 22px;
    border-radius: 30px;
    transition: all 0.25s;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '💨';
    position: absolute;
    left: -30px;
    opacity: 0;
    transition: all 0.3s;
    font-size: 0.8rem;
}

.nav-links a:nth-child(1):hover { background: var(--green); color: #fff; }
.nav-links a:nth-child(2):hover { background: var(--purple); color: #fff; }
.nav-links a:nth-child(3):hover { background: var(--orange); color: #fff; }
.nav-links a:nth-child(4):hover { background: var(--pink); color: #fff; }

.nav-links a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.nav-links a:hover::before {
    left: 8px;
    opacity: 1;
}

.nav-btn {
    background: var(--purple);
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s;
    box-shadow: 0 5px 0 var(--purple-dark);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
}

.nav-btn::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--purple);
    border-radius: 50%;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 7px 0 var(--purple-dark);
}

/* Fart Cloud Button Shape */
.fart-btn {
    position: relative;
    padding: 18px 45px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    font-weight: 900;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fart-btn::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: inherit;
    border-radius: 50%;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
}

.fart-btn::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: inherit;
    border-radius: 50%;
    left: -18px;
    top: 30%;
}

/* ============ HERO SECTION ============ */
.hero {
    min-height: 100vh;
    background: url('images/hero.jpg') center center no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    padding: 100px 40px 60px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124,181,24,0.7) 0%, rgba(139,92,246,0.7) 100%);
}

/* Floating Clouds */
.cloud {
    position: absolute;
    font-size: 4rem;
    z-index: 2;
    animation: floatCloud 8s ease-in-out infinite, colorShift 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px currentColor);
}

.cloud-1 { top: 15%; left: 10%; animation-delay: 0s; }
.cloud-2 { top: 25%; right: 15%; animation-delay: 2s; font-size: 3rem; }
.cloud-3 { bottom: 30%; left: 5%; animation-delay: 4s; font-size: 6rem; }
.cloud-4 { bottom: 20%; right: 8%; animation-delay: 6s; font-size: 5rem; }

@keyframes floatCloud {
    0%, 100% { transform: translateY(0) translateX(0) scale(1) rotate(0deg); }
    25% { transform: translateY(-20px) translateX(30px) scale(1.1) rotate(5deg); }
    50% { transform: translateY(-40px) translateX(10px) scale(1.2) rotate(-5deg); }
    75% { transform: translateY(-20px) translateX(-20px) scale(1.1) rotate(3deg); }
}

@keyframes colorShift {
    0%, 100% { color: #7CB518; opacity: 0.7; }
    25% { color: #9AE62B; opacity: 0.9; }
    50% { color: #8B5CF6; opacity: 0.8; }
    75% { color: #EC4899; opacity: 0.7; }
}

.hero-container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-left {
    display: flex;
    justify-content: center;
}

.hero-character {
    max-width: 450px;
    width: 100%;
    animation: heroFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.5));
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-30px) rotate(3deg); }
}

.hero-right {
    text-align: left;
}

.hero-title-img {
    max-width: 650px;
    width: 100%;
    margin-top: 50px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 40px rgba(154, 230, 43, 0.9)) drop-shadow(8px 8px 0 var(--purple));
    animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(154, 230, 43, 0.8)) drop-shadow(6px 6px 0 var(--purple)); transform: scale(1); }
    50% { filter: drop-shadow(0 0 50px rgba(154, 230, 43, 1)) drop-shadow(8px 8px 0 var(--pink)); transform: scale(1.02); }
}

.hero-subtitle {
    font-family: 'Bangers', cursive;
    font-size: 2.2rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(139,92,246,0.8), 3px 3px 0 var(--purple);
    margin-bottom: 25px;
    text-align: left;
    background: rgba(0,0,0,0.4);
    display: inline-block;
    padding: 10px 25px;
    border-radius: 10px;
}

.hero-desc {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    background: rgba(0,0,0,0.3);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid var(--green);
}

.hero-socials {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--purple);
    border: 3px solid var(--purple-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 900;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-icon img {
    width: 24px;
    height: 24px;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    background: var(--green);
    border-color: var(--green-dark);
}

.social-icon.community-icon {
    background: var(--green);
    border-color: var(--green-dark);
}

.social-icon.community-icon:hover {
    background: var(--pink);
    border-color: var(--purple);
}

.hero-ca {
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    border: 2px solid var(--green);
    border-radius: 15px;
    padding: 18px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 100%;
}

.ca-label {
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    color: var(--yellow);
    text-shadow: 0 0 15px rgba(251,191,36,0.6), 2px 2px 0 var(--orange);
    letter-spacing: 2px;
}

.ca-row {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

#ca {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: #fff;
    word-break: break-all;
    flex: 1;
    background: rgba(0,0,0,0.3);
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.copy-icon-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s;
    padding: 5px;
}

.copy-icon-btn:hover {
    transform: scale(1.2);
}

/* ============ ABOUT SECTION ============ */
.about {
    padding: 120px 0;
    background: linear-gradient(180deg, #8B5CF6 0%, #EC4899 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 15px 15px 0 var(--green), 0 30px 60px rgba(0,0,0,0.3);
    transform: rotate(-3deg);
    transition: all 0.3s;
}

.about-image img:hover {
    transform: rotate(0) scale(1.03);
}

.about-text h2 {
    text-align: left;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.25rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text strong {
    color: var(--yellow);
}

.about-text .highlight {
    background: linear-gradient(145deg, var(--green-light) 0%, var(--green) 100%);
    padding: 30px 40px;
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-top: 30px;
    margin-left: 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25), inset 0 2px 0 rgba(255,255,255,0.3);
    position: relative;
    border-radius: 30px;
    display: block;
    text-align: center;
    border: 3px solid rgba(255,255,255,0.2);
}

.about-text .highlight::before {
    content: '💨';
    position: absolute;
    font-size: 2.5rem;
    left: -15px;
    top: -15px;
    filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.2));
}

.about-text .highlight::after {
    content: '💨';
    position: absolute;
    font-size: 1.8rem;
    right: -10px;
    bottom: -10px;
    filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.2));
}

/* ============ CREATOR SECTION ============ */
.creator {
    padding: 120px 0;
    background: url('images/photo_2026-01-23_20-39-51.jpg') center center no-repeat;
    background-size: cover;
    text-align: center;
    position: relative;
}

.creator::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(236,72,153,0.85) 0%, rgba(26,26,46,0.95) 100%);
}

.creator > .container {
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    background: var(--green);
    color: #fff;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.creator-featured-img {
    display: block;
    max-width: 500px;
    width: 90%;
    margin: 0 auto 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.4), 0 0 0 5px rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.creator-featured-img:hover {
    transform: scale(1.02);
}

.creator-narrative {
    max-width: 800px;
    margin: 0 auto 60px;
}

.narrative-lead {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--yellow);
}

.creator-narrative p {
    font-size: 1.3rem;
    line-height: 1.8;
}

/* Fee Split Bar Chart */
.fee-heading {
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    color: var(--yellow);
    text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.fee-split-bar {
    display: flex;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
}

.fee-bar-adam {
    width: 75%;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    padding: 30px 25px;
    position: relative;
}

.fee-bar-adam::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(255,255,255,0.3);
}

.fee-bar-team {
    width: 25%;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    padding: 30px 20px;
}

.fee-bar-content {
    text-align: center;
}

.fee-bar-content h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0.95;
}

.fee-percent {
    font-family: 'Bangers', cursive;
    font-size: 3.5rem;
    color: #fff;
    text-shadow: 3px 3px 0 rgba(0,0,0,0.3);
    line-height: 1;
    margin-bottom: 10px;
}

.fee-bar-adam .fee-percent {
    font-size: 4.5rem;
}

.fee-desc {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

.fee-bar-team .fee-desc {
    font-size: 0.8rem;
}

/* Bags.fm */
.bags-live {
    margin: 60px 0;
    padding: 40px;
    background: rgba(0,0,0,0.4);
    border-radius: 25px;
    border: 3px solid var(--green);
    box-shadow: 0 0 40px rgba(124,181,24,0.2);
}

.bags-live h3 {
    font-family: 'Bangers', cursive;
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--green-light);
    text-shadow: 3px 3px 0 rgba(0,0,0,0.4);
}

.lifetime-fees-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    padding: 30px 50px;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border: 3px solid rgba(255,255,255,0.2);
}

.fees-icon {
    font-size: 3.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.fees-data {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.fees-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.fees-value {
    font-family: 'Bangers', cursive;
    font-size: 2.8rem;
    color: var(--yellow);
    text-shadow: 3px 3px 0 rgba(0,0,0,0.3);
}

.fees-value.loaded {
    animation: popIn 0.5s ease-out;
}

@keyframes popIn {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.bags-embed-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 25px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 2px solid rgba(255,255,255,0.1);
}

.bags-embed {
    width: 100%;
    height: 600px;
    border: none;
    background: #0a0a0f;
}

.bags-cta {
    display: inline-block;
    padding: 15px 35px;
    background: var(--green);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 5px 0 var(--green-dark);
}

.bags-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 0 var(--green-dark);
    background: var(--green-light);
}

/* Creator Message */
.creator-message {
    max-width: 800px;
    margin: 0 auto 50px;
}

.creator-message p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.creator-message .highlight-text {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--yellow);
}

.creator-message .tagline-text {
    font-family: 'Bangers', cursive;
    font-size: 2.8rem;
    color: var(--green-light);
    text-shadow: 3px 3px 0 rgba(0,0,0,0.3);
    margin-top: 30px;
}

.creator-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.point {
    background: rgba(124,181,24,0.2);
    border: 2px solid var(--green);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    transition: all 0.2s;
}

.point:hover {
    background: var(--green);
    transform: translateY(-3px);
}

.point-icon {
    background: var(--green);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

/* ============ TOKENOMICS ============ */
.tokenomics {
    padding: 120px 0;
    background: linear-gradient(180deg, #1a1a2e 0%, var(--green-dark) 100%);
    text-align: center;
}

.section-sub {
    font-size: 1.5rem;
    margin-bottom: 60px;
    opacity: 0.9;
}

.token-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.token-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px 20px;
    transition: all 0.3s;
}

.token-card:hover {
    transform: translateY(-10px);
    border-color: var(--green);
    box-shadow: 0 20px 50px rgba(124,181,24,0.3);
}

.token-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.token-value {
    font-family: 'Bangers', cursive;
    font-size: 3rem;
    color: var(--yellow);
    text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
}

.token-label {
    font-weight: 800;
    margin-top: 10px;
    font-size: 1.1rem;
}

/* ============ GALLERY ============ */
.gallery {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
    overflow: hidden;
}

.gallery h2 {
    margin-bottom: 15px;
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 50px;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 15px 0;
}

.marquee {
    display: flex;
    width: max-content;
}

.marquee-content {
    display: flex;
    gap: 20px;
    padding-right: 20px;
}

.marquee-left {
    animation: scrollLeft 35s linear infinite;
}

.marquee-right {
    animation: scrollRight 35s linear infinite;
}

.marquee:hover {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.marquee-content img {
    width: 300px;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 4px solid rgba(255,255,255,0.2);
}

.marquee-content img:hover {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
    border-color: var(--yellow);
    z-index: 10;
}

/* ============ CTA ============ */
.cta {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
    text-align: center;
}

.cta-img {
    max-width: 350px;
    margin-bottom: 30px;
}

.cta > .container > p {
    font-size: 1.4rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 900;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    text-transform: uppercase;
}

.btn-dark {
    background: #000;
    color: #fff;
    box-shadow: 0 6px 0 #333;
}

.btn-dark:hover {
    transform: translateY(-3px);
}

.btn-purple {
    background: var(--purple);
    color: #fff;
    box-shadow: 0 6px 0 var(--purple-dark);
}

.btn-purple:hover {
    transform: translateY(-3px);
}

.btn-green {
    background: var(--green);
    color: #fff;
    box-shadow: 0 6px 0 var(--green-dark);
}

.btn-green:hover {
    transform: translateY(-3px);
    background: var(--green-light);
}

/* ============ FOOTER ============ */
footer {
    padding: 80px 30px;
    background: #0d0d0d;
    text-align: center;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 30px;
    opacity: 0.9;
}

footer p {
    color: #666;
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto 15px;
}

.disclaimer {
    font-size: 0.85rem !important;
    color: #444 !important;
}

/* ============ MOBILE MENU ============ */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 45px;
    height: 45px;
    background: var(--green);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    transition: all 0.3s;
    box-shadow: 0 4px 0 var(--green-dark);
}

.mobile-menu-btn:hover {
    background: var(--green-light);
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-menu-btn.open .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.open .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.open .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.98) 0%, rgba(30,30,50,0.98) 100%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-family: 'Bangers', cursive;
    font-size: 2.5rem;
    color: #fff;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 15px;
    transition: all 0.3s;
    letter-spacing: 3px;
}

.mobile-menu a:nth-child(1):hover { background: var(--green); }
.mobile-menu a:nth-child(2):hover { background: var(--purple); }
.mobile-menu a:nth-child(3):hover { background: var(--orange); }
.mobile-menu a:nth-child(4):hover { background: var(--pink); }

.mobile-buy-btn {
    background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%) !important;
    margin-top: 20px;
    box-shadow: 0 8px 0 var(--purple-dark), 0 15px 40px rgba(139,92,246,0.4);
}

.mobile-buy-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 0 var(--purple-dark), 0 20px 50px rgba(139,92,246,0.5);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 20px; }
    .hero-right { text-align: center; }
    .hero-title-img { max-width: 550px; }
    .hero-socials { justify-content: center; }
    .hero-character { max-width: 320px; }
    .hero-subtitle { text-align: center; }
    .about-grid { grid-template-columns: 1fr; }
    .about-image img { max-width: 350px; margin: 0 auto; display: block; }
    .about-text h2 { text-align: center; }
    .fee-split-bar { border-radius: 15px; }
    .fee-bar-adam { padding: 25px 15px; }
    .fee-bar-team { padding: 25px 10px; }
    .fee-bar-content h3 { font-size: 0.7rem; letter-spacing: 1px; }
    .fee-percent { font-size: 2.5rem; }
    .fee-bar-adam .fee-percent { font-size: 3rem; }
    .fee-desc { font-size: 0.75rem; }
    .fee-bar-team .fee-desc { font-size: 0.65rem; }
    .nav-links { display: none; }
    .nav-btn { display: none; }
    .nav-logo img { height: 100px; }
    .mobile-menu-btn { display: flex; }
    .mobile-menu { display: flex; }
}

@media (max-width: 768px) {
    h2 { font-size: 3rem; }
    .navbar { padding: 10px 20px; }
    .nav-logo img { height: 60px; }
    .nav-btn { padding: 12px 20px; font-size: 0.9rem; }
    .hero { padding: 100px 20px 40px; min-height: auto; }
    .hero-container { gap: 15px; }
    .hero-character { max-width: 280px; margin-bottom: 0; }
    .hero-title-img { max-width: 95%; margin-top: 0; margin-bottom: 15px; }
    .hero-subtitle { font-size: 1.4rem; padding: 8px 15px; margin-bottom: 15px; }
    .hero-desc { font-size: 1rem; padding: 15px; margin-bottom: 20px; }
    .hero-socials { margin-bottom: 20px; }
    .token-grid { grid-template-columns: repeat(2, 1fr); }
    .creator-featured-img { max-width: 400px; margin-bottom: 30px; }
    .marquee-content img { width: 250px; height: 180px; }
}

@media (max-width: 480px) {
    h2 { font-size: 2.5rem; }
    .hero { padding: 90px 15px 30px; }
    .hero-container { gap: 10px; }
    .hero-character { max-width: 220px; }
    .hero-title-img { max-width: 90%; margin-bottom: 10px; }
    .hero-subtitle { font-size: 1.2rem; padding: 6px 12px; margin-bottom: 10px; }
    .hero-desc { font-size: 0.95rem; padding: 12px; margin-bottom: 15px; line-height: 1.6; }
    .hero-socials { margin-bottom: 15px; gap: 10px; }
    .social-icon { width: 45px; height: 45px; }
    .hero-ca { padding: 12px 15px; gap: 8px; }
    .ca-label { font-size: 1.4rem; }
    #ca { font-size: 0.65rem; padding: 8px 10px; }
    .token-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
    .token-card { padding: 25px 15px; }
    .token-value { font-size: 2.2rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .nav-logo img { height: 50px; }
    .creator-featured-img { max-width: 100%; border-radius: 15px; margin-bottom: 25px; }
    .bags-live { padding: 25px 15px; }
    .bags-live h3 { font-size: 1.8rem; }
    .bags-embed { height: 500px; }
    .bags-cta { padding: 12px 25px; font-size: 0.9rem; }
    .marquee-content img { width: 200px; height: 150px; border-radius: 15px; }
    .gallery-subtitle { font-size: 1rem; margin-bottom: 30px; }
    .about-text .highlight { padding: 25px 20px; font-size: 1rem; }
    .about-text .highlight::before { font-size: 2rem; left: -10px; top: -10px; }
    .about-text .highlight::after { font-size: 1.4rem; right: -5px; bottom: -5px; }
    .fee-split-bar { border-radius: 12px; }
    .fee-bar-adam { padding: 20px 10px; }
    .fee-bar-team { padding: 20px 8px; }
    .fee-bar-content h3 { font-size: 0.6rem; letter-spacing: 0.5px; margin-bottom: 5px; }
    .fee-percent { font-size: 2rem; margin-bottom: 5px; }
    .fee-bar-adam .fee-percent { font-size: 2.5rem; }
    .fee-desc { font-size: 0.65rem; line-height: 1.3; }
    .fee-bar-team .fee-desc { font-size: 0.55rem; }
}
