/* ============================================
   $PROLL - MEMECOIN WEBSITE STYLES
   King of Rewards | Solana Token
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Colors - From Mascot */
    --orange-primary: #FF6B00;
    --orange-light: #FF8533;
    --orange-dark: #E55A00;
    --orange-glow: rgba(255, 107, 0, 0.5);

    /* Secondary Colors */
    --white: #FFFFFF;
    --cream: #FFF8F0;
    --pink-eyes: #FF6B6B;
    --brown-hair: #8B5A2B;

    /* Dark Theme */
    --bg-dark: #0A0A0F;
    --bg-darker: #050508;
    --bg-card: #12121A;
    --bg-card-hover: #1A1A25;

    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);

    /* Gradients */
    --gradient-orange: linear-gradient(135deg, #FF6B00 0%, #FF8533 50%, #FFB366 100%);
    --gradient-dark: linear-gradient(180deg, #0A0A0F 0%, #12121A 100%);
    --gradient-glow: radial-gradient(circle, rgba(255, 107, 0, 0.3) 0%, transparent 70%);

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

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 50%;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Selection */
::selection {
    background: var(--orange-primary);
    color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--orange-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--orange-light);
}

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

/* ============================================
   PARTICLES & BACKGROUND EFFECTS
   ============================================ */

#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--orange-primary);
    border-radius: 50%;
    opacity: 0.5;
    animation: float-particle 15s infinite linear;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Floating Coins */
#floating-coins {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.coin {
    position: absolute;
    font-size: 24px;
    opacity: 0.3;
    animation: float-coin 20s infinite ease-in-out;
}

@keyframes float-coin {

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

    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition-normal);
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: var(--white);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--white);
    text-decoration: none;
    cursor: pointer;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--gradient-orange);
    border-radius: var(--radius-full);
    font-size: 24px;
    font-weight: 700;
    animation: pulse-glow 2s infinite;
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-full);
    object-fit: cover;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px var(--orange-glow);
    }

    50% {
        box-shadow: 0 0 40px var(--orange-glow), 0 0 60px rgba(255, 107, 0, 0.3);
    }
}

.logo-text {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-orange);
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Connect Wallet Button */
.btn-wallet {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #AB9FF2 0%, #7C3AED 100%);
    color: var(--white);
    border: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-wallet:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

.btn-wallet.connected {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.btn-wallet.connected:hover {
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.wallet-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.btn-buy {
    padding: 12px 24px;
    background: var(--gradient-orange);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--orange-glow);
}

.pulse-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--orange-primary);
    border-radius: 3px;
    transition: var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 20px 60px;
    overflow: hidden;
    background: linear-gradient(135deg, #FF6B00 0%, #FF8533 50%, #E55A00 100%);
}

/* Interactive Dot Grid Canvas */
#dot-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: auto;
}

.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
    opacity: 0.3;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.4) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: orb-float 10s infinite ease-in-out;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 133, 51, 0.3) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: orb-float 12s infinite ease-in-out reverse;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orb-pulse 8s infinite ease-in-out;
}

@keyframes orb-float {

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

    50% {
        transform: translate(30px, -30px);
    }
}

@keyframes orb-pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.5;
    }
}

.hero-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-text {
    animation: fade-in-up 1s ease;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-lg);
    font-size: 14px;
    color: var(--white);
    margin-bottom: 20px;
}

.badge-icon {
    font-size: 16px;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

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

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

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(52px, 9vw, 100px);
    font-weight: 800;
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
}

/* ============================================
   TRUE FOCUS ANIMATION
   ============================================ */

.focus-container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
    align-items: center;
}

.focus-word {
    position: relative;
    display: inline-block;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(42px, 8vw, 90px);
    font-weight: 800;
    letter-spacing: -2px;
    cursor: default;
    filter: blur(5px);
    transition: filter 0.5s ease;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.focus-word.active {
    filter: blur(0px);
}

/* Focus Frame - animated border corners */
.focus-frame {
    position: absolute;
    pointer-events: none;
    padding: 8px 12px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
}

.focus-frame.visible {
    opacity: 1;
}

/* Corner brackets */
.focus-frame .corner {
    position: absolute;
    width: 18px;
    height: 18px;
    border-style: solid;
    border-color: var(--white);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6),
        0 0 30px rgba(255, 255, 255, 0.3);
    transition: box-shadow 0.3s ease;
}

.focus-frame .corner.top-left {
    top: 0;
    left: 0;
    border-width: 3px 0 0 3px;
    border-radius: 3px 0 0 0;
}

.focus-frame .corner.top-right {
    top: 0;
    right: 0;
    border-width: 3px 3px 0 0;
    border-radius: 0 3px 0 0;
}

.focus-frame .corner.bottom-left {
    bottom: 0;
    left: 0;
    border-width: 0 0 3px 3px;
    border-radius: 0 0 0 3px;
}

.focus-frame .corner.bottom-right {
    bottom: 0;
    right: 0;
    border-width: 0 3px 3px 0;
    border-radius: 0 0 3px 0;
}

/* Glow animation for corners */
@keyframes corner-glow {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.6),
            0 0 30px rgba(255, 255, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.9),
            0 0 50px rgba(255, 255, 255, 0.5);
    }
}

.focus-frame.visible .corner {
    animation: corner-glow 2s ease-in-out infinite;
}

/* Mobile responsiveness for focus effect */
@media (max-width: 768px) {
    .focus-word {
        font-size: clamp(28px, 10vw, 48px);
        letter-spacing: -1px;
    }

    .focus-frame .corner {
        width: 12px;
        height: 12px;
        border-width: 2px;
    }

    .focus-container {
        gap: 6px;
    }
}

.title-small {
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 600;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 5px;
}

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

.text-orange {
    color: var(--orange-primary);
    font-weight: 600;
}

.title-highlight {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
    position: relative;
    display: inline-block;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--white);
    -webkit-text-fill-color: var(--white);
}

.glitch::before {
    animation: glitch-1 2s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.glitch::after {
    animation: glitch-2 2s infinite linear alternate-reverse;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {

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

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }
}

@keyframes glitch-2 {

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

    20% {
        transform: translate(2px, -2px);
    }

    40% {
        transform: translate(2px, 2px);
    }

    60% {
        transform: translate(-2px, -2px);
    }

    80% {
        transform: translate(-2px, 2px);
    }
}

.hero-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    max-width: 520px;
}

.hero-subtitle .text-orange {
    color: var(--white);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-orange);
    color: var(--white);
    border: none;
    font-weight: 700;
}

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

/* White button variant for orange sections */
.hero .btn-primary {
    background: var(--white);
    color: var(--orange-primary);
}

.hero .btn-primary:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transform: translateY(-3px);
}

/* Shine Effect */
.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right,
            transparent 0%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 100%);
    transform: rotate(45deg) translateX(-100%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }

    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

/* Hero Contract Address Box */
.hero-contract {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 500px;
}

.hero-contract .contract-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contract-copy-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.contract-copy-box:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contract-copy-box code {
    font-family: 'Space Grotesk', monospace;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
    word-break: break-all;
}

.copy-btn-hero {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--white);
    color: var(--orange-primary);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.copy-btn-hero:hover {
    background: var(--orange-light);
    color: var(--white);
    transform: scale(1.05);
}

.copy-btn-hero .copy-icon {
    font-size: 16px;
}

.copy-btn-hero .copy-text {
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Success state */
.contract-copy-box.copied {
    border-color: #00ff88;
    background: rgba(0, 255, 136, 0.15);
}

.contract-copy-box.copied .copy-btn-hero {
    background: #00ff88;
    color: #000;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .contract-copy-box {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .contract-copy-box code {
        font-size: 13px;
    }

    .copy-btn-hero {
        width: 100%;
        justify-content: center;
    }
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fade-in-up 1s ease 0.3s backwards;
}

.image-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--orange-glow) 0%, transparent 60%);
    filter: blur(60px);
    animation: glow-pulse 3s infinite ease-in-out;
}

@keyframes glow-pulse {

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

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.mascot-main {
    width: 100%;
    max-width: 500px;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 60px rgba(255, 107, 0, 0.3));
    border-radius: var(--radius-lg);
}

/* ============================================
   HERO SLIDESHOW
   ============================================ */

.hero-slideshow {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slideshow-container .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slideshow-container .slide.active {
    opacity: 1;
}

.slideshow-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slideshow-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.slideshow-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.slideshow-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slideshow {
        max-width: 350px;
    }
}

/* ============================================
   PIXEL TRANSITION ANIMATION
   ============================================ */

.pixel-transition-card {
    background-color: var(--orange-primary);
    color: var(--white);
    border-radius: 20px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    width: 100%;
    max-width: 500px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pixel-transition-card:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(255, 107, 0, 0.5);
}

.pixel-transition-default,
.pixel-transition-active,
.pixel-grid {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.pixel-transition-default {
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pixel-transition-default img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 17px;
}

.pixel-transition-active {
    z-index: 2;
    display: none;
    background: linear-gradient(135deg, #FF6B00 0%, #FF8533 50%, #E55A00 100%);
    border-radius: 17px;
}

/* PAYROLL Text Reveal */
.payroll-text-reveal {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.payroll-big {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(48px, 10vw, 80px);
    font-weight: 900;
    color: var(--white);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: -2px;
    animation: text-glow 2s ease-in-out infinite;
}

.payroll-sub {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(14px, 3vw, 24px);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 10px;
}

@keyframes text-glow {

    0%,
    100% {
        text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

    50% {
        text-shadow: 0 4px 50px rgba(255, 255, 255, 0.5), 0 0 80px rgba(255, 255, 255, 0.3);
    }
}

/* Pixel Grid */
.pixel-grid {
    pointer-events: none;
    z-index: 3;
}

.pixel-grid__pixel {
    display: none;
    position: absolute;
    background-color: var(--white);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .pixel-transition-card {
        max-width: 350px;
    }

    .payroll-big {
        font-size: 42px;
    }

    .payroll-sub {
        font-size: 14px;
        letter-spacing: 2px;
    }
}

/* Circular Text Animation */
.circular-text-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.circular-text {
    margin: 0 auto;
    border-radius: 50%;
    width: 520px;
    height: 520px;
    position: relative;
    font-weight: 900;
    color: var(--white);
    text-align: center;
    cursor: pointer;
    transform-origin: 50% 50%;
    animation: rotate-text 20s linear infinite;
    pointer-events: auto;
}

.circular-text:hover {
    animation-duration: 5s;
}

.circular-text span {
    position: absolute;
    display: inline-block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    font-size: 22px;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0, 0, 0, 1);
}

@keyframes rotate-text {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.floating {
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {

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

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

/* Sparkles */
.sparkles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--orange-primary);
    border-radius: 50%;
    animation: sparkle 2s infinite ease-in-out;
}

.sparkle:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: 0.3s;
}

.sparkle:nth-child(3) {
    bottom: 30%;
    left: 10%;
    animation-delay: 0.6s;
}

.sparkle:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 0.9s;
}

.sparkle:nth-child(5) {
    top: 50%;
    left: 5%;
    animation-delay: 1.2s;
}

@keyframes sparkle {

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

    50% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    animation: bounce 2s infinite;
    z-index: 10;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

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

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   TICKER BANNER
   ============================================ */

.ticker-banner {
    background: var(--gradient-orange);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: flex;
    gap: 50px;
    animation: ticker 20s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

/* ============================================
   SECTION STYLES
   ============================================ */

section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: var(--radius-lg);
    font-size: 12px;
    font-weight: 600;
    color: var(--orange-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

/* White section tags on orange backgrounds */
.tokenomics-section .section-tag,
.gallery-section .section-tag,
.community-section .section-tag {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    letter-spacing: -1.5px;
    color: var(--white);
    text-transform: uppercase;
}

.highlight {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Fix highlight text on orange background sections */
.tokenomics-section .highlight,
.gallery-section .highlight,
.community-section .highlight {
    background: var(--white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-hint {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* White background sections - dark text overrides */
.about-section .section-title,
.roadmap-section .section-title,
.buy-section .section-title {
    color: var(--bg-dark);
}

.about-section .section-tag,
.roadmap-section .section-tag,
.buy-section .section-tag {
    background: rgba(255, 107, 0, 0.15);
    border-color: rgba(255, 107, 0, 0.4);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    background: var(--white);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.about-card {
    background: linear-gradient(135deg, #FF6B00 0%, #FF8533 100%);
    border: none;
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.2);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.35);
}

.about-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 36px;
}

.about-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--white);
}

.about-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.7;
}

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

.mascot-float {
    max-width: 600px;
    width: 100%;
    border-radius: var(--radius-lg);
    animation: floating 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(255, 107, 0, 0.2));
}

/* ============================================
   TOKENOMICS SECTION
   ============================================ */

.tokenomics-section {
    background: linear-gradient(135deg, #FF6B00 0%, #FF8533 50%, #E55A00 100%);
}

.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.chart-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.donut-chart {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: conic-gradient(#FF6B00 0deg 252deg,
            #FFB366 252deg 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: rotate-chart 30s linear infinite;
    box-shadow: 0 0 60px rgba(255, 107, 0, 0.3);
}

@keyframes rotate-chart {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.chart-center {
    width: 180px;
    height: 180px;
    background: var(--bg-darker);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: rotate-chart 30s linear infinite reverse;
}

.chart-total {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--orange-primary);
}

.chart-label {
    font-size: 14px;
    color: var(--text-muted);
}

.chart-legend {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.legend-item:hover {
    background: var(--cream);
    transform: translateX(10px);
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.legend-label {
    flex: 1;
    color: var(--bg-dark);
}

.legend-value {
    font-weight: 700;
    color: var(--orange-primary);
    font-size: 18px;
}

.tokenomics-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.info-card.special {
    background: var(--white);
    border: 2px solid var(--orange-primary);
}

.info-icon {
    font-size: 40px;
}

.info-content h4 {
    font-size: 14px;
    color: var(--bg-dark);
    margin-bottom: 5px;
}

.info-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--orange-primary);
    display: block;
}

.info-content p {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
}

/* Glow Card Effect */
.glow-card {
    position: relative;
}

.glow-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-orange);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: var(--transition-normal);
}

.glow-card:hover::before {
    opacity: 0.3;
    filter: blur(10px);
}

/* Contract Address */
.contract-address {
    text-align: center;
    margin-top: 60px;
}

.contract-label {
    display: block;
    color: var(--white);
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 600;
}

.contract-box {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contract-box code {
    font-family: 'Courier New', monospace;
    font-size: 16px;
    color: var(--orange-primary);
    letter-spacing: 1px;
    font-weight: 600;
}

.copy-btn {
    background: var(--gradient-orange);
    border: none;
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition-normal);
}

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

/* ============================================
   ROADMAP SECTION
   ============================================ */

.roadmap-section {
    background: var(--white);
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--orange-primary), rgba(255, 107, 0, 0.2));
}

.roadmap-item {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    animation: slide-in 0.6s forwards;
}

.roadmap-item:nth-child(2) {
    animation-delay: 0.1s;
}

.roadmap-item:nth-child(3) {
    animation-delay: 0.2s;
}

.roadmap-item:nth-child(4) {
    animation-delay: 0.3s;
}

.roadmap-item:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes slide-in {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.roadmap-marker {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 3px solid var(--orange-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--orange-primary);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.roadmap-item.active .roadmap-marker {
    background: var(--gradient-orange);
    color: var(--white);
    animation: pulse-marker 2s infinite;
}

@keyframes pulse-marker {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(255, 107, 0, 0);
    }
}

.roadmap-content {
    flex: 1;
    background: linear-gradient(135deg, #FF6B00 0%, #FF8533 100%);
    border: none;
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: var(--transition-normal);
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.2);
}

.roadmap-content:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.35);
}

.roadmap-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--white);
}

.roadmap-content ul {
    list-style: none;
    margin-bottom: 15px;
}

.roadmap-content li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 25px;
}

.roadmap-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange-primary);
}

.phase-status {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radius-lg);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phase-status.completed {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.phase-status.in-progress {
    background: rgba(255, 107, 0, 0.2);
    color: var(--orange-primary);
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.phase-status.upcoming {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

/* ============================================
   GALLERY SECTION - GRID MOTION
   ============================================ */

.gallery-section {
    background: linear-gradient(135deg, #FF6B00 0%, #FF8533 50%, #E55A00 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    min-height: 800px;
}

.gallery-section .section-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

/* Grid Motion Container */
.grid-motion-container {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    perspective: 1000px;
}

/* Gradient Overlay - Disabled to remove black borders */
.grid-motion-overlay {
    display: none;
}

/* Grid Wrapper */
.grid-motion-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(35deg) rotateZ(-10deg);
    transform-style: preserve-3d;
}

.grid-motion-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Grid Rows */
.grid-row {
    display: flex;
    gap: 15px;
    will-change: transform;
    width: max-content;
    flex-wrap: nowrap;
}

/* Row Animations - Continuous infinite scroll */
.row-left {
    animation: scroll-left 25s linear infinite;
}

.row-right {
    animation: scroll-right 28s linear infinite;
}

.row-left-fast {
    animation: scroll-left 18s linear infinite;
}

.row-right-slow {
    animation: scroll-right 32s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

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

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

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

/* Grid Items */
.grid-item {
    flex-shrink: 0;
    width: 260px;
    height: 170px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 107, 0, 0.1);
}

.grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 107, 0, 0.2) 0%,
            transparent 50%,
            rgba(255, 107, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.grid-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 70%);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 3;
}

.grid-item:hover {
    transform: scale(1.15) translateY(-10px);
    z-index: 10;
    box-shadow:
        0 25px 60px rgba(255, 107, 0, 0.4),
        0 0 0 2px var(--orange-primary),
        0 0 30px rgba(255, 107, 0, 0.3);
}

.grid-item:hover::before {
    opacity: 1;
}

.grid-item:hover::after {
    transform: rotate(45deg) translateX(100%);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.grid-item:hover img {
    transform: scale(1.1);
}

/* Optional: Pause animation on hover - uncomment to enable */
/* .grid-motion-container:hover .grid-row {
    animation-play-state: paused;
} */

/* Glow effect behind grid */
.grid-motion-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center,
            rgba(255, 107, 0, 0.15) 0%,
            rgba(255, 107, 0, 0.05) 40%,
            transparent 70%);
    filter: blur(40px);
    z-index: -1;
    animation: glow-pulse 4s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 1024px) {
    .grid-motion-container {
        height: 600px;
    }

    .grid-motion-wrapper {
        transform: translate(-50%, -50%) rotateX(30deg) rotateZ(-5deg);
    }

    .grid-item {
        width: 220px;
        height: 140px;
    }
}

@media (max-width: 768px) {
    .grid-motion-container {
        height: 500px;
    }

    .grid-motion-wrapper {
        transform: translate(-50%, -50%) rotateX(25deg) rotateZ(0deg);
    }

    .grid-item {
        width: 180px;
        height: 120px;
        border-radius: 12px;
    }

    .grid-row {
        gap: 15px;
    }

    .grid-motion-inner {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        min-height: 500px;
    }

    .grid-motion-container {
        height: 400px;
    }

    .grid-item {
        width: 140px;
        height: 90px;
        border-radius: 8px;
    }
}

/* ============================================
   BUY SECTION
   ============================================ */

.buy-section {
    background: var(--white);
    position: relative;
}

.buy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange-primary), transparent);
}

.buy-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    background: linear-gradient(135deg, #FF6B00 0%, #FF8533 100%);
    border: none;
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    position: relative;
    transition: var(--transition-normal);
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.2);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.35);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 40px;
}

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

.step-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--white);
}

.step-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.step-arrow {
    font-size: 30px;
    color: var(--orange-primary);
    align-self: center;
    animation: arrow-bounce 1s infinite;
}

@keyframes arrow-bounce {

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

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

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

.btn-large {
    padding: 20px 50px;
    font-size: 18px;
}

/* ============================================
   COMMUNITY SECTION
   ============================================ */

.community-section {
    background: linear-gradient(135deg, #FF6B00 0%, #FF8533 50%, #E55A00 100%);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transition: var(--transition-normal);
}

.social-card.discord::before {
    background: #5865F2;
}

.social-card.twitter::before {
    background: #1DA1F2;
}

.social-card.dextools::before {
    background: #00BCD4;
}

.social-card.dexscreener::before {
    background: #4CAF50;
}

.social-card.tiktok::before {
    background: #000000;
}

.social-card.telegram::before {
    background: #0088cc;
}

.social-card.youtube::before {
    background: #FF0000;
}

.social-card:hover {
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.1);
}

.social-card:hover::before {
    width: 100%;
    opacity: 0.1;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 24px;
}

.social-card.discord .social-icon {
    background: rgba(88, 101, 242, 0.2);
    color: #5865F2;
}

.social-card.twitter .social-icon {
    background: rgba(29, 161, 242, 0.2);
    color: #1DA1F2;
}

.social-card.dextools .social-icon {
    background: rgba(0, 188, 212, 0.2);
    color: #00BCD4;
}

.social-card.dexscreener .social-icon {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.social-card.tiktok .social-icon {
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
}

.social-card.telegram .social-icon {
    background: rgba(0, 136, 204, 0.2);
    color: #0088cc;
}

.social-card.youtube .social-icon {
    background: rgba(255, 0, 0, 0.2);
    color: #FF0000;
}

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

.social-info h3 {
    font-size: 18px;
    color: var(--bg-dark);
    margin-bottom: 3px;
}

.social-info p {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
}

.social-arrow {
    margin-left: auto;
    font-size: 24px;
    color: rgba(0, 0, 0, 0.3);
    transition: var(--transition-normal);
}

.social-card:hover .social-arrow {
    color: var(--orange-primary);
    transform: translateX(5px);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--bg-darker);
    padding: 80px 0 30px;
    position: relative;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange-primary), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

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

.footer-brand p {
    color: var(--text-secondary);
    max-width: 300px;
    line-height: 1.7;
}

.footer-links h4,
.footer-social h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon-small {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    transition: var(--transition-normal);
}

.social-icon-small:hover {
    background: var(--gradient-orange);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-5px);
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-orange);
    border: none;
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
    box-shadow: 0 10px 30px var(--orange-glow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--orange-glow);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        order: 1;
    }

    .hero-image {
        order: 0;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
    }

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

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

    .tokenomics-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand p {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 10px;
        z-index: 1000;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links .nav-link {
        font-size: 24px;
        font-weight: 600;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        width: 100%;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    .btn-buy {
        display: none;
    }

    .btn-wallet {
        padding: 8px 12px;
        font-size: 12px;
    }

    .btn-wallet .wallet-icon {
        width: 16px;
        height: 16px;
    }

    /* Show buy button in mobile menu */
    .nav-links.active::after {
        content: 'BUY $PROLL';
        display: block;
        padding: 16px 32px;
        background: var(--gradient-orange);
        color: var(--white);
        text-align: center;
        border-radius: var(--radius-lg);
        font-weight: 700;
        font-size: 18px;
        margin-top: 20px;
        cursor: pointer;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }

    .buy-steps {
        flex-direction: column;
        align-items: center;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    @keyframes arrow-bounce {

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

        50% {
            transform: rotate(90deg) translateX(10px);
        }
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .roadmap-item {
        flex-direction: column;
        gap: 20px;
    }

    .timeline-line {
        display: none;
    }

    .roadmap-marker {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 32px;
    }

    .hero-title {
        font-size: 40px;
    }

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

    .step-card {
        min-width: 100%;
    }

    .contract-box {
        flex-direction: column;
        gap: 10px;
    }

    .contract-box code {
        font-size: 12px;
        word-break: break-all;
    }
}

/* ============================================
   ANIMATIONS ON SCROLL
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for cards */
.about-card:nth-child(1) {
    transition-delay: 0.1s;
}

.about-card:nth-child(2) {
    transition-delay: 0.2s;
}

.about-card:nth-child(3) {
    transition-delay: 0.3s;
}

.about-card:nth-child(4) {
    transition-delay: 0.4s;
}

.step-card:nth-child(1) {
    transition-delay: 0.1s;
}

.step-card:nth-child(3) {
    transition-delay: 0.2s;
}

.step-card:nth-child(5) {
    transition-delay: 0.3s;
}

.step-card:nth-child(7) {
    transition-delay: 0.4s;
}

.social-card:nth-child(1) {
    transition-delay: 0.1s;
}

.social-card:nth-child(2) {
    transition-delay: 0.2s;
}

.social-card:nth-child(3) {
    transition-delay: 0.3s;
}

.social-card:nth-child(4) {
    transition-delay: 0.4s;
}