/* ===================================
   $UTYA Landing Page Styles
   Yellow (Duck) + Blue (Telegram/TON)
   =================================== */

/* CSS Variables */
:root {
    /* Primary Colors */
    --yellow-primary: #065583;
    --yellow-light: #5bc3ec;
    --yellow-dark: #0b1657;
    --orange-accent: #a1f1b5;

    /* Blue Colors (Telegram/TON) */
    --blue-primary: #0088CC;
    --blue-light: #87CEEB;
    --blue-dark: #006699;
    --blue-deep: #0a1628;

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --gray-light: #E2E8F0;
    --gray: #94A3B8;
    --gray-dark: #475569;
    --black: #1E293B;

    /* Gradients */
    --gradient-sky: linear-gradient(180deg, #81eb9c 0%, #097ac5 50%, #9ff76c 100%);
    --gradient-water: linear-gradient(180deg, #0088CC 0%, #00A9E0 100%);
    --gradient-yellow: linear-gradient(135deg, #4d96da 0%, #1f8b24 100%);

    /* Typography */
    --font-heading: 'Quicksand', sans-serif;
    --font-body: 'Nunito', sans-serif;

    /* Spacing */
    --section-padding: 80px 0;
    --container-width: 1200px;

    /* Effects */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 30px rgba(255, 215, 0, 0.3);
    --radius-small: 8px;
    --radius-medium: 16px;
    --radius-large: 24px;
    --radius-full: 50%;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background: var(--off-white);
    overflow-x: hidden;
    cursor: url('../Images/logo/cursor2_128.png') 0 0, auto !important;
}

/* Force duck cursor on ALL elements, all states */
*,
*:hover,
*:active,
*:focus,
*::before,
*::after,
a,
a:hover,
a:active,
a:visited,
button,
button:hover,
button:active,
.btn,
.btn:hover,
.btn:active,
.btn-primary,
.btn-primary:hover,
.btn-secondary,
.btn-secondary:hover,
.copy-btn,
.copy-btn:hover,
.copy-btn-large,
.copy-btn-large:hover,
.social-card,
.social-card:hover,
.step-card,
.step-card:hover,
.token-card,
.token-card:hover,
.nav-cta,
.nav-cta:hover,
.nav-links a,
.nav-links a:hover {
    cursor: url('../Images/logo/cursor2_128.png') 0 0, auto !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* TON Logo Icons */
.ton-icon-inline {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-left: 5px;
}

.stat-icon-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.step-icon-img {
    width: 60px;
    height: 60px;
}

.token-icon-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* Title icons (replacing emojis) */
.title-icon {
    width: 40px;
    height: 40px;
    vertical-align: middle;
    margin-left: 5px;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    padding: 15px 0;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-full);
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--yellow-dark);
    text-shadow: 1px 1px 0 var(--orange-accent);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--gray-dark);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-yellow);
    border-radius: 2px;
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-yellow);
    color: var(--black);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 12px 24px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--gray-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--gradient-sky);
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.cloud {
    position: absolute;
    background: rgb(54, 243, 126);
    border-radius: 100px;
    opacity: 0.8;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: rgb(203, 245, 137);
    border-radius: var(--radius-full);
}

.cloud-1 {
    width: 200px;
    height: 60px;
    top: 15%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.cloud-1::before {
    width: 80px;
    height: 80px;
    top: -40px;
    left: 30px;
}

.cloud-1::after {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 90px;
}

.cloud-2 {
    width: 150px;
    height: 45px;
    top: 25%;
    right: 15%;
    animation: float 10s ease-in-out infinite 2s;
}

.cloud-2::before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 20px;
}

.cloud-2::after {
    width: 45px;
    height: 45px;
    top: -20px;
    left: 70px;
}

.cloud-3 {
    width: 180px;
    height: 50px;
    top: 10%;
    right: 40%;
    animation: float 12s ease-in-out infinite 4s;
}

.cloud-3::before {
    width: 70px;
    height: 70px;
    top: -35px;
    left: 25px;
}

.cloud-3::after {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 85px;
}

@keyframes float {

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

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

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 60px 20px 150px;
    position: relative;
    z-index: 10;
}

.hero-text {
    flex: 1;
    max-width: 550px;
}

.speech-bubble {
    display: inline-block;
    background: var(--white);
    color: var(--orange-accent);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    padding: 12px 25px;
    border-radius: var(--radius-large);
    margin-bottom: 20px;
    position: relative;
    box-shadow: var(--shadow-soft);
    animation: bounce 2s ease-in-out infinite;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 30px;
    border: 10px solid transparent;
    border-top-color: var(--white);
}

@keyframes bounce {

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

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

.hero-title {
    margin-bottom: 20px;
}

.ticker {
    display: block;
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--yellow-dark);
    text-shadow: 3px 3px 0 var(--orange-accent), 6px 6px 0 rgba(0, 0, 0, 0.1);
    line-height: 1.1;
}

.subtitle {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--blue-dark);
    margin-top: 10px;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 30px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-large);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-yellow);
    color: var(--black);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: var(--blue-primary);
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    background: var(--blue-dark);
    transform: translateY(-3px);
}

.telegram-icon {
    width: 22px;
    height: 22px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-duck {
    width: 400px;
    max-width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    animation: swim 4s ease-in-out infinite;
}

@keyframes swim {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.floating-ducks {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-duck {
    position: absolute;
    width: 80px;
    opacity: 0.9;
    animation: floatDuck 6s ease-in-out infinite;
}

.float-1 {
    top: -20px;
    right: 0;
    animation-delay: 1s;
}

.float-2 {
    bottom: 50px;
    left: 0;
    width: 70px;
    animation-delay: 3s;
}

@keyframes floatDuck {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(10deg);
    }
}

/* Wave Animation */
.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    overflow: hidden;
}

.waves {
    width: 100%;
    height: 100%;
    min-height: 100px;
}

.wave-parallax>use {
    animation: waveMove 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.wave-parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.wave-parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.wave-parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.wave-parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes waveMove {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/* ===================================
   Stats Banner
   =================================== */
.stats-banner {
    background: var(--blue-primary);
    padding: 25px 0;
    position: relative;
    z-index: 20;
}

.stats-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

.contract-item {
    position: relative;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 8px;
    border-radius: var(--radius-small);
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.copy-btn svg {
    width: 18px;
    height: 18px;
    color: var(--white);
}

/* ===================================
   About Section
   =================================== */
.about {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue-dark);
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 0 0 350px;
}

.about-gif {
    width: 100%;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
}

.about-text {
    flex: 1;
}

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

.about-text p {
    color: var(--gray-dark);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-features {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--off-white);
    padding: 12px 20px;
    border-radius: var(--radius-medium);
    font-weight: 600;
}

.feature-icon {
    font-size: 1.3rem;
}

.floating-decoration {
    position: absolute;
    bottom: 20px;
    right: 5%;
    pointer-events: none;
}

.deco-duck {
    width: 120px;
    opacity: 0.6;
    animation: floatDuck 8s ease-in-out infinite;
}

/* ===================================
   How to Buy Section
   =================================== */
.how-to-buy {
    padding: var(--section-padding);
    background: var(--gradient-sky);
    position: relative;
}

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

.step-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: var(--radius-large);
    text-align: center;
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background: var(--gradient-yellow);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--black);
    box-shadow: var(--shadow-soft);
}

.step-icon {
    font-size: 3rem;
    margin: 15px 0 20px;
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--blue-dark);
    margin-bottom: 12px;
}

.step-card p {
    color: var(--gray-dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

.step-card a {
    color: var(--blue-primary);
    font-weight: 600;
}

.step-card a:hover {
    text-decoration: underline;
}

.contract-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-soft);
    flex-wrap: wrap;
}

.contract-label {
    font-weight: 700;
    color: var(--gray-dark);
}

.contract-full {
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--blue-dark);
    background: var(--off-white);
    padding: 10px 15px;
    border-radius: var(--radius-small);
    word-break: break-all;
}

.copy-btn-large {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-primary);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: var(--radius-medium);
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn-large:hover {
    background: var(--blue-dark);
}

.copy-btn-large svg {
    width: 18px;
    height: 18px;
}

/* ===================================
   Tokenomics Section
   =================================== */
.tokenomics {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.token-card {
    background: var(--off-white);
    padding: 25px 20px;
    border-radius: var(--radius-medium);
    text-align: center;
    transition: all 0.3s ease;
}

.token-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-soft);
}

.token-card.highlight {
    background: var(--gradient-yellow);
    box-shadow: var(--shadow-glow);
}

.token-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.token-label {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.token-value {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue-dark);
}

.token-value.big {
    font-size: 1.8rem;
}

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

.detective-duck {
    width: 150px;
    animation: floatDuck 5s ease-in-out infinite;
}

/* ===================================
   Roadmap Section
   =================================== */
.roadmap {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--yellow-light) 0%, var(--off-white) 100%);
    text-align: center;
}

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

.roadmap-gif {
    width: 300px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
}

.quack-text {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--orange-accent);
    text-shadow: 3px 3px 0 var(--yellow-dark);
    animation: quackPulse 1.5s ease-in-out infinite;
}

@keyframes quackPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.roadmap-subtext {
    font-size: 1.2rem;
    color: var(--gray-dark);
    font-style: italic;
}

/* ===================================
   Community Section
   =================================== */
.community {
    padding: var(--section-padding);
    background: var(--blue-primary);
    color: var(--white);
}

.community .section-title {
    color: var(--white);
}

.community .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.social-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: var(--radius-large);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-card:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--yellow-primary);
    transform: translateY(-5px);
}

.social-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.social-icon svg {
    width: 40px;
    height: 40px;
    fill: currentColor;
}

.social-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.social-handle {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.talents-gif {
    width: 250px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--blue-deep);
    color: var(--white);
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo-img {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--yellow-primary);
}

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

.footer-contract span {
    color: var(--gray);
}

.footer-contract code {
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: var(--radius-small);
    word-break: break-all;
}

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

.footer-socials a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--yellow-primary);
    color: var(--black);
}

.footer-socials svg {
    width: 22px;
    height: 22px;
}

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

.footer-bottom p {
    margin-bottom: 10px;
    color: var(--gray);
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .tokenomics-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .community-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .nav-cta {
        display: none;
    }

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

    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px 180px;
    }

    .hero-text {
        max-width: 100%;
    }

    .ticker {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.3rem;
    }

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

    .hero-duck {
        width: 280px;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        flex: 0 0 auto;
    }

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

    .about-features {
        justify-content: center;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .tokenomics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .community-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-container {
        gap: 15px;
    }

    .stat-divider {
        display: none;
    }

    .quack-text {
        font-size: 2.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .ticker {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .tokenomics-grid,
    .community-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

/* ===================================
   Animations on Scroll
   =================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Copy success animation */
.copy-success {
    animation: copyPulse 0.3s ease;
}

@keyframes copyPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}