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

:root {
    --primary-color: #00d4ff;
    --secondary-color: #ff00ff;
    --accent-color: #00ff88;
    --tertiary-color: #ff6b6b;
    --quaternary-color: #4ecdc4;
    --dark-bg: #0a0a0f;
    --darker-bg: #050508;
    --light-text: #ffffff;
    --gray-text: #b8c5d6;
    --muted-text: #8896a8;
    --enterprise-blue: #1e3a8a;
    --enterprise-dark: #0f172a;
    --enterprise-light: #f8fafc;
    --accent-gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --enterprise-gradient: linear-gradient(135deg, #1e3a8a, #312e81, #1e1b4b);
    --vibrant-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --neon-gradient: linear-gradient(135deg, #00d4ff, #ff00ff, #00ff88);
    --sunset-gradient: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
    --aurora-gradient: linear-gradient(135deg, #00c9ff, #92fe9d, #fc00ff);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

html {
    width: 100%;
    min-width: 100%;
    overflow-x: visible;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--enterprise-dark);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: visible;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 0, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(0, 255, 136, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 10% 90%, rgba(30, 58, 138, 0.08) 0%, transparent 40%);
    background-attachment: fixed;
    font-feature-settings: 'liga' 1, 'kern' 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    width: 100%;
    min-width: 100%;
    margin: 0;
    padding: 0;
}

/* Particle System */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    font-size: 20px;
    opacity: 0.3;
    animation: float-up 15s infinite linear;
    pointer-events: none;
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Dynamic Gradient Background */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #00d4ff, #ff00ff, #00ff88, #ff6b6b);
    background-size: 400% 400%;
    animation: gradient-shift 20s ease infinite;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Mouse Glow Effect */
.mouse-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.mouse-glow.active {
    opacity: 1;
}

/* Ocean Wave Background */
.ocean-waves {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    opacity: 0.3;
}

.wave {
    position: absolute;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 212, 255, 0.1), 
        transparent
    );
    border-radius: 45%;
    animation: wave-motion 8s infinite ease-in-out;
}

.wave-1 {
    bottom: -50%;
    left: -50%;
    animation-duration: 12s;
    opacity: 0.3;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 212, 255, 0.15), 
        transparent
    );
}

.wave-2 {
    bottom: -45%;
    left: -45%;
    animation-duration: 10s;
    animation-delay: -2s;
    opacity: 0.25;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 255, 136, 0.12), 
        transparent
    );
}

.wave-3 {
    bottom: -40%;
    left: -40%;
    animation-duration: 14s;
    animation-delay: -4s;
    opacity: 0.2;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 0, 255, 0.1), 
        transparent
    );
}

.wave-4 {
    bottom: -35%;
    left: -35%;
    animation-duration: 16s;
    animation-delay: -6s;
    opacity: 0.15;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 107, 107, 0.08), 
        transparent
    );
}

@keyframes wave-motion {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    25% {
        transform: translateX(-20px) translateY(-30px) rotate(1deg);
    }
    50% {
        transform: translateX(-40px) translateY(-20px) rotate(-1deg);
    }
    75% {
        transform: translateX(-20px) translateY(-40px) rotate(2deg);
    }
}

/* Neon Grid System */
.neon-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.05;
}

.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.3) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-pulse 4s ease-in-out infinite;
}

.grid-lines.horizontal {
    background-image: linear-gradient(rgba(0, 212, 255, 0.3) 1px, transparent 1px);
}

.grid-lines.vertical {
    background-image: linear-gradient(90deg, rgba(0, 212, 255, 0.3) 1px, transparent 1px);
}

.grid-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.grid-nodes::before,
.grid-nodes::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
    animation: node-float 3s ease-in-out infinite;
}

.grid-nodes::before {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.grid-nodes::after {
    top: 60%;
    right: 25%;
    animation-delay: 1.5s;
}

@keyframes grid-pulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

@keyframes node-float {
    0%, 100% { 
        transform: translateY(0px); 
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-10px); 
        opacity: 1;
    }
}

/* Parallax Layers */
.parallax-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.layer-1 {
    background: radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.03) 0%, transparent 50%);
    transform: translateZ(-1px) scale(2);
}

.layer-2 {
    background: radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.03) 0%, transparent 50%);
    transform: translateZ(-2px) scale(3);
}

.layer-3 {
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.02) 0%, transparent 60%);
    transform: translateZ(-3px) scale(4);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

nav {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    letter-spacing: -0.02em;
}

.logo-img {
    height: 40px;
    width: auto;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: rgba(74, 158, 255, 0.1);
    transform: translateY(-1px);
}

.buy-button {
    background: var(--enterprise-gradient);
    color: var(--light-text);
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.buy-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.buy-button:hover::before {
    left: 100%;
}

.buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.4);
    background: var(--neon-gradient);
    border-color: var(--primary-color);
}

/* Magnetic Button Effect */
.magnetic-btn {
    position: relative;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Glitch Text Effect */
.glitch-text {
    position: relative;
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    letter-spacing: 0.05em;
}

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

.glitch-text::before {
    animation: glitch-1 0.5s infinite;
    color: var(--secondary-color);
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-2 0.5s infinite;
    color: var(--accent-color);
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
    }
    20% {
        clip-path: inset(20% 0 30% 0);
        transform: translate(-2px, 2px);
    }
    40% {
        clip-path: inset(50% 0 20% 0);
        transform: translate(2px, -2px);
    }
    60% {
        clip-path: inset(10% 0 60% 0);
        transform: translate(-2px, 1px);
    }
    80% {
        clip-path: inset(80% 0 5% 0);
        transform: translate(1px, -1px);
    }
}

@keyframes glitch-2 {
    0%, 100% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
    }
    20% {
        clip-path: inset(60% 0 10% 0);
        transform: translate(2px, -1px);
    }
    40% {
        clip-path: inset(20% 0 50% 0);
        transform: translate(-1px, 2px);
    }
    60% {
        clip-path: inset(30% 0 40% 0);
        transform: translate(1px, -2px);
    }
    80% {
        clip-path: inset(5% 0 80% 0);
        transform: translate(-2px, 1px);
    }
}


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 212, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 0, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 10% 20%, rgba(255, 107, 107, 0.08) 0%, transparent 40%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 212, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 75% 75%, rgba(255, 0, 255, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 10%, rgba(0, 255, 136, 0.08) 0%, transparent 30%);
    animation: vibrant-float 6s ease-in-out infinite;
}

@keyframes vibrant-float {
    0%, 100% { 
        opacity: 0.6;
        transform: translateY(0px) scale(1) rotate(0deg);
    }
    33% { 
        opacity: 0.8;
        transform: translateY(-15px) scale(1.02) rotate(1deg);
    }
    66% { 
        opacity: 0.9;
        transform: translateY(-25px) scale(1.05) rotate(-1deg);
    }
}

.hero-banner {
    margin-bottom: 2rem;
    text-align: center;
    animation: banner-float 6s ease-in-out infinite;
}

.banner-img {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    max-width: 400px;
    width: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    object-fit: contain;
}

.banner-img:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 212, 255, 0.4);
    border-color: var(--primary-color);
}

@keyframes banner-float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
    }
    50% { 
        transform: translateY(-10px) rotate(1deg);
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.hero h1 {
    font-size: clamp(2.5rem, 10vw, 5rem);
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
    animation: text-reveal 1.5s ease-out;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
    position: relative;
}

@keyframes text-reveal {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(-20deg);
        filter: blur(10px);
    }
    50% {
        opacity: 0.5;
        transform: translateY(20px) rotateX(-10deg);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
        filter: blur(0);
    }
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--neon-gradient);
    border-radius: 2px;
    animation: line-glow 2s ease-in-out infinite alternate;
}

@keyframes line-glow {
    0% { 
        opacity: 0.5;
        transform: translateX(-50%) scaleX(0.8);
    }
    100% { 
        opacity: 1;
        transform: translateX(-50%) scaleX(1.2);
    }
}

@keyframes vibrant-glow {
    0% { 
        filter: brightness(1) saturate(1) hue-rotate(0deg);
        transform: translateY(0px) scale(1);
    }
    25% { 
        filter: brightness(1.2) saturate(1.3) hue-rotate(10deg);
        transform: translateY(-2px) scale(1.01);
    }
    50% { 
        filter: brightness(1.3) saturate(1.5) hue-rotate(20deg);
        transform: translateY(-3px) scale(1.02);
    }
    75% { 
        filter: brightness(1.2) saturate(1.3) hue-rotate(10deg);
        transform: translateY(-2px) scale(1.01);
    }
    100% { 
        filter: brightness(1.1) saturate(1.2) hue-rotate(0deg);
        transform: translateY(-1px) scale(1.005);
    }
}

.tagline {
    font-size: clamp(1.1rem, 4vw, 1.4rem);
    color: #e0e0e0;
    margin-bottom: 2.5rem;
    font-weight: 400;
    opacity: 1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding: 0 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}


.cta-button {
    display: inline-block;
    background: var(--neon-gradient);
    color: var(--light-text);
    padding: 1.2rem 2.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(1rem, 4vw, 1.2rem);
    margin-bottom: 3rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
    border: 2px solid rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.6);
    background: var(--aurora-gradient);
    border-color: rgba(0, 255, 136, 0.5);
}

.contract-container {
    margin-bottom: 3rem;
}

.contract-container .cta-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 2rem;
    gap: 1rem;
    text-decoration: none;
    max-width: 800px;
    margin: 0 auto;
}

.contract-label {
    font-weight: 600;
    color: var(--light-text);
    opacity: 0.9;
    white-space: nowrap;
}

.contract-address {
    font-weight: 700;
    color: var(--light-text);
    font-family: 'Courier New', monospace;
    font-size: clamp(0.8rem, 2vw, 1rem);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    flex: 1;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.copy-btn svg {
    color: var(--light-text);
    transition: all 0.3s ease;
}

.copy-btn:hover svg {
    color: var(--primary-color);
    filter: drop-shadow(0 0 5px var(--primary-color));
}

.copy-feedback {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.copy-feedback.show {
    opacity: 1;
    top: -35px;
}

.copy-feedback::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--primary-color);
}

.scroll-indicator {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sections */
section {
    padding: 5rem 0;
}

.anomaly {
    background: var(--darker-bg);
    text-align: center;
    position: relative;
}

.anomaly::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 20%, rgba(74, 158, 255, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.anomaly h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
    font-weight: 700;
    position: relative;
    z-index: 1;
    animation: text-reveal 1.5s ease-out, vibrant-glow 3s ease-in-out infinite alternate;
    transform-style: preserve-3d;
}

.buy-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--accent-color);
    text-shadow: 0 0 25px rgba(0, 255, 136, 0.3);
    font-weight: 700;
    position: relative;
    z-index: 1;
    animation: text-reveal 1.5s ease-out 0.5s both, vibrant-glow 3s ease-in-out infinite alternate;
    transform-style: preserve-3d;
}

.community h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    text-shadow: 0 0 25px rgba(255, 0, 255, 0.3);
    font-weight: 700;
    position: relative;
    z-index: 1;
    animation: text-reveal 1.5s ease-out 1s both, vibrant-glow 3s ease-in-out infinite alternate;
    transform-style: preserve-3d;
}

/* Advanced Text Effects */
.text-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.text-3d:hover {
    transform: rotateY(5deg) rotateX(-5deg);
    transition: transform 0.3s ease;
}

.word-reveal span {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: word-reveal-animation 0.6s ease forwards;
}

@keyframes word-reveal-animation {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typing Cursor */
.typing-cursor::after {
    content: '|';
    animation: blink 1s infinite;
    color: var(--primary-color);
    font-weight: 100;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.models-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    font-weight: 600;
    opacity: 0.9;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.model-card {
    background: rgba(0, 212, 255, 0.12);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.6s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.15);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.model-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.model-card:hover::before {
    opacity: 1;
}

.model-card:hover {
    transform: translateY(-12px) scale(1.03) rotateY(5deg) rotateX(-5deg);
    box-shadow: 0 35px 70px rgba(0, 212, 255, 0.4);
    border-color: var(--primary-color);
    background: rgba(0, 212, 255, 0.18);
}

.model-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Buy Section */
.buy-section {
    background: var(--dark-bg);
    position: relative;
}

.buy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(16, 185, 129, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(124, 58, 237, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.buy-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--accent-color);
    text-shadow: 0 0 25px rgba(16, 185, 129, 0.3);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.buy-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.step {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    background: var(--accent-gradient);
    color: var(--light-text);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.step-content p {
    color: var(--gray-text);
    margin-bottom: 1rem;
}

.step-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.step-link:hover {
    color: var(--secondary-color);
}

/* Tokenomics Section */
.tokenomics {
    background: var(--darker-bg);
    text-align: center;
}

.tokenomics h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.tokenomics-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.tokenomics-content p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Community Section */
.community {
    background: var(--dark-bg);
}

.community h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.community-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.community-link {
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 20px;
    padding: 2rem;
    text-decoration: none;
    color: var(--light-text);
    transition: all 0.4s ease;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.12);
}

.community-link:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
    border-color: var(--primary-color);
    background: rgba(0, 212, 255, 0.15);
}

.link-icon {
    font-size: 2.5rem;
    width: 60px;
    text-align: center;
}

.link-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.link-content p {
    color: var(--gray-text);
    margin-bottom: 0.5rem;
}

.link-action {
    color: var(--secondary-color);
    font-weight: bold;
}

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

.community-cta p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--gray-text);
}

/* FAQ Section */
.faq {
    background: var(--darker-bg);
    text-align: center;
}

.faq h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.faq-content {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-links a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.report-link {
    color: var(--gray-text) !important;
}

/* Footer */
footer {
    background: var(--dark-bg);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 2rem 0;
}

.disclaimer {
    text-align: center;
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.credit {
    text-align: center;
    color: var(--primary-color);
}

/* Enterprise Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .nav-menu {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        width: 100%;
    }
    
    .nav-menu a {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .buy-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
    
    .hero-banner {
        margin-bottom: 1.5rem;
    }
    
    .banner-img {
        max-height: 100px;
        max-width: 300px;
        border-radius: 12px;
    }
    
    .hero h1 {
        font-size: clamp(2rem, 12vw, 3.5rem);
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero h1::after {
        width: 80px;
        bottom: -8px;
    }
    
    .tagline {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .tagline::before,
    .tagline::after {
        display: none;
    }
    
    .contract-container {
        margin-bottom: 2rem;
    }
    
    .contract-container .cta-button {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1rem 1.5rem;
        width: 90%;
        max-width: 400px;
    }
    
    .contract-label {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .contract-address {
        font-size: 0.8rem;
        text-align: center;
        word-break: break-all;
        white-space: normal;
        line-height: 1.4;
    }
    
    .copy-btn {
        position: absolute;
        top: 1rem;
        right: 1rem;
        min-width: 35px;
        height: 35px;
    }
    
    .copy-feedback {
        top: -25px;
        font-size: 0.7rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        margin-bottom: 2rem;
        width: 90%;
        max-width: 300px;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .models-grid,
    .buy-steps,
    .community-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .model-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .community-link {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .link-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        text-align: center;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    h2 {
        font-size: 2rem !important;
        margin-bottom: 2rem !important;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.5rem;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .hero h1 {
        font-size: clamp(1.8rem, 15vw, 3rem);
    }
    
    .tagline {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 95%;
    }
    
    .banner-img {
        max-height: 80px;
        max-width: 250px;
        border-radius: 10px;
    }
    
    .model-card,
    .community-link {
        margin: 0 0.5rem;
        padding: 1rem;
    }
    
    .disclaimer {
        font-size: 0.8rem;
        padding: 0 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Container for proper layout */
.container {
    max-width: 100%;
    padding: 0 2rem;
    margin: 0 auto;
    width: 100%;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}
