:root {
    --primary-color: #A1D6E2;
    --bg-color: #1B262C;
    --text-color: #A1D6E2;
    --modal-bg: rgba(27, 38, 44, 0.95);
    --frost-color: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Press Start 2P', cursive;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Cursor */
.cursor, .pointer {
    width: 20px;
    height: 20px;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    mix-blend-mode: difference;
}

.cursor {
    width: 8px;
    height: 8px;
    background: var(--frost-color);
    border-radius: 50%;
    opacity: 0.7;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

.pointer {
    display: none;
}

/* Add this animation for the pointer hover effect */
@keyframes pulsePointer {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

.pointer.active {
    animation: pulsePointer 1s ease-in-out infinite;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--modal-bg);
    z-index: 1000;
    overflow-y: auto;
}

.modal.active {
    display: block;
}

.modal-content {
    max-width: 800px;
    margin: 50px auto;
    background: var(--bg-color);
    border: 2px solid var(--primary-color);
    padding: 2rem;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.close-button {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 2rem;
    cursor: pointer;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem;
    z-index: 100;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
}

nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.8rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

nav a:hover {
    opacity: 1;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
}

.hero-content {
    max-width: 800px;
}

.glitch {
    font-size: 4rem;
    position: relative;
    color: var(--frost-color);
    text-shadow: 0 0 10px rgba(161, 214, 226, 0.8),
                 0 0 20px rgba(161, 214, 226, 0.5),
                 0 0 30px rgba(161, 214, 226, 0.3);
    animation: freezeGlitch 2s infinite;
}

.subtitle {
    font-size: 1rem;
    margin: 1rem 0 3rem 0;
    opacity: 0.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Contract Address */
.contract-address {
    margin-top: 2rem;
    font-size: 0.8rem;
}

.address-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.copy-button {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.2rem;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.copy-button:hover {
    transform: scale(1.1);
}

/* Tokenomics Section */
.tokenomics {
    padding: 4rem 1rem;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stat-box {
    border: 2px solid var(--primary-color);
    padding: 2rem;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

/* How to Buy Section */
.how-to-buy {
    padding: 4rem 1rem;
    text-align: center;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1200px;
}

.step {
    border: 2px solid var(--primary-color);
    padding: 2rem;
    position: relative;
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-color);
    padding: 0 1rem;
    color: var(--primary-color);
}

/* Buttons */
.cta-button {
    text-decoration: none;
    background: transparent;
    border: 2px solid var(--frost-color);
    color: var(--frost-color);
    padding: 1rem 2rem;
    font-family: inherit;
    margin: 1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--frost-color);
    color: var(--bg-color);
}

/* Footer */
footer {
    position: fixed;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 0.7rem;
    opacity: 0.7;
    color: #FFFFFF;
    z-index: 10;
}

footer p {
    margin: 0;
    padding: 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-links a {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.7;
}

/* Animations */
@keyframes freezeGlitch {
    0% {
        opacity: 1;
        transform: skewX(0deg);
        filter: blur(0px);
    }
    20% {
        transform: skewX(-15deg);
        filter: blur(4px);
        text-shadow: -2px 0 var(--frost-color);
    }
    21% {
        transform: skewX(15deg);
        filter: blur(0px);
    }
    25% {
        transform: skewX(0deg);
        filter: blur(0px);
        opacity: 0.8;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: skewX(0deg);
        filter: blur(0px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    nav ul {
        gap: 1rem;
    }

    nav a {
        font-size: 0.6rem;
    }
}

/* Add to your existing styles.css */
.virus-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
}

.virus {
    position: absolute;
    width: 20px;
    height: 20px;
    opacity: 0;
    transform: scale(0);
    animation: snowfallAppear 4s ease-out forwards;
}

.spike {
    position: absolute;
    width: 2px;
    height: 10px;
    background: var(--frost-color);
    left: 50%;
    top: 50%;
    transform-origin: center;
    box-shadow: 0 0 5px var(--frost-color);
}

@keyframes snowfallAppear {
    0% {
        opacity: 0;
        transform: translateY(-20px) rotate(0deg) scale(0);
    }
    50% {
        opacity: 0.8;
        transform: translateY(40vh) rotate(180deg) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(100vh) rotate(360deg) scale(0.5);
    }
}

.manifesto {
    padding: 4rem 2rem;
    background: linear-gradient(rgba(27, 38, 44, 0.9), rgba(27, 38, 44, 0.95));
    backdrop-filter: blur(5px);
    border: 1px solid rgba(161, 214, 226, 0.1);
    position: relative;
    overflow: hidden;
}

.manifesto-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.manifesto h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.manifesto .subtitle {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.text-section {
    margin-bottom: 3rem;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    background: rgba(161, 214, 226, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(161, 214, 226, 0.1);
    backdrop-filter: blur(5px);
}

.text-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.virus-symbol {
    width: 40px;
    height: 40px;
    position: absolute;
    right: -60px;
    top: 50%;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
}

.rotating {
    animation: rotate 4s linear infinite;
}

.pulsing {
    animation: pulse 2s ease infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 0.7; }
}

.principles ul {
    list-style: none;
    padding: 0;
}

.principles li {
    margin: 1rem 0;
    padding-left: 2rem;
    position: relative;
}

.principles li::before {
    content: '⟳';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Add to your existing CSS */
.virus-cluster {
    position: absolute;
    right: -100px;
    top: 50%;
    width: 80px;
    height: 80px;
}

.virus-cluster::before,
.virus-cluster::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary-color);
    animation: float 3s ease-in-out infinite;
}

.virus-cluster::after {
    right: -20px;
    top: -20px;
    animation-delay: -1.5s;
}

.dna-helix {
    position: absolute;
    left: -60px;
    height: 100%;
    width: 20px;
    animation: dnaRotate 10s linear infinite;
}

.dna-helix::before,
.dna-helix::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: dnaMove 2s ease-in-out infinite;
}

.dna-helix::after {
    animation-delay: -1s;
}

.transformation-list li {
    transform: translateX(-20px);
    opacity: 0;
    animation: slideIn 0.5s ease forwards;
}

.transformation-list li:nth-child(2) { animation-delay: 0.2s; }
.transformation-list li:nth-child(3) { animation-delay: 0.4s; }
.transformation-list li:nth-child(4) { animation-delay: 0.6s; }
.transformation-list li:nth-child(5) { animation-delay: 0.8s; }
.transformation-list li:nth-child(6) { animation-delay: 1s; }

.final-section {
    text-align: center;
    margin-top: 4rem;
}

.mega-symbol {
    font-size: 4rem;
    margin: 2rem 0;
    animation: megaPulse 4s ease infinite;
}

.emphasis {
    font-size: 1.2rem;
    margin: 2rem 0;
    color: var(--primary-color);
}

.cycle-symbols {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.rotating.reverse {
    animation: rotate 4s linear infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes dnaRotate {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes dnaMove {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(100px); }
}

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes megaPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 1; }
}

/* Add glowing effect to specific elements */
.emphasis, .cycle-symbol {
    text-shadow: 0 0 10px var(--primary-color);
}

/* Add hover effects */
.text-section:hover .virus-symbol,
.text-section:hover .cycle-symbol {
    filter: brightness(1.5);
    transform: scale(1.1);
}

.manifesto-cta {
    margin-top: 3rem;
    text-align: center;
}

@keyframes snowfall {
    0% {
        transform: translateY(-10px) rotate(0deg);
    }
    100% {
        transform: translateY(10px) rotate(360deg);
    }
}

.cycle-symbol {
    animation: snowfall 3s ease-in-out infinite alternate;
}

/* Add snowflake styles */
.snowflake {
    color: var(--frost-color);
    position: fixed;
    top: -10%;
    z-index: 1;
    user-select: none;
    cursor: default;
    animation-name: snowfall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}