/* CTA Buttons - Premium Design */
.cta-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    transform: translateY(50px);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
    max-width: 90vw;
    margin-bottom: 2rem;
}

.cta-container.visible {
    transform: translateY(0);
    opacity: 1;
}

.cta-button {
    display: block;
    padding: 0;
    background: transparent;
    border: none;
    text-decoration: none;
    color: #fff;
    position: relative;
    width: 200px;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.cta-button:hover {
    transform: translateY(-8px) scale(1.02);
}

.cta-bg-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px;
}

.cta-button:hover .cta-bg-effect {
    opacity: 1;
}

.cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.6rem 1.2rem;
    background: linear-gradient(135deg, 
        rgba(10, 10, 30, 0.9) 0%, 
        rgba(20, 10, 40, 0.9) 100%);
    border: 2px solid;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.cta-icon-wrapper {
    position: relative;
    margin-bottom: 0.8rem;
}

.cta-button .icon {
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 12px currentColor);
    transition: transform 0.4s ease;
}

.cta-button:hover .icon {
    transform: scale(1.1) rotate(5deg);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-button:hover .icon-glow {
    opacity: 1;
    animation: iconGlowPulse 2s ease-in-out infinite;
}

@keyframes iconGlowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.cta-button .label {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    position: relative;
    z-index: 1;
    letter-spacing: 1.2px;
    transition: all 0.3s ease;
}

.cta-button:hover .label {
    letter-spacing: 1.8px;
}

.cta-button .sublabel {
    font-size: 0.75rem;
    opacity: 0.7;
    position: relative;
    z-index: 1;
    letter-spacing: 1.2px;
    font-weight: 300;
    transition: opacity 0.3s ease;
}

.cta-button:hover .sublabel {
    opacity: 1;
}

.cta-line {
    width: 0;
    height: 1.5px;
    margin-top: 0.6rem;
    transition: width 0.4s ease;
}

.cta-button:hover .cta-line {
    width: 70%;
}

/* Neon Protocol Styling */
.neon-protocol .cta-inner {
    border-color: #00ffff;
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.3),
        inset 0 0 20px rgba(0, 255, 255, 0.08),
        0 6px 25px rgba(0, 0, 0, 0.4);
}

.neon-protocol:hover .cta-inner {
    border-color: #00ffff;
    box-shadow: 
        0 0 40px rgba(0, 255, 255, 0.6),
        inset 0 0 30px rgba(0, 255, 255, 0.15),
        0 10px 35px rgba(0, 0, 0, 0.6);
    background: linear-gradient(135deg, 
        rgba(10, 10, 30, 0.95) 0%, 
        rgba(0, 35, 45, 0.95) 100%);
}

.neon-protocol .icon-glow {
    background: radial-gradient(circle, rgba(0, 255, 255, 0.5) 0%, transparent 70%);
}

.neon-protocol .cta-line {
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    box-shadow: 0 0 6px #00ffff;
}

/* Glitch Protocol Styling */
.glitch-protocol .cta-inner {
    border-color: #ff00ff;
    box-shadow: 
        0 0 20px rgba(255, 0, 255, 0.3),
        inset 0 0 20px rgba(255, 0, 255, 0.08),
        0 6px 25px rgba(0, 0, 0, 0.4);
}

.glitch-protocol:hover .cta-inner {
    border-color: #ff00ff;
    box-shadow: 
        0 0 40px rgba(255, 0, 255, 0.6),
        inset 0 0 30px rgba(255, 0, 255, 0.15),
        0 10px 35px rgba(0, 0, 0, 0.6);
    background: linear-gradient(135deg, 
        rgba(10, 10, 30, 0.95) 0%, 
        rgba(45, 0, 35, 0.95) 100%);
}

.glitch-protocol .icon-glow {
    background: radial-gradient(circle, rgba(255, 0, 255, 0.5) 0%, transparent 70%);
}

.glitch-protocol .cta-line {
    background: linear-gradient(90deg, transparent, #ff00ff, transparent);
    box-shadow: 0 0 6px #ff00ff;
}

/* CTA Glow Effect */
.cta-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.cta-button:hover .cta-glow {
    opacity: 1;
    animation: glowRotate 4s linear infinite;
}

@keyframes glowRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* CTA Particles */
.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-button:hover .cta-particles {
    opacity: 1;
}

.cta-particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    animation: particleFloat 3s ease-in-out infinite;
}

.neon-protocol .cta-particles span {
    background: #00ffff;
    box-shadow: 0 0 8px #00ffff;
}

.glitch-protocol .cta-particles span {
    background: #ff00ff;
    box-shadow: 0 0 8px #ff00ff;
}

.cta-particles span:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.cta-particles span:nth-child(2) {
    top: 75%;
    left: 25%;
    animation-delay: 0.5s;
}

.cta-particles span:nth-child(3) {
    top: 35%;
    right: 20%;
    animation-delay: 1s;
}

.cta-particles span:nth-child(4) {
    bottom: 20%;
    right: 25%;
    animation-delay: 1.5s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    50% {
        transform: translateY(-25px) scale(1.4);
        opacity: 1;
    }
}

/* Logo Pulse Animation - Removed */
@keyframes logoPulse {
    0%, 100% {
        opacity: 0.25;
    }
    50% {
        opacity: 0.4;
    }
}

.pulse-once {
    animation: logoPulse 2s ease-in-out 1;
}

/* Hidden Input for Easter Egg */
.hidden-input {
    position: fixed;
    top: -9999px;
    left: -9999px;
    opacity: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .smarty-dialogue-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .dialogue-arrow {
        left: 50%;
        top: -15px;
        transform: translateX(-50%) rotate(90deg);
    }
    
    .dialogue-box {
        width: 90%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .text-line {
        font-size: 1.2rem;
    }
    
    .text-highlight {
        font-size: 2rem;
    }
    
    .subtitle-text {
        font-size: 0.95rem;
    }
    
    .cta-container {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .cta-button {
        width: 90%;
        max-width: 280px;
    }
    
    .smarty-pfp {
        width: 120px;
        height: 120px;
    }
    
    .dialogue-content {
        padding: 1rem 1.2rem;
        min-height: 90px;
    }
    
    .dialogue-text {
        font-size: 0.95rem;
    }
    
    .cta-inner {
        padding: 1.8rem 1.3rem;
    }
}/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    overflow: hidden;
    height: 100vh;
    background: #000;
    color: #fff;
    position: relative;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease, visibility 1s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.loading-spinner {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    border: 3px solid rgba(0, 255, 255, 0.1);
    border-top: 3px solid #00ffff;
    border-right: 3px solid #ff00ff;
    border-radius: 50%;
    animation: spinLoader 1s linear infinite;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.5),
                inset 0 0 40px rgba(0, 255, 255, 0.3);
}

@keyframes spinLoader {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: 1.2rem;
    color: #00ffff;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    animation: pulseText 2s ease-in-out infinite;
}

@keyframes pulseText {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(0, 255, 255, 0.1);
    margin: 0 auto 1rem;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #00ffff, #ff00ff, #00ffff);
    background-size: 200% 100%;
    width: 0%;
    transition: width 0.3s ease;
    animation: progressGlow 2s linear infinite;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

@keyframes progressGlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.loading-status {
    color: #ff00ff;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.scan-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 255, 255, 0.03) 0px,
        rgba(0, 255, 255, 0.03) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 1;
    animation: scanMove 8s linear infinite;
}

@keyframes scanMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(100%); }
}

/* Background Gradient Layer - Enhanced Cyberpunk */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(255, 0, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(138, 43, 226, 0.2) 0%, transparent 70%),
        linear-gradient(180deg, #0a0015 0%, #000000 50%, #001a1a 100%);
    animation: gradientShift 15s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes gradientShift {
    0% {
        background: 
            radial-gradient(ellipse at 20% 30%, rgba(255, 0, 255, 0.2) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 70%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
            radial-gradient(ellipse at 50% 50%, rgba(138, 43, 226, 0.2) 0%, transparent 70%),
            linear-gradient(180deg, #0a0015 0%, #000000 50%, #001a1a 100%);
    }
    50% {
        background: 
            radial-gradient(ellipse at 70% 60%, rgba(0, 255, 255, 0.2) 0%, transparent 50%),
            radial-gradient(ellipse at 30% 40%, rgba(255, 0, 255, 0.15) 0%, transparent 50%),
            radial-gradient(ellipse at 50% 50%, rgba(138, 43, 226, 0.25) 0%, transparent 70%),
            linear-gradient(180deg, #001a1a 0%, #000000 50%, #0a0015 100%);
    }
    100% {
        background: 
            radial-gradient(ellipse at 80% 20%, rgba(255, 0, 255, 0.18) 0%, transparent 50%),
            radial-gradient(ellipse at 20% 80%, rgba(0, 255, 255, 0.18) 0%, transparent 50%),
            radial-gradient(ellipse at 50% 50%, rgba(138, 43, 226, 0.22) 0%, transparent 70%),
            linear-gradient(180deg, #0a0015 0%, #000000 50%, #001a1a 100%);
    }
}

/* Grid Overlay */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 2;
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Cyber Noise */
.cyber-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.05"/></svg>');
    z-index: 3;
    pointer-events: none;
    animation: noiseFlicker 0.2s infinite;
}

@keyframes noiseFlicker {
    0% { opacity: 0.05; }
    50% { opacity: 0.08; }
    100% { opacity: 0.05; }
}

/* Data Stream Effect - Matrix-style */
.data-stream-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    z-index: 4;
    opacity: 0;
    transition: opacity 2s ease, filter 2s ease;
    pointer-events: none;
}

.data-stream-container.active {
    opacity: 1;
}

.data-stream-container.blur-background {
    filter: blur(8px);
    opacity: 0.3;
}

.data-column {
    width: 2px;
    height: 100%;
    position: relative;
    animation: dataFlow 3s linear infinite;
    animation-delay: var(--delay);
}

.data-column::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(0, 255, 255, 0.8) 50%, 
        transparent 100%);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

@keyframes dataFlow {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100vh);
    }
}

/* Holographic Rings */
.holographic-rings {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    z-index: 4;
    opacity: 0;
    transition: opacity 2s ease, filter 2s ease;
    pointer-events: none;
}

.holographic-rings.active {
    opacity: 1;
}

.holographic-rings.blur-background {
    filter: blur(8px);
    opacity: 0.2;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid;
    animation: ringExpand 4s ease-in-out infinite;
}

.ring-1 {
    width: 200px;
    height: 200px;
    border-color: rgba(0, 255, 255, 0.6);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    animation-delay: 0s;
}

.ring-2 {
    width: 350px;
    height: 350px;
    border-color: rgba(255, 0, 255, 0.5);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
    animation-delay: 1s;
}

.ring-3 {
    width: 500px;
    height: 500px;
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    animation-delay: 2s;
}

.ring-4 {
    width: 650px;
    height: 650px;
    border-color: rgba(255, 0, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
    animation-delay: 3s;
}

@keyframes ringExpand {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.8) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(1) rotate(180deg);
        opacity: 1;
    }
}

/* Neural Network Canvas */
#neuralCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
    opacity: 0;
    transition: opacity 2s ease, filter 2s ease;
}

#neuralCanvas.active {
    opacity: 1;
}

#neuralCanvas.blur-background {
    filter: blur(6px);
    opacity: 0.3;
}

/* Background Logos - REMOVED */
.bg-logos {
    display: none;
}

/* Particle Canvas */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 3rem 2rem 4rem;
    opacity: 0;
    transition: opacity 1.5s ease;
    gap: 1.5rem;
}

.main-content.visible {
    opacity: 1;
}

/* Smarty Pants and Dialogue Wrapper - Horizontal Layout */
.smarty-dialogue-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    transform: scale(0);
    transition: transform 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 90vw;
}

.smarty-dialogue-wrapper.appear {
    transform: scale(1);
}

/* Smarty Pants Container */
.smarty-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.hologram-frame {
    position: relative;
    padding: 6px;
    border: 2px solid rgba(0, 255, 255, 0.6);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.15), transparent);
    animation: frameRotate 20s linear infinite;
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.3),
        inset 0 0 20px rgba(0, 255, 255, 0.2);
}

@keyframes frameRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.smarty-pfp {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    animation: floatIdle 4s ease-in-out infinite;
    filter: 
        drop-shadow(0 0 30px rgba(0, 255, 255, 0.8))
        drop-shadow(0 0 60px rgba(255, 0, 255, 0.4));
    transition: transform 0.3s ease;
}

@keyframes floatIdle {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.smarty-container:hover .smarty-pfp {
    transform: scale(1.08);
}

.smarty-name {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #00ffff;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.8);
    font-weight: 700;
    animation: namePulse 2s ease-in-out infinite;
}

@keyframes namePulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.scan-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(0, 255, 255, 0.3) 50%, 
        transparent 100%);
    animation: scanPulse 2s ease-in-out infinite;
    border-radius: 50%;
    pointer-events: none;
}

@keyframes scanPulse {
    0%, 100% { transform: translateY(-100%); opacity: 0; }
    50% { opacity: 1; }
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, 
        rgba(0, 255, 255, 0.3) 0%, 
        rgba(255, 0, 255, 0.15) 40%, 
        transparent 70%);
    animation: pulseGlow 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.cursor-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 255, 255, 0.4);
    pointer-events: none;
    z-index: 3;
    transition: all 0.5s ease;
}

/* Dialogue Box - Speech Bubble Style */
.dialogue-box {
    background: linear-gradient(135deg, 
        rgba(10, 5, 30, 0.95) 0%, 
        rgba(5, 5, 20, 0.95) 100%);
    border: 2px solid rgba(0, 255, 255, 0.6);
    border-radius: 15px;
    padding: 0;
    width: 450px;
    max-width: 60vw;
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.4),
        inset 0 0 30px rgba(0, 255, 255, 0.08),
        0 8px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.dialogue-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #00ffff, #ff00ff, #00ffff);
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    animation: borderPulse 3s ease-in-out infinite;
}

@keyframes borderPulse {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.3; }
}

/* Speech Bubble Arrow */
.dialogue-arrow {
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 15px solid rgba(10, 5, 30, 0.95);
    filter: drop-shadow(-2px 0 4px rgba(0, 255, 255, 0.2));
}

.dialogue-arrow::before {
    content: '';
    position: absolute;
    right: -18px;
    top: -14px;
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-right: 18px solid rgba(0, 255, 255, 0.6);
}

.dialogue-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 1.2rem;
    background: rgba(0, 255, 255, 0.05);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.status-indicator {
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
    animation: statusBlink 2s ease-in-out infinite;
    box-shadow: 0 0 12px #00ff00;
    flex-shrink: 0;
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.dialogue-title {
    font-size: 0.8rem;
    color: #00ffff;
    letter-spacing: 2px;
    font-weight: 700;
    flex: 1;
}

.dialogue-controls {
    display: flex;
    gap: 5px;
}

.control-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(0, 255, 255, 0.4);
}

.dialogue-content {
    padding: 1.2rem 1.5rem;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dialogue-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #00ffff;
    text-shadow: 0 0 4px rgba(0, 255, 255, 0.4);
}

.typing-indicator {
    display: flex;
    gap: 5px;
    margin-top: 12px;
    justify-content: flex-start;
}

.typing-indicator span {
    width: 7px;
    height: 7px;
    background: #00ffff;
    border-radius: 50%;
    animation: typingBounce 1.4s infinite;
    box-shadow: 0 0 8px #00ffff;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-8px);
    }
}

/* Welcome Text - Enhanced */
.welcome-text {
    margin: 1.5rem 0 1rem;
    transform: translateY(50px);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
    text-align: center;
    max-width: 900px;
}

.welcome-text.visible {
    transform: translateY(0);
    opacity: 1;
}

.glitch-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 0.8rem;
}

.text-line {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
}

.text-highlight {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 18px rgba(0, 255, 255, 0.5))
            drop-shadow(0 0 35px rgba(255, 0, 255, 0.3));
    position: relative;
    animation: glitchAnim 5s infinite;
}

@keyframes glitchAnim {
    0%, 90%, 100% {
        transform: translate(0);
    }
    92% {
        transform: translate(-2px, 2px);
    }
    94% {
        transform: translate(2px, -2px);
    }
    96% {
        transform: translate(-2px, -2px);
    }
    98% {
        transform: translate(2px, 2px);
    }
}

.text-highlight::before,
.text-highlight::after {
    content: 'The NeonTrium Network.';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-highlight::before {
    animation: glitchBefore 3s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    filter: drop-shadow(-2px 0 #ff00ff);
}

.text-highlight::after {
    animation: glitchAfter 2.5s infinite;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    filter: drop-shadow(2px 0 #00ffff);
}

@keyframes glitchBefore {
    0%, 95%, 100% {
        transform: translate(0);
    }
    97% {
        transform: translate(-3px, 0);
    }
}

@keyframes glitchAfter {
    0%, 95%, 100% {
        transform: translate(0);
    }
    97% {
        transform: translate(3px, 0);
    }
}

.subtitle-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
    font-weight: 300;
    margin-bottom: 0.6rem;
}

.text-underline {
    width: 220px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #00ffff 20%, 
        #ff00ff 50%, 
        #00ffff 80%, 
        transparent 100%);
    margin: 0 auto;
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
    animation: underlinePulse 3s ease-in-out infinite;
}

@keyframes underlinePulse {
    0%, 100% {
        opacity: 0.5;
        transform: scaleX(1);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.1);
    }
}

.glitch-text::after {
    animation: glitchAfter 2.5s infinite;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    text-shadow: 2px 0 #00ffff;
}

@keyframes glitchBefore {
    0%, 95%, 100% {
        transform: translate(0);
    }
    97% {
        transform: translate(-3px, 0);
    }
}

@keyframes glitchAfter {
    0%, 95%, 100% {
        transform: translate(0);
    }
    97% {
        transform: translate(3px, 0);
    }
}

.welcome-text p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* CTA Buttons - Premium Design */
.cta-container {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    justify-content: center;
    transform: translateY(50px);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

.cta-container.visible {
    transform: translateY(0);
    opacity: 1;
}

.cta-button {
    display: block;
    padding: 0;
    background: transparent;
    border: none;
    text-decoration: none;
    color: #fff;
    position: relative;
    width: 280px;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.cta-button:hover {
    transform: translateY(-10px) scale(1.02);
}

.cta-bg-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.cta-button:hover .cta-bg-effect {
    opacity: 1;
}

.cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, 
        rgba(10, 10, 30, 0.9) 0%, 
        rgba(20, 10, 40, 0.9) 100%);
    border: 3px solid;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.cta-icon-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.cta-button .icon {
    font-size: 4rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 20px currentColor);
    transition: transform 0.4s ease;
}

.cta-button:hover .icon {
    transform: scale(1.15) rotate(5deg);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-button:hover .icon-glow {
    opacity: 1;
    animation: iconGlowPulse 2s ease-in-out infinite;
}

@keyframes iconGlowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }
}

.cta-button .label {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.cta-button:hover .label {
    letter-spacing: 3px;
}

.cta-button .sublabel {
    font-size: 0.95rem;
    opacity: 0.7;
    position: relative;
    z-index: 1;
    letter-spacing: 2px;
    font-weight: 300;
    transition: opacity 0.3s ease;
}

.cta-button:hover .sublabel {
    opacity: 1;
}

.cta-line {
    width: 0;
    height: 2px;
    margin-top: 1rem;
    transition: width 0.4s ease;
}

.cta-button:hover .cta-line {
    width: 80%;
}

/* Neon Protocol Styling */
.neon-protocol .cta-inner {
    border-color: #00ffff;
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.4),
        inset 0 0 30px rgba(0, 255, 255, 0.1),
        0 10px 40px rgba(0, 0, 0, 0.5);
}

.neon-protocol:hover .cta-inner {
    border-color: #00ffff;
    box-shadow: 
        0 0 60px rgba(0, 255, 255, 0.8),
        inset 0 0 40px rgba(0, 255, 255, 0.2),
        0 15px 50px rgba(0, 0, 0, 0.7);
    background: linear-gradient(135deg, 
        rgba(10, 10, 30, 0.95) 0%, 
        rgba(0, 40, 50, 0.95) 100%);
}

.neon-protocol .icon-glow {
    background: radial-gradient(circle, rgba(0, 255, 255, 0.6) 0%, transparent 70%);
}

.neon-protocol .cta-line {
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    box-shadow: 0 0 10px #00ffff;
}

/* Glitch Protocol Styling */
.glitch-protocol .cta-inner {
    border-color: #ff00ff;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.4),
        inset 0 0 30px rgba(255, 0, 255, 0.1),
        0 10px 40px rgba(0, 0, 0, 0.5);
}

.glitch-protocol:hover .cta-inner {
    border-color: #ff00ff;
    box-shadow: 
        0 0 60px rgba(255, 0, 255, 0.8),
        inset 0 0 40px rgba(255, 0, 255, 0.2),
        0 15px 50px rgba(0, 0, 0, 0.7);
    background: linear-gradient(135deg, 
        rgba(10, 10, 30, 0.95) 0%, 
        rgba(50, 0, 40, 0.95) 100%);
}

.glitch-protocol .icon-glow {
    background: radial-gradient(circle, rgba(255, 0, 255, 0.6) 0%, transparent 70%);
}

.glitch-protocol .cta-line {
    background: linear-gradient(90deg, transparent, #ff00ff, transparent);
    box-shadow: 0 0 10px #ff00ff;
}

/* CTA Glow Effect */
.cta-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.cta-button:hover .cta-glow {
    opacity: 1;
    animation: glowRotate 4s linear infinite;
}

@keyframes glowRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* CTA Particles */
.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-button:hover .cta-particles {
    opacity: 1;
}

.cta-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    animation: particleFloat 3s ease-in-out infinite;
}

.neon-protocol .cta-particles span {
    background: #00ffff;
    box-shadow: 0 0 10px #00ffff;
}

.glitch-protocol .cta-particles span {
    background: #ff00ff;
    box-shadow: 0 0 10px #ff00ff;
}

.cta-particles span:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.cta-particles span:nth-child(2) {
    top: 80%;
    left: 30%;
    animation-delay: 0.5s;
}

.cta-particles span:nth-child(3) {
    top: 40%;
    right: 20%;
    animation-delay: 1s;
}

.cta-particles span:nth-child(4) {
    bottom: 20%;
    right: 30%;
    animation-delay: 1.5s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    50% {
        transform: translateY(-30px) scale(1.5);
        opacity: 1;
    }
}

/* Logo Pulse Animation - Removed */
@keyframes logoPulse {
    0%, 100% {
        opacity: 0.25;
    }
    50% {
        opacity: 0.4;
    }
}

.pulse-once {
    animation: logoPulse 2s ease-in-out 1;
}

/* Hidden Input for Easter Egg */
.hidden-input {
    position: fixed;
    top: -9999px;
    left: -9999px;
    opacity: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .smarty-dialogue-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .dialogue-arrow {
        left: 50%;
        top: -20px;
        transform: translateX(-50%) rotate(90deg);
    }
    
    .dialogue-box {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .text-line {
        font-size: 1.5rem;
    }
    
    .text-highlight {
        font-size: 2.5rem;
    }
    
    .subtitle-text {
        font-size: 1.1rem;
    }
    
    .cta-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .cta-button {
        width: 90%;
        max-width: 300px;
    }
    
    .smarty-pfp {
        width: 150px;
        height: 150px;
    }
    
    .dialogue-content {
        padding: 1.2rem 1.5rem;
        min-height: 100px;
    }
    
    .dialogue-text {
        font-size: 1rem;
    }
}