@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

:root {
    --dark-space: #0a0a14;
    --neon-purple: #6e44ff;
    --cyan-gradient: #00f0ff;
    --pink-accent: #ff2d95;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-space);
    color: white;
    overflow-x: hidden;
}

.glassmorphism {
    background: rgba(10, 10, 20, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
}

.neon-purple-gradient {
    background: linear-gradient(135deg, var(--neon-purple), var(--cyan-gradient));
}

.neon-pink-gradient {
    background: linear-gradient(135deg, var(--pink-accent), var(--neon-purple));
}

.radial-gradient {
    background: radial-gradient(circle, var(--neon-purple), var(--cyan-gradient));
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(110, 68, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(110, 68, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(110, 68, 255, 0);
    }
}

.glow-text {
    text-shadow: 0 0 10px rgba(110, 68, 255, 0.7);
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.counter {
    font-variant-numeric: tabular-nums;
}

.progress-bar {
    height: 6px;
    background: linear-gradient(90deg, var(--pink-accent), var(--neon-purple));
    border-radius: 3px;
    transition: width 0.5s ease;
}

.notification {
    animation: slideIn 0.5s forwards, fadeOut 0.5s 3s forwards;
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.typing-demo {
    width: 22ch;
    animation: typing 2s steps(22), blink .5s step-end infinite alternate;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid;
}

@keyframes typing {
    from { width: 0 }
}

@keyframes blink {
    50% { border-color: transparent }
}

.matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    animation: pulse 1.5s infinite;
}

.rotate-3d {
    transform-style: preserve-3d;
    transition: transform 1s;
}

.rotate-3d:hover {
    transform: rotateY(20deg) rotateX(10deg);
}

.blink {
    animation: blink-animation 1s infinite;
}

@keyframes blink-animation {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
} 