/* ==================== FONTS (ALL LOCAL) ==================== */
@font-face {
    font-family: 'oswald';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/oswald-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'oswald';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/oswald-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'oswald';
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/oswald-latin.woff2') format('woff2');
}
@font-face {
    font-family: 'oswald-medium';
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/oswald-medium-700.woff2') format('woff2');
}
@font-face {
    font-family: 'oswald-medium';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/oswald-medium-400.woff2') format('woff2');
}
@font-face {
    font-family: 'avenir';
    font-weight: 300;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/avenir-light-w05.woff2') format('woff2');
}
@font-face {
    font-family: 'avenir';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/avenir-light-w01.woff2') format('woff2');
}
@font-face {
    font-family: 'montserrat';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/montserrat-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'montserrat';
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/montserrat-bold.woff2') format('woff2');
}

/* ==================== RESET & VARIABLES ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #0A1D58;
    --color-gold: #EFB810;
    --color-blue: #2957F4;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-dark-bg: #0B1223;
    --font-heading: 'oswald', 'oswald-medium', 'Oswald', sans-serif;
    --font-body: 'avenir', 'Avenir LT W01 35 Light', 'Segoe UI', sans-serif;
    --font-montserrat: 'montserrat', 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--color-white);
    font-size: 16px;
    font-weight: 300;
}

a {
    color: #000000;
    text-decoration: none;
    transition: opacity 0.2s;
}
a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==================== SKIP LINK ==================== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-blue);
    color: var(--color-white);
    padding: 8px 16px;
    z-index: 1000;
    font-size: 14px;
    text-decoration: none;
}
.skip-link:focus {
    top: 0;
}

/* ==================== HEADER ==================== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    height: 215px;
}

.header-inner {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0;
    position: relative;
    height: 100%;
}

.header-left {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    padding-top: 44px;
}

.header-logo {
    width: 64px;
    height: 64px;
    border-radius: 0;
    display: block;
}

.header-brand {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 4px;
}

.header-brand-name {
    font-family: 'oswald-medium', 'oswald', var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-white);
    text-decoration: none;
    letter-spacing: normal;
    line-height: 1.41;
}
.header-brand-name:hover {
    opacity: 1;
    color: var(--color-white);
}

.header-brand-sub {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-white);
    text-decoration: none;
    line-height: 1.875;
}
.header-brand-sub:hover {
    opacity: 1;
}

.header-social {
    display: flex;
    gap: 6px;
    margin-top: 2px;
}

.header-social a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.header-social img {
    width: 20px;
    height: 20px;
    opacity: 0.9;
    transition: opacity 0.3s;
}
.header-social a:hover img {
    opacity: 1;
}

.header-right {
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 41px;
}

/* Mobile-only social icons — hidden on desktop */
.header-social-mobile {
    display: none;
}

/* ==================== LANGUAGE SELECTOR ==================== */
.lang-selector {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.lang-selector-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s;
}
.lang-selector-btn:hover {
    background: rgba(255,255,255,0.1);
}

.lang-flag {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: block;
}

.lang-arrow {
    font-size: 14px;
    margin-left: 2px;
    display: inline-block;
    transform: rotate(90deg);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    min-width: 160px;
    overflow: hidden;
    z-index: 200;
}
.lang-dropdown.open {
    display: block;
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-family: var(--font-body);
    transition: background 0.15s;
}
.lang-dropdown a:hover {
    background: #f0f0f0;
    opacity: 1;
}
.lang-dropdown a img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
}

/* ==================== HERO ==================== */
.hero {
    position: relative;
    width: 100%;
    height: 938px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Hero cover image — mobile only, hidden on desktop */
.hero-cover {
    display: none;
}

.hero-content {
    position: absolute;
    z-index: 3;
    text-align: left;
    width: 940px;
    left: 50%;
    transform: translateX(-50%);
    top: 552px;
}

.hero h1 {
    font-family: 'oswald-medium', 'oswald', var(--font-heading);
    font-size: 68px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: normal;
    text-shadow: none;
}

.hero-subtitle {
    font-family: 'oswald-medium', 'oswald', var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.35;
    text-shadow: none;
    margin-bottom: 35px;
}

.hero-btn-wrap {
    text-align: center;
}

.btn-pancakeswap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 185px;
    height: 45px;
    padding: 0;
    background: linear-gradient(rgb(0, 0, 0) 69%, rgb(239, 184, 16) 84%);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 20px;
    transition: 0.2s;
    border: none;
    letter-spacing: 2px;
    cursor: pointer;
}
.btn-pancakeswap:hover {
    background: linear-gradient(rgb(0, 0, 0) 50%, rgb(239, 184, 16) 75%);
    color: var(--color-white);
    opacity: 1;
}

/* ==================== SECTIONS ==================== */
.section {
    width: 100%;
    padding: 60px 20px;
}

.section-inner {
    max-width: 980px;
    margin: 0 auto;
}

/* ==================== TOKENOMICS ==================== */
.tokenomics {
    background: var(--color-white);
    padding-top: 50px;
    padding-bottom: 30px;
}

.section-title {
    font-family: 'oswald-medium', 'oswald', var(--font-heading);
    font-size: 50px;
    font-weight: 400;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 35px;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

.subsection-title {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 12px;
    line-height: 1.375;
    letter-spacing: normal;
}

.token-block {
    margin-bottom: 28px;
}

.token-block p,
.token-block li {
    font-size: 20px;
    line-height: 1.75;
    color: #333;
}

.token-details {
    list-style: none;
    padding: 0;
}

.token-details li {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
}

.token-details li strong {
    font-weight: 700;
}

.token-bullet-list {
    list-style: disc;
    padding-left: 25px;
    margin: 0;
}

.token-bullet-list li {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    margin-bottom: 4px;
}

.token-bullet-list li strong {
    font-weight: 700;
}

.contract-address {
    font-family: var(--font-body);
    font-size: 18px;
    color: #000000;
    word-break: break-all;
    text-decoration: underline;
}

.proof-links {
    font-size: 15px;
    line-height: 1.85;
}

.proof-links a {
    word-break: break-all;
    text-decoration: underline;
}

/* ==================== LIQUIDITY POOL IMAGE ==================== */
.liquidity-pool-section {
    background: var(--color-white);
    text-align: center;
    padding: 30px 20px 40px;
}

.liquidity-pool-section img {
    max-width: 568px;
    width: 100%;
    height: auto;
}

/* ==================== WHY USDC ==================== */
.why-usdc {
    background: var(--color-white);
    padding: 50px 20px 60px;
}

.why-usdc .section-inner {
    max-width: 980px;
}

.why-usdc-title {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 22px;
    line-height: 1.35;
}

.why-usdc p {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    margin-bottom: 16px;
}

.why-usdc strong {
    font-weight: 700;
}

/* ==================== FULL WIDTH IMAGE SECTIONS ==================== */
.full-image-section {
    width: 100%;
    position: relative;
    line-height: 0;
}

.full-image-section img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==================== INITIAL LIQUIDITY ==================== */
.initial-liquidity {
    background: var(--color-white);
    padding: 50px 20px 60px;
}

.initial-liquidity .section-inner {
    max-width: 980px;
}

.initial-liquidity h2 {
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 400;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 10px;
}

.initial-liquidity h3 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 18px;
}

.initial-liquidity h3.initial-liquidity-sub {
    font-size: 16px;
    margin-top: 18px;
    margin-bottom: 2px;
}

.initial-liquidity p {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    margin-bottom: 16px;
}

.initial-liquidity p.no-spacing {
    margin-top: 0;
    margin-bottom: 0;
}

.initial-liquidity ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 16px;
}

.initial-liquidity li {
    font-size: 16px;
    line-height: 1.85;
    padding-left: 20px;
    position: relative;
}
.initial-liquidity li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: #333;
}

.initial-liquidity strong {
    font-weight: 700;
}

/* ==================== SNUPY INFO (Split 2-column) ==================== */
.snupy-info {
    background: rgb(3, 15, 56);
    padding: 0;
    color: #333;
}

.snupy-info-grid {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.snupy-info-left {
    text-align: center;
    background: var(--color-white);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.snupy-info-left img.logo-grande {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    margin-bottom: 18px;
}

.snupy-info-name {
    font-family: 'oswald-medium', 'oswald', var(--font-heading);
    font-size: 40px;
    font-weight: 400;
    color: var(--color-gold);
    margin-bottom: 10px;
    margin-top: 14px;
    line-height: 1.3;
}

.ipr-text {
    font-size: 15px;
    color: #333;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 4px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
}

.ipr-text strong {
    font-weight: 700;
}

.snupy-info-right {
    background: var(--color-white);
    padding: 60px 40px;
}

.snupy-info-right h3 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 14px;
    letter-spacing: normal;
}

.snupy-info-right h4 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 0;
    margin-top: 22px;
}

.snupy-info-right p {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    margin-bottom: 12px;
}

.snupy-info-right ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 14px;
}

.snupy-info-right li {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    margin-bottom: 4px;
}

.snupy-info-right strong {
    font-weight: 700;
}

/* ==================== IPR SECTION ==================== */
.ipr-section {
    background: var(--color-white);
    padding: 50px 20px 60px;
}

.ipr-section .section-inner {
    max-width: 980px;
}

.ipr-section h2 {
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 400;
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 25px;
}

.ipr-section p {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    margin-bottom: 14px;
}

.ipr-list {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
}

.ipr-list li {
    font-size: 16px;
    line-height: 1.85;
    color: #333;
}

.official-links {
    margin-top: 22px;
}

.official-links h3 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 14px;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.official-links p {
    font-size: 16px;
    line-height: 1.85;
}

/* ==================== COMMUNITY SECTION ==================== */
.community-section {
    background: var(--color-white);
    padding: 50px 20px 60px;
}

.community-section .section-inner {
    max-width: 980px;
}

.community-section h2 {
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 400;
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 22px;
}

.community-section h3 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 0;
    margin-top: 22px;
}

.community-section p {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    margin-bottom: 12px;
}

.community-section ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 14px;
}

.community-section li {
    font-size: 16px;
    line-height: 1.85;
}

.community-section strong {
    font-weight: 700;
}

.download-link {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.disclaimer-quote {
    font-size: 16px;
    color: #333;
    margin-top: 28px;
}

/* ==================== FOOTER ==================== */
.footer-spacer {
    background: var(--color-black);
    height: 6px;
    width: 100%;
    border-top: 3px solid var(--color-primary);
}

.footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: 30px 20px 40px;
    text-align: center;
}

.footer-inner {
    max-width: 980px;
    margin: 0 auto;
}

.footer-quote {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--color-white);
    margin-bottom: 18px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 22px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.footer-social img {
    width: 20px;
    height: 20px;
    opacity: 0.9;
    transition: opacity 0.3s;
}
.footer-social a:hover img {
    opacity: 1;
}

.footer h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 10px;
}

.footer-legal {
    font-size: 15px;
    line-height: 1.75;
    color: var(--color-white);
    text-align: left;
    margin-bottom: 22px;
}

.footer-seo-title {
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--color-white);
    margin-bottom: 6px;
    text-align: center;
}

.footer-seo {
    font-size: 15px;
    line-height: 1.75;
    color: var(--color-white);
    font-weight: 700;
    text-align: left;
    margin-bottom: 22px;
}

.footer-privacy {
    margin-bottom: 12px;
}

.footer-privacy a {
    color: var(--color-white);
    text-decoration: underline;
    font-family: 'oswald-medium', 'oswald', var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
}

.footer-copyright {
    font-size: 15px;
    color: var(--color-white);
}

/* ==================== LINK COLOR OVERRIDES ==================== */
.snupy-info-right a {
    color: #000000;
}

.footer a {
    color: var(--color-white);
}

.official-links a {
    color: #000000;
    text-decoration: underline;
}

.cookie-text a {
    color: var(--color-blue);
    text-decoration: underline;
}

.privacy-content a {
    color: #000000;
    text-decoration: underline;
}

/* ==================== IMAGE CAROUSEL ==================== */
.gallery-carousel {
    background: var(--color-black);
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-track {
    display: flex;
    gap: 20px;
    animation: gallery-scroll 30s linear infinite;
    width: max-content;
}

.gallery-track:hover {
    animation-play-state: paused;
}

.gallery-item {
    flex-shrink: 0;
    width: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s;
}

.gallery-item:nth-child(odd) {
    transform: rotate(-4deg);
}

.gallery-item:nth-child(even) {
    transform: rotate(3deg);
}

.gallery-item:nth-child(3n) {
    transform: rotate(-6deg) translateY(-20px);
}

.gallery-item:nth-child(3n+1) {
    transform: rotate(5deg) translateY(15px);
}

.gallery-item:hover {
    transform: rotate(0deg) scale(1.05) !important;
    z-index: 2;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

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

@media (max-width: 768px) {
    .gallery-carousel {
        min-height: 350px;
        padding: 40px 0;
    }
    .gallery-item {
        width: 240px;
    }
    .gallery-item img {
        height: 160px;
    }
}

/* ==================== COOKIE BANNER (utilityai style) ==================== */
.cookie-footer {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}
.cookie-footer.hidden {
    display: none;
}

.cookie-footer-inner {
    background-color: #000000;
    padding: 40px 48px;
    color: #f8f9fa;
    border-radius: 0;
}

.cookie-footer-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-footer-content {
    flex: 1;
    min-width: 300px;
}

.cookie-footer-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    align-items: center;
}

.cookie-footer h5 {
    font-size: 20px;
    font-weight: 700;
    color: #f8f9fa;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.cookie-footer .privacy-text {
    font-size: 16px;
    line-height: 1.5;
    color: #f8f9fa;
    margin-bottom: 10px;
}

.cookie-footer .cookie-links {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.cookie-footer .cookie-links a {
    color: #0d6efd;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}
.cookie-footer .cookie-links a:hover {
    text-decoration: underline;
    opacity: 1;
}

.cookie-btn-save {
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 10px 28px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.cookie-btn-save:hover {
    background: #0b5ed7;
}

.cookie-btn-deny {
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 10px 28px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.cookie-btn-deny:hover {
    background: #0b5ed7;
}

.cookie-btn-accept {
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 10px 28px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.cookie-btn-accept:hover {
    background: #0b5ed7;
}

/* Fingerprint badge (bottom-left) - hidden by default, shown after consent */
.fingerprint-badge {
    position: fixed;
    bottom: 50px;
    left: 50px;
    width: 70px;
    height: 70px;
    background: rgb(12, 39, 160);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9998;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}
.fingerprint-badge.visible {
    display: flex;
}
.fingerprint-badge:hover {
    transform: scale(1.08);
}
.fingerprint-badge img {
    filter: invert(1)!important;
    width: 40px;
    height: 40px;
}

/* ==================== COOKIE MODAL ==================== */
.cookie-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10001;
    align-items: center;
    justify-content: center;
}
.cookie-modal-overlay.active {
    display: flex;
}

.cookie-modal {
    background: #fff;
    border-radius: 8px;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    border-bottom: 1px solid #dee2e6;
}

.cookie-modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    font-family: var(--font-body);
    margin: 0;
}

.cookie-modal-close {
    font-size: 30px;
    color: #333;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    padding: 0 5px;
}
.cookie-modal-close:hover {
    color: #000;
}

.cookie-modal-body {
    padding: 20px 30px;
    overflow-y: auto;
    max-height: 50vh;
}

.cookie-category {
    margin-bottom: 20px;
}

.cookie-category h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
    font-family: var(--font-body);
}

.cookie-category-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.cookie-category-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
    color: #555;
}

.cookie-toggle {
    flex-shrink: 0;
    padding-top: 2px;
}

/* Toggle switch */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
}
.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
}
input:checked + .slider {
    background-color: #0d6efd;
}
input:disabled + .slider {
    background-color: #0d6efd;
    opacity: 0.7;
}
input:checked + .slider:before {
    transform: translateX(24px);
}
.slider.round {
    border-radius: 26px;
}
.slider.round:before {
    border-radius: 50%;
}

.cookie-modal-footer {
    padding: 15px 30px;
    border-top: 1px solid #dee2e6;
    text-align: right;
}

.cookie-modal-save {
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}
.cookie-modal-save:hover {
    background: #0b5ed7;
}

@media (max-width: 768px) {
    .cookie-footer-inner {
        padding: 20px 16px;
    }
    .cookie-footer-row {
        flex-direction: column;
    }
    .cookie-footer-buttons {
        width: 100%;
        justify-content: center;
    }
    .fingerprint-badge {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
    }
    .fingerprint-badge img {
        width: 28px;
        height: 28px;
    }
}

/* ==================== LIGHTBOX ==================== */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.lightbox-overlay.active {
    display: flex;
}
.lightbox-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 4px 40px rgba(0,0,0,0.5);
    cursor: default;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    line-height: 1;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: background 0.2s;
}
.lightbox-close:hover {
    background: rgba(255,255,255,0.25);
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 48px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: background 0.2s;
    user-select: none;
}
.lightbox-nav:hover {
    background: rgba(255,255,255,0.25);
}
.lightbox-prev {
    left: 20px;
}
.lightbox-next {
    right: 20px;
}

/* ==================== PRIVACY POLICY PAGE ==================== */
.privacy-page {
    background: var(--color-white);
    min-height: 100vh;
}

.privacy-header {
    background: var(--color-primary);
    padding: 18px 0;
}

.privacy-content {
    max-width: 980px;
    margin: 0 auto;
    padding: 50px 20px 60px;
}

.privacy-content h1 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 30px;
    line-height: 1.3;
}

.privacy-content h2 {
    font-family: var(--font-montserrat);
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-top: 28px;
    margin-bottom: 12px;
}

.privacy-content p {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    margin-bottom: 12px;
}

.privacy-content ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 14px;
}

.privacy-content li {
    font-size: 16px;
    line-height: 1.85;
    color: #333;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
    .snupy-info-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 768px) {
    /* ---- HEADER MOBILE ---- */
    .header {
        height: auto;
        padding: 0;
        background: none;
    }
    .header-inner {
        flex-wrap: wrap;
        padding: 0;
        max-width: 100%;
        position: relative;
    }
    .header-left {
        padding: 15px 22px 4px;
        order: 1;
        gap: 10px;
        width: 100%;
        background: linear-gradient(to right, #774800, #BF9A10);
        box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
    }
    .header-logo {
        width: 70px;
        height: 70px;
    }
    .header-brand-name {
        font-size: 24px;
        font-weight: 700;
    }
    .header-brand-sub {
        font-size: 16px;
        font-weight: 700;
    }
    .header-brand {
        gap: 0;
        padding-top: 2px;
    }
    /* Hide social from brand column on mobile */
    .header-brand .header-social {
        display: none;
    }
    /* Show mobile social icons top-right */
    .header-social-mobile {
        display: flex;
        gap: 10px;
        align-items: center;
        position: absolute;
        right: 22px;
        top: 34px;
        order: 2;
        z-index: 2;
    }
    .header-social-mobile a {
        display: inline-flex;
        text-decoration: none;
    }
    .header-social-mobile img {
        width: 25px;
        height: 25px;
    }

    /* Language dropdown: full-width second row — transparent bg, centered */
    .header-right {
        position: relative;
        left: auto;
        transform: none;
        top: auto;
        order: 3;
        width: 100%;
        margin-top: 0;
        padding: 6px 22px 8px 22px;
        background: transparent;
        display: flex;
        justify-content: center;
    }
    .lang-selector-btn {
        font-size: 18px;
        font-weight: 400;
        padding: 4px 0;
        color: var(--color-white);
    }
    .lang-flag {
        width: 22px;
        height: 22px;
    }

    /* ---- HERO MOBILE ---- */
    .hero {
        height: auto;
        min-height: 0;
        position: relative;
        overflow: hidden;
    }
    /* Hide desktop bg/overlay on mobile */
    .hero-bg,
    .hero-overlay {
        display: none;
    }
    /* Show cover image on mobile */
    .hero-cover {
        display: block;
        width: 100%;
        position: relative;
        z-index: 1;
    }
    .hero-cover img {
        width: 100%;
        display: block;
        object-fit: cover;
        height: 442px;
        margin-top: 72px;
    }
    .hero-content {
        position: absolute;
        top: auto;
        bottom: 18px;
        left: 50%;
        transform: translateX(-50%);
        width: 65%;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        z-index: 3;
    }
    /* Button FIRST on mobile */
    .hero-btn-wrap {
        order: 1;
        margin-bottom: 6px;
    }
    .hero h1 {
        order: 2;
        font-size: 22px;
        text-align: center;
        line-height: 1.25;
        margin-bottom: 0;
    }
    /* Hide subtitle on mobile */
    .hero-subtitle {
        display: none;
    }
    .btn-pancakeswap {
        width: 185px;
        height: 36px;
        font-size: 22px;
        letter-spacing: 1.5px;
        border-radius: 16px;
    }

    /* ---- TOKENOMICS MOBILE ---- */
    .section-title {
        font-size: 36px;
        color: var(--color-gold);
    }

    /* Tokenomics subsection titles - bigger font on mobile */
    .subsection-title {
        font-size: 22px;
        font-weight: 700;
        line-height: 1.4;
    }

    /* Liquidity Pool & Initial Allocation bold & bullet fix */
    .token-block p {
        font-size: 20px;
        line-height: 1.8;
    }
    .token-block p strong {
        font-weight: 700;
    }
    .token-block li {
        font-size: 20px;
        line-height: 1.9;
    }
    .token-bullet-list {
        list-style: disc;
        padding-left: 25px;
    }
    .token-bullet-list li {
        font-size: 20px;
        line-height: 1.8;
    }

    /* ---- ALL PARAGRAPHS BIGGER ON MOBILE ---- */
    .why-usdc p,
    .initial-liquidity p,
    .snupy-info-right p,
    .ipr-section p,
    .community-section p {
        font-size: 20px;
        line-height: 1.8;
    }
    .initial-liquidity p{
        margin-bottom: 0;
    }

    .why-usdc li,
    .initial-liquidity li,
    .snupy-info-right li,
    .ipr-section li,
    .ipr-list li,
    .community-section li {
        font-size: 17px;
        line-height: 1.9;
    }

    /* ---- WHY USDC TITLE - font family fix ---- */
    .why-usdc-title {
        font-family: var(--font-body);
        font-size: 24px;
        font-weight: 700;
        line-height: 1.4;
    }

    /* ---- FULL WIDTH SECTION IMAGES MOBILE ---- */
    .full-image-section img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* ---- INITIAL LIQUIDITY MOBILE ---- */
    .initial-liquidity h2 {
        font-size: 36px;
        color: var(--color-gold);
    }
    .initial-liquidity h3 {
        font-size: 20px;
    }
    .initial-liquidity h3.initial-liquidity-sub {
        font-size: 16px;
        margin-top: 18px;
        margin-bottom: 2px;
    }
    .initial-liquidity p.no-spacing {
        margin-top: 0;
        margin-bottom: 0;
    }

    /* ---- SNUPY INFO SECTION MOBILE ---- */
    .snupy-info-left {
        padding: 40px 20px;
        padding-bottom: 0;
    }
    .snupy-info-left img.logo-grande {
        width: 300px;
        height: 300px;
        object-fit: contain;
    }
    .snupy-info-name {
        font-size: 28px;
        margin-top: 22px;
    }
    .ipr-text {
        font-size: 18px;
        font-family: 'oswald-medium', sans-serif;
        font-weight: 700;
    }
    .snupy-info-right {
        padding: 20px 20px 40px;
    }

    /* Cultural Inspiration h4 - font size & family fix */
    .snupy-info-right h4 {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 22px;
        font-weight: 700;
        line-height: 1.4;
        margin-top: 24px;
        margin-bottom: 0;
    }
    .snupy-info-right h3 {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 24px;
        margin-bottom: 0;
    }

    /* ---- IPR SECTION MOBILE ---- */
    .ipr-section h2 {
        font-size: 30px;
        color: var(--color-gold);
    }
    .ipr-section p strong {
        font-weight: 700;
    }

    /* Official Links - underline & spacing fix */
    .official-links {
        margin-top: 28px;
    }
    .official-links h3 {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 22px;
        font-weight: 700;
        text-decoration: none;
        margin-bottom: 14px;
        letter-spacing: 0.02em;
    }
    .official-links p {
        font-size: 17px;
        margin-bottom: 8px;
        line-height: 1.9;
    }

    /* ---- COMMUNITY SECTION MOBILE ---- */
    .community-section h2 {
        font-size: 30px;
        color: var(--color-gold);
    }
    .community-section h3 {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 0;
    }

    /* Download link underline */
    .download-link {
        text-decoration: underline !important;
        text-underline-offset: 3px;
    }

    .disclaimer-quote {
        font-size: 17px;
    }

    /* ---- FOOTER MOBILE ---- */
    .footer-spacer {
        height: 6px;
    }
    .footer-legal,
    .footer-seo {
        text-align: center;
    }
    /* Privacy Policy font family fix */
    .footer-privacy a {
        font-family: 'oswald-medium', 'oswald', var(--font-heading);
        font-size: 16px;
        font-weight: 400;
        letter-spacing: normal;
    }
}

@media (max-width: 480px) {
    .hero-content {
        width: 55%;
        padding: 0;
        bottom: 15px;
    }
    .hero h1 {
        font-size: 20px;
        text-shadow: rgba(0, 0, 0, 0.498039) -1px -1px 0px, rgba(0, 0, 0, 0.498039) -1px 1px 0px, rgba(0, 0, 0, 0.498039) 1px 1px 0px, rgba(0, 0, 0, 0.498039) 1px -1px 0px;
    }
    .section-title,
    .initial-liquidity h2 {
        font-size: 32px;
    }
    .ipr-section h2,
    .community-section h2 {
        font-size: 30px;
        color: var(--color-gold);
    }
    .ipr-section h2{
        font-family: 'oswald-medium', sans-serif;
    }

    .subsection-title {
        font-size: 26px;
    }
    .snupy-info-right h4 {
        font-family: 'oswald-medium',sans-serif;
        font-size: 25px;
        margin-bottom: 0;
    }
    .why-usdc-title {
        font-size: 26px;
    }
    .community-section h3 {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 26px;
        font-weight: normal;
        line-height: 1.2;
        margin-bottom: 0;
    }
    .official-links h3 {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 26px;
        text-decoration: none;
        font-weight: normal;
    }
}