:root {
    --bg-color: #050505;
    --primary: #fcee0a; /* Cyberpunk yellow */
    --secondary: #ff003c; /* Neon red */
    --tertiary: #00f0ff; /* Neon cyan */
    --text: #ffffff;
    --text-muted: #aaaaaa;
    --glass-bg: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Animated background blobs */
.blob-cont {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    top: 0;
    left: 0;
}

.blob {
    border-radius: 50%;
    filter: blur(80px);
    position: absolute;
    opacity: 0.6;
    animation: move 10s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.yellow {
    background-color: var(--primary);
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.red {
    background-color: var(--secondary);
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: -50px;
    animation-delay: -2s;
}

.green {
    background-color: var(--tertiary);
    width: 350px;
    height: 350px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -4s;
}

@keyframes move {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.2); }
}

/* Glassmorphism Container */
.glass-container {
    max-width: 1200px;
    margin: 40px auto;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    overflow: hidden;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

header {
    padding: 30px 40px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(252, 238, 10, 0.5);
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--tertiary);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

main {
    padding: 60px 40px;
}

.hero {
    text-align: center;
    padding: 80px 0;
}

.glitch {
    font-size: 6rem;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    color: var(--text);
    text-shadow: 0.05em 0 0 rgba(255, 0, 60, 0.75),
                -0.025em -0.05em 0 rgba(0, 240, 255, 0.75),
                0.025em 0.05em 0 rgba(252, 238, 10, 0.75);
    animation: glitch 500ms infinite;
    line-height: 1.1;
}

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

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--secondary);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--tertiary);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2s infinite linear alternate-reverse;
}

@keyframes glitch {
    0% { text-shadow: 0.05em 0 0 rgba(255, 0, 60, 0.75), -0.05em -0.025em 0 rgba(0, 240, 255, 0.75), -0.025em 0.05em 0 rgba(252, 238, 10, 0.75); }
    14% { text-shadow: 0.05em 0 0 rgba(255, 0, 60, 0.75), -0.05em -0.025em 0 rgba(0, 240, 255, 0.75), -0.025em 0.05em 0 rgba(252, 238, 10, 0.75); }
    15% { text-shadow: -0.05em -0.025em 0 rgba(255, 0, 60, 0.75), 0.025em 0.025em 0 rgba(0, 240, 255, 0.75), -0.05em -0.05em 0 rgba(252, 238, 10, 0.75); }
    49% { text-shadow: -0.05em -0.025em 0 rgba(255, 0, 60, 0.75), 0.025em 0.025em 0 rgba(0, 240, 255, 0.75), -0.05em -0.05em 0 rgba(252, 238, 10, 0.75); }
    50% { text-shadow: 0.025em 0.05em 0 rgba(255, 0, 60, 0.75), 0.05em 0 0 rgba(0, 240, 255, 0.75), 0 -0.05em 0 rgba(252, 238, 10, 0.75); }
    99% { text-shadow: 0.025em 0.05em 0 rgba(255, 0, 60, 0.75), 0.05em 0 0 rgba(0, 240, 255, 0.75), 0 -0.05em 0 rgba(252, 238, 10, 0.75); }
    100% { text-shadow: -0.025em 0 0 rgba(255, 0, 60, 0.75), -0.025em -0.025em 0 rgba(0, 240, 255, 0.75), -0.025em -0.05em 0 rgba(252, 238, 10, 0.75); }
}

@keyframes glitch-anim {
    0% { clip: rect(74px, 9999px, 83px, 0); }
    5% { clip: rect(69px, 9999px, 98px, 0); }
    10% { clip: rect(27px, 9999px, 7px, 0); }
    15% { clip: rect(93px, 9999px, 73px, 0); }
    20% { clip: rect(73px, 9999px, 1px, 0); }
    25% { clip: rect(21px, 9999px, 4px, 0); }
    30% { clip: rect(26px, 9999px, 48px, 0); }
    35% { clip: rect(65px, 9999px, 66px, 0); }
    40% { clip: rect(6px, 9999px, 87px, 0); }
    45% { clip: rect(67px, 9999px, 81px, 0); }
    50% { clip: rect(54px, 9999px, 6px, 0); }
    55% { clip: rect(29px, 9999px, 14px, 0); }
    60% { clip: rect(54px, 9999px, 89px, 0); }
    65% { clip: rect(78px, 9999px, 81px, 0); }
    70% { clip: rect(98px, 9999px, 1px, 0); }
    75% { clip: rect(24px, 9999px, 85px, 0); }
    80% { clip: rect(53px, 9999px, 47px, 0); }
    85% { clip: rect(31px, 9999px, 94px, 0); }
    90% { clip: rect(96px, 9999px, 50px, 0); }
    95% { clip: rect(11px, 9999px, 12px, 0); }
    100% { clip: rect(54px, 9999px, 3px, 0); }
}

.hero h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-top: 10px;
    margin-bottom: 20px;
    letter-spacing: 5px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.primary-btn {
    background-color: var(--primary);
    color: #000;
    border: none;
    box-shadow: 0 0 20px rgba(252, 238, 10, 0.4);
}

.primary-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(252, 238, 10, 0.6);
}

.primary-btn:active {
    transform: translateY(1px);
}

.secondary-btn {
    background-color: transparent;
    color: var(--text);
    border: 2px solid var(--glass-border);
}

.secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--text);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(252, 238, 10, 0.2);
}

.feature-card:hover::before {
    background: linear-gradient(
        45deg,
        var(--primary),
        var(--tertiary),
        var(--secondary)
    );
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text);
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--primary);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

footer {
    text-align: center;
    padding: 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Interactive cursor elements */
#cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(252, 238, 10, 0.05) 0%, rgba(0,0,0,0) 60%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    transition: width 0.3s, height 0.3s, background 0.3s;
}

/* Responsive */
@media (max-width: 900px) {
    .glitch { font-size: 4rem; }
    .hero h2 { font-size: 1.8rem; }
}

@media (max-width: 600px) {
    .glass-container { margin: 20px; padding: 0 10px; }
    .glitch { font-size: 3rem; }
    .hero h2 { font-size: 1.4rem; }
    .hero { padding: 40px 0; }
    .cta-group { flex-direction: column; width: 100%; max-width: 300px; margin: 20px auto 0; }
    .nav-links { display: none; }
}
