/* Remove rewards calculator and footer styles */
:root {
    --primary: #facc15;    /* Yellow */
    --bg: #0f172a;         /* Dark background */
    --accent: #9333ea;     /* Purple */
    --gradient: linear-gradient(135deg, #9333ea, #06b6d4);
    --text: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.05);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    user-select: text !important;
    -webkit-user-select: text !important;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo img {
    height: 40px;
    width: auto;
}

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

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

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

.buy-button {
    background: var(--gradient);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
}

.buy-button:hover {
    opacity: 0.9;
    color: var(--text) !important;
}

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

/* Tech Grid Background */
#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to right, rgba(147, 51, 234, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(147, 51, 234, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: perspective(500px) rotateX(30deg);
    transform-origin: center;
    animation: gridMove 20s linear infinite;
    z-index: 1;
}

#hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, 
        rgba(15, 23, 42, 0) 0%,
        rgba(15, 23, 42, 0.5) 50%,
        rgba(15, 23, 42, 1) 100%);
    z-index: 2;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 40px;
    }
}

/* Background Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none !important;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(147, 51, 234, 0.3);
    border-radius: 50%;
    pointer-events: none !important;
    animation: particleFloat linear infinite;
}

.particle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(6, 182, 212, 0.3);
    border-radius: 50%;
    filter: blur(2px);
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translateY(-20vh) scale(1);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 4;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
}

.hero-logo {
    width: 300px;
    height: auto;
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(147, 51, 234, 0.3));
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 4.5rem;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #9945FF, #14F195);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 30px rgba(153, 69, 255, 0.3);
}

.hero-content h1::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 70%;
    background: var(--primary);
    animation: blink 0.7s infinite;
}

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

.hero-content p {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Enhance CTA button */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #9333ea, #06b6d4);
    color: var(--text);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.4);
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #06b6d4, #9333ea);
}

/* Sections */
section {
    padding: 6rem 1rem;
    position: relative;
    z-index: 10;
    transition: all 0.5s ease-in-out;
}

/* How it Works Section */
#how-it-works {
    background: linear-gradient(180deg, var(--bg) 0%, rgba(26, 31, 53, 0.8) 100%);
    position: relative;
    overflow: hidden;
    padding: 8rem 1rem;
    margin-top: -2rem;
    margin-bottom: -4rem; /* Create overlap with About section */
}

#how-it-works::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 31, 53, 0.95) 100%);
    pointer-events: none;
    z-index: 2;
}

/* Connecting element between sections */
.how-it-works-container::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg, rgba(147, 51, 234, 0.5) 0%, rgba(20, 241, 149, 0.5) 100%);
    z-index: 3;
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.how-it-works-container h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(to right, #9945FF, #14F195);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGlow 3s ease-in-out infinite;
}

.strategy-box {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(147, 51, 234, 0.2);
    transition: all 0.3s ease;
}

.strategy-intro {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 500;
}

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

.strategy-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    border: 1px solid rgba(147, 51, 234, 0.2);
    transition: all 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-5px);
    border-color: rgba(147, 51, 234, 0.4);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.2);
}

.strategy-card .percentage {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    background: linear-gradient(to right, #9945FF, #14F195);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.strategy-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.winning-positions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 0 auto;
    max-width: 600px;
    border: 1px solid rgba(147, 51, 234, 0.2);
    transition: all 0.3s ease;
}

.winning-positions:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(147, 51, 234, 0.4);
}

.winning-positions svg {
    min-width: 24px;
    color: #14F195;
}

.winning-positions p {
    margin: 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .how-it-works-container h2 {
        font-size: 2.5rem;
    }
    
    .strategy-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .strategy-card {
        width: 100%;
    }
    
    .winning-positions {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
}

/* About Section */
#about {
    position: relative;
    background: linear-gradient(180deg, rgba(26, 31, 53, 0.95) 0%, #1a1f35 100%);
    overflow: hidden;
    margin-bottom: -2rem;
    padding-top: 8rem; /* Increased padding for smooth transition */
    transition: all 0.5s ease-in-out;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(0deg, transparent 0%, rgba(26, 31, 53, 0.95) 100%);
    pointer-events: none;
    z-index: 2;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 50;
    transition: transform 0.5s ease-in-out;
}

.about-content {
    position: relative;
    z-index: 2;
    pointer-events: auto !important;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: left;
    transition: transform 0.5s ease-in-out;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    transition: opacity 0.5s ease-in-out;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease-in-out;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 50%;
    filter: drop-shadow(0 0 30px rgba(147, 51, 234, 0.3));
    animation: pulseGlow 3s ease-in-out infinite;
    transition: transform 0.5s ease-in-out, filter 0.5s ease-in-out;
}

.tech-circle {
    position: absolute;
    border: 2px solid rgba(147, 51, 234, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.tech-circle:nth-child(1) {
    width: 300px;
    height: 300px;
}

.tech-circle:nth-child(2) {
    width: 400px;
    height: 400px;
    border-style: dashed;
    animation-direction: reverse;
}

.tech-circle:nth-child(3) {
    width: 500px;
    height: 500px;
    border-width: 1px;
    animation-duration: 30s;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulseGlow {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(147, 51, 234, 0.3)); }
    50% { filter: drop-shadow(0 0 50px rgba(147, 51, 234, 0.5)); }
}

/* Tokenomics Section */
#rewards {
    background: linear-gradient(180deg, #1a1f35 0%, #1e1339 100%);
    padding: 6rem 1rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

#rewards::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, #1e1339 100%);
    pointer-events: none;
}

#tokenomics {
    background: linear-gradient(180deg, #1e1339 0%, #1a1f35 100%);
    position: relative;
    overflow: hidden;
    padding-top: 8rem;
    padding-bottom: 12rem;
    margin-top: -4rem;
    z-index: 10;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

#tokenomics::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(180deg, transparent 0%, #1a1f35 100%);
    pointer-events: none;
}

.tokenomics-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 50;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.tokenomics-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.tokenomics-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.tokenomics-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.tokenomics-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(147, 51, 234, 0.2);
    position: relative;
    z-index: 60;
    pointer-events: auto !important;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.tokenomics-card:nth-child(1) {
    transition-delay: 0.3s;
}

.tokenomics-card:nth-child(2) {
    transition-delay: 0.5s;
}

.tokenomics-card:nth-child(3) {
    transition-delay: 0.7s;
}

.tokenomics-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.tokenomics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(147, 51, 234, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.tokenomics-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.2);
}

.tokenomics-card:hover::before {
    transform: translateX(100%);
}

.tokenomics-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.01em;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tokenomics-card .value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(to right, #9945FF, #14F195);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    transition: all 0.3s ease;
}

.tokenomics-card:hover .value {
    transform: scale(1.05);
    background: linear-gradient(to right, #facc15, #14F195);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tokenomics-card ul {
    list-style: none;
    padding: 0;
}

.tokenomics-card ul li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tokenomics-card ul li:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.tokenomics-card ul li span:last-child {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Tech background elements */
.tech-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none !important;
    z-index: 1;
}

/* Roadmap Section */
#roadmap {
    background: linear-gradient(180deg, #1a1f35 0%, #1e1339 100%);
    position: relative;
    overflow: hidden;
    padding-top: 8rem;
    margin-top: -4rem;
    z-index: 11;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.roadmap-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 50;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.roadmap-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.roadmap-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.roadmap-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.roadmap-grid.visible {
    opacity: 1;
    transform: translateY(0);
}

.roadmap-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(147, 51, 234, 0.2);
    position: relative;
    z-index: 60;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.roadmap-card:nth-child(1) {
    transition-delay: 0.3s;
}

.roadmap-card:nth-child(2) {
    transition-delay: 0.5s;
}

.roadmap-card:nth-child(3) {
    transition-delay: 0.7s;
}

.roadmap-card.visible {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 8px 32px rgba(147, 51, 234, 0.1);
}

.roadmap-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(147, 51, 234, 0.2);
    border-color: rgba(147, 51, 234, 0.4);
}

.roadmap-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.01em;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(to right, #facc15, #14F195);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.roadmap-card ul {
    list-style: none;
    padding: 0;
}

.roadmap-card ul li {
    margin: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.roadmap-card.visible ul li {
    opacity: 1;
    transform: translateX(0);
}

.roadmap-card ul li:nth-child(1) { transition-delay: 0.4s; }
.roadmap-card ul li:nth-child(2) { transition-delay: 0.6s; }
.roadmap-card ul li:nth-child(3) { transition-delay: 0.8s; }

.roadmap-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.roadmap-card.visible ul li::before {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    section {
        padding: 4rem 1rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

    .tech-circle {
        display: none;
    }

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

    .roadmap-grid::before {
        display: none;
    }
}

/* Rewards Counter Section */
.rewards-container {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.rewards-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.rewards-title {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.rewards-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.rewards-value {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.rewards-value.visible {
    opacity: 1;
    transform: scale(1);
}

.time-buttons {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
}

.time-buttons.visible {
    opacity: 1;
    transform: translateY(0);
}

.connect-wallet-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #9945FF, #14F195);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    margin: 1rem auto;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
}

.connect-wallet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(147, 51, 234, 0.3);
}

.token-input {
    margin: 2rem 0;
}

.token-input label {
    display: block;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 1.1rem;
}

.token-input input {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 12px;
    color: white;
    text-align: center;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.token-input input:focus {
    outline: none;
    border-color: #14F195;
    box-shadow: 0 0 15px rgba(20, 241, 149, 0.2);
}

.time-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(147, 51, 234, 0.2);
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    min-width: 100px;
    font-family: var(--font-heading);
    letter-spacing: 0.01em;
}

.time-btn:hover {
    background: rgba(147, 51, 234, 0.2);
    transform: translateY(-2px);
}

.time-btn.active {
    background: linear-gradient(45deg, #9945FF, #14F195);
    border: none;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

/* Footer */
footer {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(147, 51, 234, 0.2);
    padding: 3rem 0 1rem;
    position: relative;
    z-index: 100;
    margin-top: -2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    pointer-events: auto !important;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social img {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.social-link:hover img {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

@media (max-width: 768px) {
    .rewards-container {
        margin: 1rem;
    }
    
    .time-buttons {
        gap: 0.3rem;
    }
    
    .time-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Ensure all interactive elements are clickable */
a, button, input, .time-btn, .social-link, .nav-links a {
    position: relative;
    z-index: 1000 !important;
    cursor: pointer !important;
    pointer-events: auto !important;
}

/* Remove any pointer-events: none from content */
.about-content,
.tokenomics-content,
.roadmap-content,
.rewards-content,
.footer-content {
    pointer-events: auto !important;
}

/* Ensure text is selectable */
p, h1, h2, h3, h4, h5, h6, span, div {
    pointer-events: auto !important;
}

/* Add smooth transitions for all sections */
section > * {
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

/* Contract Copy Popup */
.copy-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 15px;
    padding: 20px 40px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(147, 51, 234, 0.2);
}

.copy-popup.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.copy-popup::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(147, 51, 234, 0.5);
    border-radius: 18px;
    animation: borderGlow 2s linear infinite;
}

@keyframes borderGlow {
    0%, 100% {
        border-color: rgba(147, 51, 234, 0.5);
    }
    50% {
        border-color: rgba(20, 241, 149, 0.5);
    }
}

.copy-popup p {
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    margin: 0;
}

/* Contract Display Styling */
.contract-display {
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(147, 51, 234, 0.2);
    transition: all 0.3s ease;
}

.contract-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem;
    border-radius: 8px;
    margin-top: 0.5rem;
}

#contract-address {
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 1rem;
    width: 100%;
    padding: 0.5rem;
    font-family: monospace;
}

.copy-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: rgba(147, 51, 234, 0.2);
    color: var(--primary);
}

.copy-btn.copied {
    color: #14F195;
    animation: pulse 0.5s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(147, 51, 234, 0.2);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(147, 51, 234, 0.4);
}

.feature svg {
    min-width: 24px;
    color: var(--primary);
}

.feature p {
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .feature {
        width: 100%;
    }

    .tokenomics-card .value {
        font-size: 2rem;
    }
}

/* Add tech-style animations */
@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(153, 69, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 30px rgba(20, 241, 149, 0.4);
    }
}

.hero-content h1,
.tokenomics-card .value,
.roadmap-card h3 {
    animation: textGlow 3s ease-in-out infinite;
} 