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

:root {
    --primary-green: #00ff88;
    --dark-green: #00cc6a;
    --light-green: #33ffaa;
    --pump-green: #00ff41;
    --dark-bg: #050505;
    --darker-bg: #000000;
    --text-light: #ffffff;
    --text-gray: #888888;
    --scrollbar-width: 0px;
}

html {
    width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #000000;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    background-attachment: fixed;
    min-height: 100%;
    min-height: -webkit-fill-available;
    height: 100%;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background-color: #000000;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    background-attachment: fixed;
    color: var(--text-light);
    overflow-x: hidden;
    position: relative;
    width: 100vw;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

body.loading {
    overflow: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body.loading::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
}

html.loading {
    overflow: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html.loading::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
}

html.loading #custom-scrollbar,
body.loading #custom-scrollbar {
    display: none !important;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-animation.hidden {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease 0.3s, visibility 0.5s ease 0.3s;
}

.loader-content {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-animation {
    display: flex;
    gap: 12px;
    align-items: center;
}

.loader-dot {
    width: 16px;
    height: 16px;
    background: var(--primary-green);
    border-radius: 50%;
    animation: loader-bounce 1.4s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

.loader-dot:nth-child(1) {
    animation-delay: 0s;
}

.loader-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes loader-bounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

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

.background-text {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    z-index: 0;
    opacity: 0.05;
    pointer-events: none;
    overflow: hidden;
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    image-rendering: pixelated;
    image-rendering: crisp-edges;

    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: contents;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.background-text span {
    position: absolute;
    font-family: 'Space Grotesk', 'Inter', 'Arial Black', 'Arial', sans-serif;
    font-size: 120px;
    font-weight: 900;
    color: var(--primary-green);
    line-height: 1.2;
    white-space: nowrap;
    will-change: transform;
    display: block;
    transform-origin: center center;
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: unset;
    font-smooth: never;
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    filter: contrast(1.2) brightness(0.95);
    max-width: 100vw;
    overflow: hidden;

    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.background-text span {
    will-change: transform;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

@keyframes move-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-1 * var(--animation-distance, 600px)));
    }
}

@keyframes move-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(var(--animation-distance, 600px));
    }
}

.navbar {
    position: fixed;
    top: 0;
    width: 100vw;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 30px 0;
    z-index: 1000;
    border-bottom: none;
    left: 0;
    right: 0;
    box-sizing: border-box;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0, 255, 136, 0.2);
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    filter: contrast(1.2) brightness(0.95);
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: unset;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    line-height: 1.2;
    align-items: center;
    gap: 8px;
}

.logo-line {
    display: inline;
}

.logo-line:not(:last-child)::after {
    content: ' ';
}

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

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

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

.nav-x-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-x-link:hover {
    background: rgba(0, 255, 136, 0.1);
}

.nav-x-link .x-icon {
    width: 20px;
    height: 20px;
    color: var(--text-light);
    transition: color 0.3s;
}

.nav-x-link:hover .x-icon {
    color: var(--primary-green);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 160px;
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.hero-top {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.hero-image {
    flex-shrink: 0;
}

.hero-image img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid var(--primary-green);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4), 0 0 60px rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.6), 0 0 80px rgba(0, 255, 136, 0.3);
}

.hero-title-section {
    flex: 1;
    min-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (max-width: 1023px) {
    .hero-title-section {
        min-width: auto;
    }
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
    line-height: 1;
    text-align: left;
}

.title-line {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 100px;
    font-weight: 900;
    color: var(--primary-green);
    letter-spacing: 6px;
    margin-bottom: 0;
    text-transform: uppercase !important;
    line-height: 0.9;
    position: relative;
    animation: glitch 3s infinite;
}

.title-main {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 100px;
    font-weight: 900;
    color: var(--primary-green);
    letter-spacing: 6px;
    line-height: 0.9;
    text-transform: uppercase;
    position: relative;
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0%, 100% {
        text-shadow: 
            0.05em 0 0 var(--primary-green),
            -0.03em -0.04em 0 rgba(255, 0, 0, 0.75),
            0.025em 0.04em 0 rgba(0, 255, 255, 0.75);
        transform: translate(0);
    }
    15% {
        text-shadow: 
            0.05em 0 0 var(--primary-green),
            -0.03em -0.04em 0 rgba(255, 0, 0, 0.75),
            0.025em 0.04em 0 rgba(0, 255, 255, 0.75);
        transform: translate(0);
    }
    16% {
        text-shadow: 
            -0.05em -0.025em 0 var(--primary-green),
            0.025em 0.025em 0 rgba(255, 0, 0, 0.75),
            -0.05em -0.05em 0 rgba(0, 255, 255, 0.75);
        transform: translate(0.015em, 0.01em);
    }
    17% {
        text-shadow: 
            0.05em 0 0 var(--primary-green),
            -0.03em -0.04em 0 rgba(255, 0, 0, 0.75),
            0.025em 0.04em 0 rgba(0, 255, 255, 0.75);
        transform: translate(0);
    }
    18% {
        text-shadow: 
            0.05em 0 0 var(--primary-green),
            -0.03em -0.04em 0 rgba(255, 0, 0, 0.75),
            0.025em 0.04em 0 rgba(0, 255, 255, 0.75);
        transform: translate(0);
    }
    19% {
        text-shadow: 
            -0.05em -0.025em 0 var(--primary-green),
            0.025em 0.025em 0 rgba(255, 0, 0, 0.75),
            -0.05em -0.05em 0 rgba(0, 255, 255, 0.75);
        transform: translate(-0.015em, -0.01em);
    }
    20% {
        text-shadow: 
            0.05em 0 0 var(--primary-green),
            -0.03em -0.04em 0 rgba(255, 0, 0, 0.75),
            0.025em 0.04em 0 rgba(0, 255, 255, 0.75);
        transform: translate(0);
    }
    21% {
        text-shadow: 
            0.05em 0 0 var(--primary-green),
            -0.03em -0.04em 0 rgba(255, 0, 0, 0.75),
            0.025em 0.04em 0 rgba(0, 255, 255, 0.75);
        transform: translate(0);
    }
    22% {
        text-shadow: 
            -0.05em -0.025em 0 var(--primary-green),
            0.025em 0.025em 0 rgba(255, 0, 0, 0.75),
            -0.05em -0.05em 0 rgba(0, 255, 255, 0.75);
        transform: translate(0.015em, 0.01em);
    }
    23% {
        text-shadow: 
            0.05em 0 0 var(--primary-green),
            -0.03em -0.04em 0 rgba(255, 0, 0, 0.75),
            0.025em 0.04em 0 rgba(0, 255, 255, 0.75);
        transform: translate(0);
    }
    24% {
        text-shadow: 
            0.05em 0 0 var(--primary-green),
            -0.03em -0.04em 0 rgba(255, 0, 0, 0.75),
            0.025em 0.04em 0 rgba(0, 255, 255, 0.75);
        transform: translate(0);
    }
    45% {
        text-shadow: 
            0.05em 0 0 var(--primary-green),
            -0.03em -0.04em 0 rgba(255, 0, 0, 0.75),
            0.025em 0.04em 0 rgba(0, 255, 255, 0.75);
        transform: translate(0);
    }
    46% {
        text-shadow: 
            -0.05em -0.025em 0 var(--primary-green),
            0.025em 0.025em 0 rgba(255, 0, 0, 0.75),
            -0.05em -0.05em 0 rgba(0, 255, 255, 0.75);
        transform: translate(-0.02em, 0.015em);
    }
    47% {
        text-shadow: 
            0.05em 0 0 var(--primary-green),
            -0.03em -0.04em 0 rgba(255, 0, 0, 0.75),
            0.025em 0.04em 0 rgba(0, 255, 255, 0.75);
        transform: translate(0);
    }
    48% {
        text-shadow: 
            0.05em 0 0 var(--primary-green),
            -0.03em -0.04em 0 rgba(255, 0, 0, 0.75),
            0.025em 0.04em 0 rgba(0, 255, 255, 0.75);
        transform: translate(0);
    }
    49% {
        text-shadow: 
            -0.05em -0.025em 0 var(--primary-green),
            0.025em 0.025em 0 rgba(255, 0, 0, 0.75),
            -0.05em -0.05em 0 rgba(0, 255, 255, 0.75);
        transform: translate(0.02em, -0.015em);
    }
    50% {
        text-shadow: 
            0.05em 0 0 var(--primary-green),
            -0.03em -0.04em 0 rgba(255, 0, 0, 0.75),
            0.025em 0.04em 0 rgba(0, 255, 255, 0.75);
        transform: translate(0);
    }
    90% {
        text-shadow: 
            0.05em 0 0 var(--primary-green),
            -0.03em -0.04em 0 rgba(255, 0, 0, 0.75),
            0.025em 0.04em 0 rgba(0, 255, 255, 0.75);
        transform: translate(0);
    }
    91% {
        text-shadow: 
            -0.05em -0.025em 0 var(--primary-green),
            0.025em 0.025em 0 rgba(255, 0, 0, 0.75),
            -0.05em -0.05em 0 rgba(0, 255, 255, 0.75);
        transform: translate(0.01em, 0.005em);
    }
    92% {
        text-shadow: 
            0.05em 0 0 var(--primary-green),
            -0.03em -0.04em 0 rgba(255, 0, 0, 0.75),
            0.025em 0.04em 0 rgba(0, 255, 255, 0.75);
        transform: translate(0);
    }
    93% {
        text-shadow: 
            0.05em 0 0 var(--primary-green),
            -0.03em -0.04em 0 rgba(255, 0, 0, 0.75),
            0.025em 0.04em 0 rgba(0, 255, 255, 0.75);
        transform: translate(0);
    }
    94% {
        text-shadow: 
            -0.05em -0.025em 0 var(--primary-green),
            0.025em 0.025em 0 rgba(255, 0, 0, 0.75),
            -0.05em -0.05em 0 rgba(0, 255, 255, 0.75);
        transform: translate(-0.01em, -0.005em);
    }
    95% {
        text-shadow: 
            0.05em 0 0 var(--primary-green),
            -0.03em -0.04em 0 rgba(255, 0, 0, 0.75),
            0.025em 0.04em 0 rgba(0, 255, 255, 0.75);
        transform: translate(0);
    }
}

.title-main:nth-of-type(1) {
    animation-delay: 0.15s;
}

.title-main:nth-of-type(2) {
    animation-delay: 0.3s;
}

.hero-stats {
    display: flex;
    gap: 50px;
    justify-content: flex-start;
    align-items: center;
    padding: 25px 0;
    border-top: none;
    flex-wrap: wrap;
    position: relative;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0, 255, 136, 0.2);
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    filter: contrast(1.2) brightness(0.95);
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: unset;
}

.hero-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-description {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    font-weight: 400;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    text-align: center;
    letter-spacing: 0.3px;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    min-width: 140px;
}

.hero-stat-label {
    font-size: 11px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.hero-stat-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 1px;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
}

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

.btn {
    font-family: 'Space Grotesk', sans-serif;
    padding: 18px 50px;
    font-size: 14px;
    font-weight: 700;
    border: 4px solid var(--dark-bg);
    background: transparent;
    color: var(--primary-green);
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--dark-bg);
    border: 4px solid var(--dark-bg);
    box-shadow: 0 0 0 2px var(--primary-green), 0 0 20px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-green);
    border: 4px solid var(--dark-bg);
    box-shadow: 0 0 0 2px var(--primary-green), 0 0 30px rgba(0, 255, 136, 0.5);
}

.btn-secondary {
    border: 4px solid var(--dark-bg);
    box-shadow: 0 0 0 2px var(--primary-green), 0 0 15px rgba(0, 255, 136, 0.2);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--dark-bg);
    border: 4px solid var(--dark-bg);
    box-shadow: 0 0 0 2px var(--primary-green), 0 0 30px rgba(0, 255, 136, 0.5);
}

.about {
    min-height: 100vh;
    padding: 120px 0;
    position: relative;
    z-index: 1;
    border-top: none;
    border-bottom: none;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about::before,
.about::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0, 255, 136, 0.1);
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    filter: contrast(1.2) brightness(0.95);
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: unset;
}

.about::before {
    top: 0;
}

.about::after {
    bottom: 0;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    text-align: center;
    margin-bottom: 80px;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

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

.about-image img {
    width: 450px;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    border: 6px solid var(--primary-green);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4), 0 0 60px rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.6), 0 0 80px rgba(0, 255, 136, 0.3);
}

.about-text-wrapper {
    flex: 1;
    min-width: 350px;
    max-width: 600px;
}

@media (max-width: 1023px) {
    .about-text-wrapper {
        min-width: auto;
    }
}

.about-text {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 26px;
    line-height: 1.8;
    color: var(--text-light);
    text-align: left;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.3px;
}

.about-text-highlight {
    color: var(--primary-green);
    font-weight: 600;
}

.contract {
    min-height: 100vh;
    padding: 120px 0;
    position: relative;
    z-index: 1;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contract-content {
    max-width: 800px;
    margin: 0 auto;
}

.contract-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.contract-address {
    font-family: 'Space Grotesk', 'Courier New', monospace;
    font-size: 20px;
    color: var(--primary-green);
    background: rgba(0, 255, 136, 0.05);
    padding: 35px 40px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 12px;
    word-break: break-all;
    letter-spacing: 1px;
    width: 100%;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
}

.contract-address:hover {
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
    background: rgba(0, 255, 136, 0.08);
}

.btn-copy {
    font-family: 'Space Grotesk', sans-serif;
    padding: 18px 50px;
    font-size: 14px;
    font-weight: 700;
    border: 4px solid var(--dark-bg);
    background: var(--primary-green);
    color: var(--dark-bg);
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    box-shadow: 0 0 0 2px var(--primary-green), 0 0 20px rgba(0, 255, 136, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-copy:hover {
    background: transparent;
    color: var(--primary-green);
    border: 4px solid var(--dark-bg);
    box-shadow: 0 0 0 2px var(--primary-green), 0 0 30px rgba(0, 255, 136, 0.5);
}

.btn-copy:active {
    opacity: 0.8;
}

.stats {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    text-align: center;
}

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

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.stat-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 2px;
}

.footer {
    padding: 80px 0 40px;
    position: relative;
    z-index: 1;
    border-top: none;
    scroll-snap-align: start;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0, 255, 136, 0.1);
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    filter: contrast(1.2) brightness(0.95);
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: unset;
}

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

.footer-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.footer-x-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 12px;
    transition: all 0.3s;
}

.footer-x-link:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: scale(1.1);
}

.footer-x-link .x-icon {
    width: 28px;
    height: 28px;
    color: var(--text-light);
    transition: color 0.3s;
}

.footer-x-link:hover .x-icon {
    color: var(--primary-green);
}

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

.footer-text p {
    font-size: 14px;
    color: var(--text-gray);
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}


@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
        padding: 0 60px;
    }

    .hero-image img {
        width: 320px;
        height: 320px;
    }

    .title-main {
        font-size: 120px;
    }

    .title-line {
        font-size: 120px;
        text-transform: uppercase !important;
    }

    .hero-stats {
        gap: 60px;
    }

    .hero-stat-value {
        font-size: 42px;
    }

    .background-text span {
        font-size: 120px;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .container {
        padding: 0 25px;
    }

    .hero-image img {
        width: 200px;
        height: 200px;
    }

    .title-main {
        font-size: 45px;
        letter-spacing: 3px;
    }

    .title-line {
        font-size: 45px;
    }

    .hero-stat-value {
        font-size: 26px;
    }

    .about-image img {
        width: 310px;
        height: 310px;
    }

    .section-title {
        font-size: 30px;
    }

    .background-text span {
        font-size: 55px;
    }
}


@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        padding: 0 30px;
    }

    .hero-top {
        gap: 60px;
    }

    .hero-image img {
        width: 240px;
        height: 240px;
    }

    .hero-title-section {
        min-width: 300px;
    }

    .title-main {
        font-size: 70px;
        letter-spacing: 4px;
    }

    .title-line {
        font-size: 70px;
        text-transform: uppercase !important;
    }

    .hero-stats {
        gap: 40px;
    }

    .hero-stat-value {
        font-size: 32px;
    }

    .about-image img {
        width: 380px;
        height: 380px;
    }

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

    .nav-links {
        gap: 30px;
    }

    .background-text span {
        font-size: 90px;
    }
}

@media (min-width: 1024px) and (max-width: 1439px) {
    .container {
        padding: 0 40px;
    }

    .hero-top {
        gap: 70px;
    }

    .hero-image img {
        width: 260px;
        height: 260px;
    }

    .title-main {
        font-size: 85px;
        letter-spacing: 5px;
    }

    .title-line {
        font-size: 85px;
    }

    .hero-stat-value {
        font-size: 38px;
    }

    .about-image img {
        width: 400px;
        height: 400px;
    }

    .section-title {
        font-size: 44px;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 20px;
    }

    .navbar {
        padding: 20px 0;
    }

    .background-text {
        top: auto !important;
    }

    .navbar .container {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 15px;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .logo {
        font-size: 14px;
        letter-spacing: 1px;
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        flex-shrink: 0;
    }

    .logo-line {
        display: block;
    }

    .logo-line:not(:last-child)::after {
        content: none;
    }

    .nav-links {
        gap: 10px;
        font-size: 12px;
        flex-wrap: nowrap;
        align-items: center;
        flex-shrink: 1;
        justify-content: flex-end;
        display: flex;
    }

    .nav-links a {
        font-size: 11px;
        padding: 6px 8px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .nav-x-link {
        padding: 6px;
    }

    .nav-x-link .x-icon {
        width: 18px;
        height: 18px;
    }

    .hero {
        min-height: 100vh;
        padding-top: 200px;
        padding-bottom: 60px;
        overflow: hidden;
    }

    .hero-top {
        flex-direction: row;
        gap: 20px;
        align-items: flex-start;
        flex-wrap: nowrap;
    }

    .hero-title-section {
        min-width: auto;
        width: auto;
        flex: 1;
        align-items: flex-start;
        gap: 20px;
    }

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

    .hero-image {
        flex-shrink: 0;
    }

    .hero-image img {
        width: 120px;
        height: 120px;
        border-width: 4px;
    }

    .title-main {
        font-size: 32px;
        letter-spacing: 2px;
        line-height: 0.9;
    }

    .title-line {
        font-size: 32px;
        text-transform: uppercase !important;
        line-height: 0.9;
    }

    .hero-stats {
        justify-content: flex-start;
        gap: 20px;
        padding: 15px 0;
        flex-wrap: nowrap;
    }

    .hero-stat-item {
        align-items: flex-start;
        min-width: auto;
    }

    .hero-stat-value {
        font-size: 20px;
    }

    .hero-stat-label {
        font-size: 8px;
    }

    .hero-description {
        font-size: 14px;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        line-height: 1.5;
    }

    .hero-bottom {
        gap: 25px;
    }

    .hero-buttons {
        gap: 12px;
    }

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

    .section-title {
        font-size: 32px;
        letter-spacing: 2px;
        margin-bottom: 50px;
    }

    .about {
        min-height: 100vh;
        padding: 80px 0;
        overflow: hidden;
    }

    .about-content {
        flex-direction: column;
        gap: 50px;
        align-items: center;
    }

    .about-image img {
        width: 300px;
        height: 300px;
    }

    .about-text-wrapper {
        min-width: auto;
        max-width: 100%;
    }

    .about-text {
        font-size: 20px;
        text-align: center;
        line-height: 1.6;
    }

    .contract {
        min-height: 100vh;
        padding: 80px 0;
        overflow: hidden;
    }

    .contract-address {
        font-size: 14px;
        padding: 20px 15px;
        word-break: break-all;
    }

    .btn-copy {
        padding: 16px 40px;
        font-size: 13px;
        width: 100%;
        max-width: 300px;
    }

    .stat-value {
        font-size: 36px;
    }

    .background-text span {
        font-size: 60px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        padding: 16px 40px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contract-wrapper {
        width: 100%;
    }

    .footer {
        padding: 60px 0 30px;
    }

    .footer-links {
        gap: 30px;
    }

    .footer-x-link .x-icon {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 479px) {
    .container {
        padding: 0 15px;
    }

    .navbar {
        padding: 15px 0;
    }

    .background-text {
        top: auto !important;
    }

    .navbar .container {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .logo {
        font-size: 12px;
        letter-spacing: 1px;
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }

    .logo-line {
        display: block;
    }

    .logo-line:not(:last-child)::after {
        content: none;
    }

    .nav-links {
        gap: 8px;
        font-size: 11px;
        width: auto;
        justify-content: flex-end;
        flex-wrap: nowrap;
        align-items: center;
        display: flex;
        flex-shrink: 1;
    }

    .nav-links a {
        font-size: 10px;
        padding: 6px 8px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .nav-x-link {
        padding: 6px;
        flex-shrink: 0;
    }

    .nav-x-link .x-icon {
        width: 16px;
        height: 16px;
    }

    .hero {
        min-height: 100vh;
        padding-top: 200px;
        padding-bottom: 50px;
        overflow: hidden;
    }

    .hero-top {
        flex-direction: row;
        gap: 15px;
        align-items: flex-start;
        flex-wrap: nowrap;
    }

    .hero-title-section {
        flex: 1;
        gap: 15px;
        align-items: flex-start;
    }

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

    .hero-image {
        flex-shrink: 0;
    }

    .hero-image img {
        width: 100px;
        height: 100px;
        border-width: 3px;
    }

    .title-main {
        font-size: 28px;
        letter-spacing: 1.5px;
        line-height: 0.9;
    }

    .title-line {
        font-size: 28px;
        text-transform: uppercase !important;
        line-height: 0.9;
    }

    .hero-stats {
        gap: 15px;
        padding: 12px 0;
        flex-direction: row;
        justify-content: flex-start;
        flex-wrap: nowrap;
        width: auto;
    }

    .hero-stat-item {
        min-width: auto;
        width: auto;
        align-items: flex-start;
    }

    .hero-stat-value {
        font-size: 18px;
    }

    .hero-stat-label {
        font-size: 7px;
    }

    .hero-description {
        font-size: 16px;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        text-overflow: clip;
        overflow: visible;
    }

    .hero-buttons {
        gap: 12px;
        align-items: center;
        width: 100%;
    }

    .btn {
        padding: 14px 30px;
        font-size: 12px;
        letter-spacing: 1px;
        width: 100%;
        max-width: 280px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .section-title {
        font-size: 28px;
        letter-spacing: 1px;
        margin-bottom: 50px;
    }

    .about {
        min-height: 100vh;
        padding: 60px 0;
        overflow: hidden;
    }

    .about-image img {
        width: 280px;
        height: 280px;
    }

    .about-text {
        font-size: 18px;
        line-height: 1.6;
    }

    .contract {
        min-height: 100vh;
        padding: 60px 0;
        overflow: hidden;
    }

    .contract-address {
        font-size: 12px;
        padding: 18px 12px;
    }

    .btn-copy {
        padding: 14px 35px;
        font-size: 12px;
        width: 100%;
        max-width: 280px;
    }

    .footer {
        padding: 50px 0 25px;
    }

    .footer-x-link .x-icon {
        width: 22px;
        height: 22px;
    }

    .background-text span {
        font-size: 50px;
    }
}

@media (max-width: 767px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding-top: 160px;
        padding-bottom: 40px;
        overflow: hidden;
    }

    .hero-top {
        flex-direction: row;
        gap: 20px;
        flex-wrap: nowrap;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .hero-image {
        flex-shrink: 0;
    }

    .hero-image img {
        width: 120px;
        height: 120px;
    }

    .hero-title-section {
        min-width: auto;
        flex: 1;
        max-width: 100%;
        gap: 20px;
        align-items: flex-start;
    }

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

    .title-main {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .title-line {
        font-size: 32px;
        text-transform: uppercase !important;
    }

    .hero-stats {
        flex-direction: row;
        gap: 20px;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

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

@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 44px;
        padding: 16px 40px;
    }

    .nav-links a {
        padding: 8px 12px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .nav-x-link {
        min-width: 44px;
        min-height: 44px;
    }

    .btn-copy {
        min-height: 44px;
    }

    .hero-image img:hover {
        transform: none;
    }

    .about-image img:hover {
        transform: none;
    }
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
    -webkit-appearance: none;
}

::-webkit-scrollbar-button {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    -webkit-appearance: none;
    appearance: none;
}

::-webkit-scrollbar-button:start:decrement {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

::-webkit-scrollbar-button:end:increment {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

::-webkit-scrollbar-button:vertical:start:decrement {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

::-webkit-scrollbar-button:vertical:end:increment {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

::-webkit-scrollbar-button:horizontal:start:decrement {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

::-webkit-scrollbar-button:horizontal:end:increment {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
    border-left: 1px solid rgba(0, 255, 136, 0.1);
}

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

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 6px;
    border: 2px solid var(--darker-bg);
    min-height: 30px;
}

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

::-webkit-scrollbar-thumb:active {
    background: var(--dark-green);
}

html {
    scrollbar-width: none;
}

* {
    scrollbar-width: none;
}

