:root {
    --primary-color: #ff1493;
    --bg-color: #000000;
    --text-color: #ff1493;
    --modal-bg: rgba(0, 0, 0, 0.95);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Creepster', 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 {
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary-color),
                0 0 30px var(--primary-color),
                0 0 45px var(--primary-color);
    opacity: 0.7;
}

.pointer {
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    opacity: 0;
    box-shadow: 0 0 15px var(--primary-color);
    transition: all 0.3s ease, transform 0.1s ease;
}

/* 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-family: 'Nosifer', cursive;
    font-size: 6rem;
    position: relative;
    letter-spacing: 0.75em;
    text-shadow: 0.05em 0 0 #ff0000,
                -0.025em -0.05em 0 #ff8800,
                0.025em 0.05em 0 #ffff00,
                -0.05em 0.025em 0 #00ff00,
                0.025em -0.05em 0 #0088ff;
    animation: glitch 500ms infinite;
}

.subtitle {
    font-size: 1rem;
    margin: 1rem 0;
    opacity: 0.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(--primary-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    font-family: inherit;
    margin: 1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--primary-color);
    color: var(--bg-color);
}

/* Footer */
footer {
    padding: 2rem;
    text-align: center;
    border-top: 2px solid var(--primary-color);
}

.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 glitch {
    0% {
        text-shadow: 0.05em 0 0 #ff0000,
                    -0.025em -0.05em 0 #ff8800,
                    0.025em 0.05em 0 #ffff00;
    }
    14% {
        text-shadow: 0.05em 0 0 #00ff00,
                    -0.025em -0.05em 0 #0088ff,
                    0.025em 0.05em 0 #ff0000;
    }
    15% {
        text-shadow: -0.05em -0.025em 0 #ff8800,
                    0.025em 0.025em 0 #ffff00,
                    -0.05em -0.05em 0 #00ff00;
    }
    49% {
        text-shadow: -0.05em -0.025em 0 #0088ff,
                    0.025em 0.025em 0 #ff0000,
                    -0.05em -0.05em 0 #ff8800;
    }
    50% {
        text-shadow: 0.025em 0.05em 0 #ffff00,
                    0.05em 0 0 #00ff00,
                    0 -0.05em 0 #0088ff;
    }
    99% {
        text-shadow: 0.025em 0.05em 0 #ff0000,
                    0.05em 0 0 #ff8800,
                    0 -0.05em 0 #ffff00;
    }
    100% {
        text-shadow: -0.025em 0 0 #00ff00,
                    -0.025em -0.025em 0 #0088ff,
                    -0.025em -0.05em 0 #ff0000;
    }
}

/* 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: 40px;
    height: 40px;
    pointer-events: none;
    animation: splashAppear 2s ease-out forwards;
}

.virus-particle {
    position: absolute;
    width: 2px;
    height: 15px;
    background: var(--primary-color);
    left: 50%;
    top: 50%;
    transform-origin: bottom center;
    animation: particleSpread 2s ease-out forwards, rainbowColor 2s infinite;
}

@keyframes splashAppear {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    10% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes particleSpread {
    0% {
        height: 0;
        opacity: 0;
    }
    10% {
        height: 15px;
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        height: 25px;
        opacity: 0;
        transform: translateY(-20px);
    }
}

@keyframes rainbowColor {
    0% { background-color: #ff0000; }
    20% { background-color: #ff8800; }
    40% { background-color: #ffff00; }
    60% { background-color: #00ff00; }
    80% { background-color: #0088ff; }
    100% { background-color: #ff0000; }
}

.spike {
    position: absolute;
    width: 2px;
    height: 15px;
    background: var(--primary-color);
    left: 50%;
    top: 50%;
    transform-origin: bottom center;
}

/* Position the spikes around the virus */
.spike:nth-child(1) { transform: translate(-50%, -50%) rotate(0deg) translateY(-20px); }
.spike:nth-child(2) { transform: translate(-50%, -50%) rotate(45deg) translateY(-20px); }
.spike:nth-child(3) { transform: translate(-50%, -50%) rotate(90deg) translateY(-20px); }
.spike:nth-child(4) { transform: translate(-50%, -50%) rotate(135deg) translateY(-20px); }
.spike:nth-child(5) { transform: translate(-50%, -50%) rotate(180deg) translateY(-20px); }
.spike:nth-child(6) { transform: translate(-50%, -50%) rotate(225deg) translateY(-20px); }
.spike:nth-child(7) { transform: translate(-50%, -50%) rotate(270deg) translateY(-20px); }
.spike:nth-child(8) { transform: translate(-50%, -50%) rotate(315deg) translateY(-20px); }

/* For the cursor, let's just use simple CSS */
.cursor {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
}

.pointer {
    display: none; /* Remove the second cursor */
}

/* Update the animations */
@keyframes virusAppear {
    0% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 0.7;
        transform: scale(1) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: scale(1.5) rotate(360deg);
    }
}

.manifesto {
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.9);
    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;
}

.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;
}

/* Add different virus shapes */
.virus:nth-child(3n) {
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%); /* Pentagon */
}

.virus:nth-child(3n+1) {
    clip-path: circle(50% at 50% 50%); /* Circle */
}

.virus:nth-child(3n+2) {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); /* Diamond */
}

@keyframes rainbowBorder {
    0% { border-color: #ff0000; box-shadow: 0 0 15px #ff0000; }
    20% { border-color: #ff8800; box-shadow: 0 0 15px #ff8800; }
    40% { border-color: #ffff00; box-shadow: 0 0 15px #ffff00; }
    60% { border-color: #00ff00; box-shadow: 0 0 15px #00ff00; }
    80% { border-color: #0088ff; box-shadow: 0 0 15px #0088ff; }
    100% { border-color: #ff0000; box-shadow: 0 0 15px #ff0000; }
}