
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Rubik+Glitch&display=swap');
/* CRT Screen Effect */
.crt-effect {
    position: relative;
    overflow: hidden;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
.crt-effect::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: 
        linear-gradient(rgba(18, 16, 16, 0.1) 50%, rgba(0, 0, 0, 0.15) 50%),
        linear-gradient(90deg, 
            rgba(255, 0, 0, 0.03) 0%, 
            rgba(0, 255, 0, 0.015) 50%, 
            rgba(0, 0, 255, 0.03) 100%);
    background-size: 100% 3px, 4px 100%;
    pointer-events: none;
    z-index: 10;
    animation: scanline 8s linear infinite;
}
@keyframes scanline {
    0% { background-position: 0 0; }
    100% { background-position: 0 100%; }
}

@keyframes backgroundScroll {
    0% { background-position: 0 0; }
    100% { background-position: 0 100%; }
}
/* Animations */
.animate-blink {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

.animate-spin {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.animate-bounce {
    animation: bounce 0.8s ease infinite alternate;
}

@keyframes bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-15px); }
}

.animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% {
        transform: scale(1.5);
        opacity: 0;
    }
}
/* Logo styling */
.logo-placeholder {
  position: relative;
}
.logo-placeholder::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, #3a7bd5, #00d2ff, #ff8c00);
  z-index: -1;
  opacity: 0.3;
  border-radius: 50%;
  filter: blur(15px);
}

/* Updated color scheme to complement orange */
:root {
  --oldskool-black: #0a0a0a;
  --oldskool-blue: #3a7bd5; /* Darker blue */
  --oldskool-green: #00d2ff; /* Teal */
  --oldskool-yellow: #f9d423; /* Gold */
  --oldskool-orange: #ff8c00;
  --text-light: #ffffff;
  --text-dark: #1a1a1a;
  --accent-pink: #ff6b6b; /* Complementary pink */
}
body {
    background: #0a0a0a;
    color: var(--text-light);
    font-family: 'Press Start 2P', cursive;
    font-size: 0.7rem;
    overflow-x: hidden;
}
/* Retro text shadow */
.font-retro {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8rem;
    line-height: 1.6;
    text-shadow: 3px 3px 0px rgba(255, 140, 0, 0.7), 
                -2px -2px 0px rgba(0, 210, 255, 0.4);
}
.font-disco {
    font-family: 'Press Start 2P', cursive;
    color: #ff8c00;
    text-shadow: 
        5px 5px 0px rgba(255, 140, 0, 0.7),
        0px 0px 20px rgba(255, 140, 0, 0.9);
animation: text-glow 2s ease-in-out infinite alternate;
    letter-spacing: 4px;
    line-height: 1.2;
}
@keyframes text-glow {
    from {
        text-shadow: 
            0 0 2px rgba(255, 140, 0, 0.8),
            0 0 10px rgba(255, 140, 0, 0.6);
    }
    to {
        text-shadow: 
            0 0 10px rgba(255, 140, 0, 0.8),
            0 0 20px rgba(255, 140, 0, 0.6),
            0 0 30px rgba(255, 140, 0, 0.4);
    }
}
/* Step-specific styles */
.social-btn.clicked {
    background-color: var(--accent-pink) !important;
    transform: scale(1.05) !important;
    border-color: var(--oldskool-yellow) !important;
    box-shadow: 0 0 40px var(--oldskool-yellow) !important;
    animation: pulse 1s infinite;
}
@keyframes pulse {
    0% { transform: scale(1.05); box-shadow: 0 0 40px var(--oldskool-yellow); }
    50% { transform: scale(1.1); box-shadow: 0 0 60px var(--oldskool-yellow); }
    100% { transform: scale(1.05); box-shadow: 0 0 40px var(--oldskool-yellow); }
}
.step-card {
    transition: all 0.3s ease;
    background: rgba(88, 24, 128, 0.2) !important; /* Dark purple with 20% opacity */
    backdrop-filter: blur(10px);
}

.step-card button, 
.step-card a {
    background: rgba(255, 140, 0, 0.9) !important; /* Solid version of accent color */
}
.step-card button:hover, 
.step-card a:hover {
    background: rgba(255, 140, 0, 0.9) !important;
}
#nextBtn {
    transition: all 0.5s ease;
}

.hidden {
    display: none;
}