:root {
    --void-black: #000000;
    --void-purple: #6f00ff;
    --void-blue: #00ffff;
    --void-glow: rgba(111, 0, 255, 0.5);
    --void-purple-dark: #4a00b0;
    --void-blue-dark: #00b0b0;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-color: #6f00ff;
}

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

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--void-black);
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
}

/* Star background animation */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxyYWRpYWxHcmFkaWVudCBpZD0iZyIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iNTAlIj48c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZmZmIiBzdG9wLW9wYWNpdHk9IjEiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmYiIHN0b3Atb3BhY2l0eT0iMCIvPjwvcmFkaWFsR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9IiMwMDAiLz48Y2lyY2xlIGN4PSIxMCIgY3k9IjEwIiByPSIxIiBmaWxsPSJ1cmwoI2cpIi8+PC9zdmc+');
    animation: stars 120s linear infinite;
    z-index: 0;
}

.twinkling {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(111, 0, 255, 0.1) 0%, transparent 70%);
    animation: twinkle 8s ease-in-out infinite;
    z-index: 1;
}

.void-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--void-black) 70%);
    z-index: 2;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.hero-content {
    text-align: center;
    max-width: 1200px;
}

.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.logo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 10px var(--void-purple));
    transition: filter 0.3s ease;
}

.logo:hover {
    filter: drop-shadow(0 0 20px var(--void-blue));
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 320px;
    height: 320px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, 
        var(--void-purple) 0%, 
        var(--void-blue) 30%, 
        transparent 70%
    );
    mix-blend-mode: screen;
    filter: blur(20px);
    opacity: 0.5;
    animation: pulse 4s ease-in-out infinite;
}

.cat-eyes {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 50px;
    z-index: 3;
}

.cat-eyes::before,
.cat-eyes::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--void-blue);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--void-blue);
    animation: blink 4s infinite;
}

.cat-eyes::before {
    left: 50px;
}

.cat-eyes::after {
    right: 50px;
}

/* Glitch Effect */
.glitch {
    font-family: 'Orbitron', sans-serif;
    font-size: 6rem;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    text-shadow: 
        2px 2px var(--void-purple),
        -2px -2px var(--void-blue);
    animation: glitch 2s infinite;
    margin: 2rem 0;
    letter-spacing: 0.5em;
}

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

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--void-purple);
    animation: glitch-1 2s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: 2px 0 var(--void-blue);
    animation: glitch-2 3s infinite linear alternate-reverse;
}

.ticker {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--void-blue);
    background: linear-gradient(
        90deg, 
        transparent, 
        var(--void-purple) 20%, 
        var(--void-blue) 50%,
        var(--void-purple) 80%, 
        transparent
    );
    padding: 0.5rem 2rem;
    border-radius: 50px;
    margin: 1rem 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(111, 0, 255, 0.3);
    box-shadow: 0 0 20px rgba(111, 0, 255, 0.2);
}

.ticker::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        var(--void-blue),
        transparent
    );
    transform: translateX(-100%) rotate(45deg);
    animation: ticker-shine 3s infinite;
}

/* Stats Section */
.stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 4rem 2rem;
    position: relative;
    z-index: 3;
}

.stat-box {
    background: linear-gradient(
        135deg,
        rgba(111, 0, 255, 0.1),
        rgba(0, 255, 255, 0.1)
    );
    box-shadow: 0 0 20px rgba(111, 0, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    min-width: 250px;
    border: 1px solid var(--void-purple);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
    border-color: var(--void-blue);
}

.stat-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--void-purple) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-box:hover .stat-glow {
    opacity: 0.2;
}

.stat-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--void-blue);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 1rem 0;
    background: linear-gradient(45deg, var(--void-purple), var(--void-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Features Section */
.features {
    padding: 4rem 2rem;
    position: relative;
    z-index: 3;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-box {
    background: linear-gradient(
        135deg,
        rgba(111, 0, 255, 0.05),
        rgba(0, 255, 255, 0.05)
    );
    transform-style: preserve-3d;
    perspective: 1000px;
    text-align: center;
    border: 1px solid var(--void-purple);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px) rotateX(5deg);
    border-color: var(--void-blue);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--void-blue);
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--void-purple), var(--void-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: transform 0.3s ease;
}

.feature-box:hover i {
    transform: scale(1.2);
}

/* CTA Section */
.buy-button {
    background: linear-gradient(
        45deg,
        var(--void-purple),
        var(--void-blue),
        var(--void-purple)
    );
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
    color: white;
    padding: 1.5rem 4rem;
    border: none;
    border-radius: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.buy-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px var(--void-glow);
}

.buy-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: translateX(-100%) rotate(45deg);
    transition: 0.6s;
}

.buy-button:hover::before {
    transform: translateX(100%) rotate(45deg);
}

.void-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
}

@keyframes ripple {
    to { transform: scale(4); opacity: 0; }
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 4rem 2rem;
    position: relative;
    z-index: 3;
    border-top: 1px solid var(--void-purple);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-icons a {
    color: white;
    font-size: 2rem;
    padding: 1rem;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--void-purple-dark),
        var(--void-purple)
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: translateX(-100%) rotate(45deg);
    transition: 0.6s;
}

.social-icons a:hover::before {
    transform: translateX(100%) rotate(45deg);
}

.social-icons a:hover {
    transform: translateY(-5px);
    background: var(--void-purple);
    box-shadow: 0 0 20px var(--void-glow);
}

.cat-silhouette {
    width: 100px;
    height: 100px;
    margin: 2rem auto;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTEyIDJMNCA3djExaDR2LTVoOHY1aDR2LTExeiIvPjwvc3ZnPg==');
    opacity: 0.5;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes blink {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0); }
}

@keyframes glitch-1 {
    0% { clip-path: inset(20% 0 80% 0); }
    20% { clip-path: inset(60% 0 40% 0); }
    40% { clip-path: inset(40% 0 60% 0); }
    60% { clip-path: inset(80% 0 20% 0); }
    80% { clip-path: inset(10% 0 90% 0); }
    100% { clip-path: inset(30% 0 70% 0); }
}

@keyframes glitch-2 {
    0% { clip-path: inset(80% 0 20% 0); }
    20% { clip-path: inset(20% 0 80% 0); }
    40% { clip-path: inset(60% 0 40% 0); }
    60% { clip-path: inset(40% 0 60% 0); }
    80% { clip-path: inset(90% 0 10% 0); }
    100% { clip-path: inset(70% 0 30% 0); }
}

@keyframes stars {
    from { background-position: 0 0; }
    to { background-position: 10000px 5000px; }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@keyframes twinkle-star {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

@keyframes ticker-shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    20%, 100% { transform: translateX(100%) rotate(45deg); }
}

/* Responsive Design */
@media (max-width: 800px) {
    .glitch {
        font-size: 4rem;
        letter-spacing: 0.3em;
    }
    .logo {
        width: 200px;
        height: 200px;
    }
    .logo-glow {
        width: 220px;
        height: 220px;
    }
    .ticker {
        font-size: 2rem;
    }
    .description {
        font-size: 1rem;
        padding: 1.5rem;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .stat-box, .feature-box {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        background: rgba(111, 0, 255, 0.1);
    }
}

@media (max-width: 600px) {
    .glitch {
        font-size: 3rem;
        letter-spacing: 0.2em;
    }
    .logo {
        width: 150px;
        height: 150px;
    }
    .logo-glow {
        width: 170px;
        height: 170px;
    }
    .ticker {
        font-size: 1.5rem;
    }
    .buy-button {
        font-size: 1.2rem;
        padding: 1.2rem 3rem;
    }
    .social-icons a {
        font-size: 1.5rem;
        width: 3rem;
        height: 3rem;
    }
    .social-icons {
        gap: 1rem;
    }
} 