:root {
    --bg-dark: #0a0a0f;
    --bg-card: rgba(255, 255, 255, 0.03);
    --primary: #9d00ff; /* Deep Purple */
    --primary-glow: rgba(157, 0, 255, 0.5);
    --secondary: #00ff66; /* Neon Green */
    --secondary-glow: rgba(0, 255, 102, 0.5);
    --text-light: #f4f4f5;
    --text-muted: #a1a1aa;
    --border-color: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    background-image: 
        linear-gradient(rgba(0, 255, 102, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 102, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center center;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Typography & Utilities */
.highlight {
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glow-text {
    text-shadow: 0 0 30px var(--primary-glow);
}

.section {
    padding: 100px 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    background: rgba(0, 20, 10, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--secondary);
    box-shadow: 0 10px 40px rgba(0, 255, 102, 0.3), inset 0 -2px 15px rgba(0, 255, 102, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: nav-pulse 3s infinite alternate;
}

@keyframes nav-pulse {
    0% { border-bottom-color: var(--secondary); box-shadow: 0 10px 40px rgba(0, 255, 102, 0.2); }
    100% { border-bottom-color: var(--primary); box-shadow: 0 10px 40px rgba(157, 0, 255, 0.2); }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
    width: 250px; /* reserve space for absolute image */
}

.logo img {
    position: absolute;
    left: 0;
    height: 250px; /* MASSIVE */
    object-fit: contain;
    filter: drop-shadow(0 0 20px var(--secondary-glow));
    transform-origin: left center;
    pointer-events: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-links a {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Outfit', sans-serif;
    position: relative;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    color: var(--text-light);
    text-shadow: 0 0 15px var(--secondary-glow);
}

.nav-links a:not(.btn-primary)::before {
    content: '[';
    opacity: 0;
    color: var(--primary);
    transform: translateX(10px);
    transition: all 0.3s ease;
    margin-right: 5px;
}

.nav-links a:not(.btn-primary)::after {
    content: ']';
    opacity: 0;
    color: var(--primary);
    transform: translateX(-10px);
    transition: all 0.3s ease;
    margin-left: 5px;
}

.nav-links a:not(.btn-primary):hover::before,
.nav-links a:not(.btn-primary):hover::after {
    opacity: 1;
    transform: translateX(0);
}

.nav-phone {
    color: var(--secondary) !important;
    font-weight: bold;
    text-shadow: 0 0 10px var(--secondary-glow);
    font-size: 0.8rem !important;
    white-space: nowrap;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: 0.3s;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-block;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #6000a3);
    color: white;
    border: none;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px var(--primary-glow);
    transform: translateY(-2px);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.2);
}

.btn-secondary:hover {
    background: rgba(0, 255, 102, 0.1);
    box-shadow: 0 0 20px var(--secondary-glow);
    transform: translateY(-2px);
}

/* Nav Button Style - Smaller & Glowing */
.nav-links .btn-primary {
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    background: rgba(10, 10, 15, 0.6);
    border: 2px solid var(--primary);
    color: var(--text-light);
    box-shadow: 0 0 10px var(--primary-glow);
    transition: all 0.3s ease;
    animation: btn-pulse 3s infinite alternate;
}

.nav-links .btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-color: transparent;
    box-shadow: 0 0 15px var(--secondary), 0 0 30px var(--primary-glow);
    color: #050508;
    font-weight: 800;
    transform: translateY(-1px);
    animation: none;
}

@keyframes btn-pulse {
    0% {
        border-color: var(--secondary);
        box-shadow: 0 0 12px var(--secondary-glow);
    }
    100% {
        border-color: var(--primary);
        box-shadow: 0 0 12px var(--primary-glow);
    }
}


/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding-top: 120px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 255, 102, 0.15) 0%, transparent 70%);
    z-index: -1;
    filter: blur(40px);
    pointer-events: none;
}

.hero-content h1 {
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero-content p {
    font-size: 1.3rem;
    color: #a3ffc2;
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}



/* Services */
.services {
    background: linear-gradient(180deg, var(--bg-dark), #12121a);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: transparent;
    perspective: 1000px;
    height: 280px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
}

.service-card:hover .flip-card-inner,
.service-card:focus-within .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.flip-card-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    border-radius: 16px 16px 0 0;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: rgba(15, 15, 20, 0.95);
    border-color: rgba(0, 255, 102, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 102, 0.1);
}

.flip-card-front .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.flip-card-front h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.flip-card-front p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.flip-card-back h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.flip-card-back p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.price-tag {
    font-weight: bold;
    font-size: 1.1rem !important;
    color: var(--primary) !important;
    margin-bottom: 15px !important;
    text-shadow: 0 0 10px rgba(157, 0, 255, 0.3);
}

.btn-primary.small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* About */
.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
}

.features-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    color: var(--secondary);
}

.about-image {
    flex: 1;
}

.glass-panel {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
}

.glass-panel h3 {
    font-size: 1.8rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text-light);
}

.glass-panel::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--primary);
    filter: blur(50px);
    z-index: -1;
}

/* Stats Bar */
.stats-bar {
    background: rgba(0, 255, 102, 0.04);
    border-top: 1px solid rgba(0, 255, 102, 0.2);
    border-bottom: 1px solid rgba(0, 255, 102, 0.2);
    padding: 50px 5%;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary);
    text-shadow: 0 0 20px var(--secondary-glow);
    line-height: 1;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

/* How It Works */
.how-it-works {
    background: linear-gradient(180deg, #0a0a0f, #0d0d15);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 240px;
    max-width: 300px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.step-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 0 30px rgba(0, 255, 102, 0.15);
    transform: translateY(-5px);
}

.step-number {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 255, 102, 0.08);
    position: absolute;
    top: 10px;
    right: 15px;
    line-height: 1;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-connector {
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0.6;
    flex-shrink: 0;
}

/* Testimonials */
.testimonials {
    background: rgba(10, 10, 15, 0.8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 35px 30px;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 5rem;
    color: var(--secondary);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 0 25px rgba(0, 255, 102, 0.1);
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.reviewer {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    text-align: center;
    background: radial-gradient(circle at center, rgba(157, 0, 255, 0.2) 0%, var(--bg-dark) 70%);
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Footer */
footer {
    background: #050508;
    padding: 60px 5% 20px;
    border-top: 1px solid var(--border-color);
}

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

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
}

.footer-links h4, .footer-contact h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

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

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 150px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
        margin-bottom: 60px;
    }
    
    .about-container {
        flex-direction: column;
    }
}

@media (max-width: 1024px) {
    .logo {
        width: 150px;
        height: 50px;
    }
    
    .logo img {
        height: 120px; /* Scale down the massive logo for mobile */
    }

    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.95);
        width: 100%;
        text-align: center;
        padding: 40px 0;
        transition: 0.3s;
        backdrop-filter: blur(10px);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, #0d0d15, var(--bg-dark));
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon {
    font-size: 1.5rem;
    background: rgba(157, 0, 255, 0.1);
    border: 1px solid var(--primary);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary-glow);
    flex-shrink: 0;
}

.info-item h4 {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-muted);
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 16px 16px 0 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 15px var(--secondary-glow);
    background: rgba(0, 0, 0, 0.5);
}

.contact-form button {
    width: 100%;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* WhatsApp CTA Button */
.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    text-shadow: none;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    transform: translateY(-2px);
    color: white;
}

/* Floating WhatsApp button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(10, 10, 15, 0.8);
    border: 2px solid var(--secondary);
    color: var(--secondary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.3), inset 0 0 10px rgba(0, 255, 102, 0.2);
    z-index: 999;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 0 25px rgba(0, 255, 102, 0.6), inset 0 0 15px rgba(0, 255, 102, 0.3);
    border-color: #ffffff;
    color: #ffffff;
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
    filter: drop-shadow(0 0 5px rgba(0, 255, 102, 0.5));
    transition: all 0.3s ease;
}

.whatsapp-float:hover svg {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

/* Floating badge text that appears on hover */
.whatsapp-float::after {
    content: 'Chat on WhatsApp';
    position: absolute;
    right: 75px;
    background: #0a0a0f;
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(10px);
    border: 1px solid rgba(0, 255, 102, 0.3);
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5), 0 0 10px rgba(0,255,102,0.1);
}

.whatsapp-float:hover::after {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
    /* Hide label on mobile to save space */
    .whatsapp-float::after {
        display: none;
    }
}

/* Ambient Floating Background Elements (Interactive Targets) */
.ambient-floater {
    position: fixed;
    font-size: 2.5rem;
    opacity: 0.45;
    z-index: 5; /* Below navbar (z:1000) but above page content */
    filter: drop-shadow(0 0 15px var(--secondary-glow));
    animation: float-around 15s infinite ease-in-out alternate;
    cursor: crosshair;
    user-select: none;
    transition: transform 0.2s ease, opacity 0.3s ease;
    pointer-events: auto;
}

.ambient-floater:hover {
    opacity: 0.85;
    transform: scale(1.2);
    filter: drop-shadow(0 0 25px var(--secondary-glow));
}

.floater-1 {
    top: 20%;
    left: 8%;
    animation-duration: 18s;
}

.floater-2 {
    top: 60%;
    left: 75%;
    font-size: 3rem;
    animation-duration: 22s;
    animation-delay: -3s;
}

.floater-3 {
    top: 35%;
    right: 10%;
    font-size: 2.2rem;
    animation-duration: 14s;
    animation-delay: -7s;
}

.floater-4 {
    top: 72%;
    left: 20%;
    font-size: 2.8rem;
    animation-duration: 25s;
    animation-delay: -2s;
}

.floater-5 {
    top: 48%;
    left: 42%;
    font-size: 2.6rem;
    animation-duration: 20s;
    animation-delay: -5s;
}

@keyframes float-around {
    0% {
        transform: translateY(0) rotate(0deg) scale(0.95);
    }
    50% {
        transform: translateY(-25px) rotate(10deg) scale(1.05);
        opacity: 0.45;
    }
    100% {
        transform: translateY(10px) rotate(-10deg) scale(0.95);
        opacity: 0.25;
    }
}

/* Hero Laser Beam */
.hero-laser {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(to right, var(--secondary), #ffffff, var(--secondary));
    box-shadow: 0 0 8px var(--secondary), 0 0 15px var(--secondary-glow);
    pointer-events: none;
    z-index: 9999;
    transform-origin: 0 50%;
    transition: opacity 0.15s ease-out;
}

/* Explosion Spark Particle */
.laser-particle {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 10px var(--secondary), 0 0 20px var(--secondary-glow);
    pointer-events: none;
    z-index: 10000;
}

/* Gaming Controller Turret */
.gaming-controller-turret {
    position: fixed;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    font-size: 3rem;
    z-index: 10000;
    pointer-events: none;
    filter: drop-shadow(0 0 12px var(--secondary-glow));
    transition: transform 0.05s linear;
    transform-origin: bottom center;
}

/* Retro Neon Scoreboard */
.score-board {
    position: fixed;
    top: 100px;
    left: 20px;
    background: rgba(15, 15, 20, 0.85);
    border: 2px solid var(--secondary);
    border-radius: 8px;
    padding: 10px 18px;
    color: var(--secondary);
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 0 0 10px var(--secondary-glow);
    box-shadow: 0 0 15px rgba(157, 0, 255, 0.3), inset 0 0 10px rgba(157, 0, 255, 0.2);
    z-index: 99;
    pointer-events: none;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

/* Cursor-following Circuit Orb */
.circuit-orb {
    position: fixed;
    width: 24px;
    height: 24px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10000;
    transition: width 0.2s, height 0.2s, border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 10px var(--primary-glow);
    opacity: 0; /* Initially hidden until mouse moves */
}

/* When hovering over clickable targets, crosshair expands & glows green */
.circuit-orb.target-hover {
    width: 36px;
    height: 36px;
    border-color: var(--secondary);
    box-shadow: 0 0 15px var(--secondary-glow);
}

/* On mobile/touch screens, hide custom cursor and position scoreboard in bottom left */
@media (max-width: 1024px) {
    .circuit-orb {
        display: none !important;
    }
    .score-board {
        top: auto;
        bottom: 20px;
        left: 20px;
        font-size: 0.95rem;
        padding: 6px 12px;
        box-shadow: 0 0 10px rgba(157, 0, 255, 0.2);
    }
}



