:root {
    --bg: #0a0a0a;
    --blood-red: #cc0000;
    --electric-red: #ff2200;
    --chrome: #c0c0c0;
    --text-main: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.7);
    --font-head: 'Orbitron', sans-serif;
    --font-body: 'Exo 2', sans-serif;
    --glow: 0 0 15px rgba(255, 34, 0, 0.5);
    --neon-border: 1px solid rgba(255, 34, 0, 0.3);
}

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

body, html, a, button, input, select, textarea, label {
    cursor: none !important;
}

iframe, .about-map iframe {
    cursor: auto !important;
}

.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--electric-red);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 999999; /* Max depth */
    transition: transform 0.05s linear, opacity 0.3s ease;
    box-shadow: 0 0 15px var(--electric-red);
    will-change: transform;
}

.cursor-follower {
    width: 8px;
    height: 8px;
    background: var(--electric-red);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 999999; /* Max depth */
    transition: opacity 0.3s ease;
    will-change: transform;
}

body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    background-image: radial-gradient(circle at 50% 50%, rgba(204, 0, 0, 0.05) 0%, transparent 80%);
}

h1, h2, h3 {
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 2px;
}

a, button, input, select, textarea {
    cursor: pointer;
}

/* Noise Texture Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://www.transparenttextures.com/patterns/asfalt-dark.png');
    opacity: 0.05;
    pointer-events: none;
    z-index: 9999;
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0; width: 100%;
    padding: 1.5rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
    backdrop-filter: blur(0px);
}

nav.scrolled {
    padding: 0.8rem 10%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 34, 0, 0.2);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    height: 55px;
    transition: height 0.4s ease;
    filter: drop-shadow(0 0 8px rgba(255, 34, 0, 0.4));
}

.nav-logo span {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 34, 0, 0.4);
}

nav.scrolled .nav-logo img {
    height: 42px;
}

nav.scrolled .nav-logo span {
    font-size: 0.95rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.nav-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
    transition: all 0.3s ease;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-family: var(--font-head);
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -5px; left: 0; width: 0%; height: 2px;
    background: var(--electric-red);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--electric-red);
}

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

/* --- Hero Section --- */
#hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 0 20px;
}

/* Floating Particles Canvas */
#particles-js {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.glitch-container {
    position: relative;
}

.hero-title {
    font-size: clamp(3.5rem, 12vw, 7rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 34, 0, 0.4);
    animation: heroFadeIn 1s ease-out;
}

.hero-tagline {
    font-size: clamp(1rem, 4vw, 1.5rem);
    color: var(--electric-red);
    font-weight: 600;
    letter-spacing: 5px;
    margin-bottom: 3rem;
    opacity: 0.8;
    animation: heroFadeIn 1.5s ease-out;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    animation: heroFadeIn 2s ease-out;
}

.btn {
    padding: 1rem 2.5rem;
    font-family: var(--font-head);
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--blood-red);
    color: #fff;
    border: 1px solid var(--electric-red);
    box-shadow: 0 0 15px rgba(255, 34, 0, 0.3);
}

.btn-primary:hover {
    background: var(--electric-red);
    box-shadow: 0 0 30px var(--electric-red);
    transform: scale(1.05);
}

.btn-outline {
    background: transparent;
    color: var(--electric-red);
    border: 1px solid var(--electric-red);
}

.btn-outline:hover {
    background: rgba(255, 34, 0, 0.1);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 34, 0, 0.2);
}

/* Diagonal streak */
#hero::after {
    content: "";
    position: absolute;
    bottom: -50px; left: -10%; width: 120%; height: 100px;
    background: linear-gradient(90deg, transparent, var(--blood-red), transparent);
    transform: rotate(-3deg);
    opacity: 0.3;
    filter: blur(20px);
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- About Section --- */
section {
    padding: 100px 10%;
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    display: inline-block;
    position: relative;
}

.section-header h2::before {
    content: "";
    position: absolute;
    left: 0; bottom: -10px; width: 60px; height: 4px;
    background: var(--electric-red);
    box-shadow: 0 0 10px var(--electric-red);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.stat-chips {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.chip {
    background: rgba(255, 255, 255, 0.05);
    border: var(--neon-border);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-head);
    font-size: 0.8rem;
    color: var(--electric-red);
    backdrop-filter: blur(5px);
    animation: float 4s ease-in-out infinite;
}

.chip:nth-child(2) { animation-delay: 1s; }

.about-map {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: var(--neon-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-5deg);
}

/* --- Pricing Section --- */
#pricing {
    background: linear-gradient(180deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.price-card {
    background: rgba(255, 255, 255, 0.03);
    border: var(--neon-border);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-card .btn {
    margin-top: auto;
    width: 100%;
}

.price-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--electric-red);
    box-shadow: 0 10px 40px rgba(255, 34, 0, 0.2);
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--electric-red);
}

.price-value {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    font-family: var(--font-head);
}

.price-value span {
    font-size: 1rem;
    color: var(--text-dim);
}

.price-features {
    list-style: none;
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.price-features li {
    margin-bottom: 0.5rem;
}

/* Alternating Tilt */
.pricing-grid .price-card:nth-child(odd) { transform: rotate(-1deg); }
.pricing-grid .price-card:nth-child(even) { transform: rotate(1deg); }
.pricing-grid .price-card:hover { transform: rotate(0deg) translateY(-15px); }

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.service-item {
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 34, 0, 0.05);
    border-color: var(--electric-red);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--electric-red);
    filter: drop-shadow(0 0 5px var(--electric-red));
}

/* --- Booking Section --- */
#booking {
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    padding: 4rem;
    border-radius: 20px;
    border: var(--neon-border);
    backdrop-filter: blur(15px);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full {
    grid-column: span 2;
}

label {
    font-family: var(--font-head);
    font-size: 0.8rem;
    color: var(--electric-red);
    text-transform: uppercase;
}

input, select, textarea {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    color: #fff;
    font-family: var(--font-body);
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--electric-red);
    box-shadow: 0 0 10px rgba(255, 34, 0, 0.2);
}

.submit-btn {
    margin-top: 2rem;
    width: 100%;
    border: none;
    background: var(--blood-red);
    color: #fff;
    padding: 1.2rem;
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 34, 0, 0.3);
}

.submit-btn:hover {
    background: var(--electric-red);
    box-shadow: 0 0 40px var(--electric-red);
    transform: translateY(-3px);
}

/* --- Footer --- */
footer {
    padding: 50px 10%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    height: 100px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 34, 0, 0.3));
}

.footer-tagline {
    font-family: var(--font-head);
    color: var(--electric-red);
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
    transition: all 0.3s ease;
    cursor: pointer;
}

.socials a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    display: block;
}

.socials a:hover {
    color: var(--electric-red);
    background: rgba(255, 34, 0, 0.05);
    border-color: var(--electric-red);
    box-shadow: 0 0 15px rgba(255, 34, 0, 0.3);
    transform: translateY(-3px);
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 3.5rem;
}

/* --- Animations --- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.reveal {
    opacity: 0;
    transform: translateY(40px) skewY(1deg);
    transition: all 1s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) skewY(0deg);
}

/* Glitch Effect */
.glitch {
    position: relative;
}

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

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00fff9, 2px 2px #ff00c1;
    animation: glitch-anim2 1s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(31px, 9999px, 94px, 0); }
    20% { clip: rect(62px, 9999px, 42px, 0); }
    40% { clip: rect(12px, 9999px, 62px, 0); }
    60% { clip: rect(84px, 9999px, 12px, 0); }
    80% { clip: rect(62px, 9999px, 42px, 0); }
    100% { clip: rect(31px, 9999px, 94px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(65px, 9999px, 100px, 0); }
    20% { clip: rect(15px, 9999px, 30px, 0); }
    40% { clip: rect(45px, 9999px, 60px, 0); }
    60% { clip: rect(10px, 9999px, 25px, 0); }
    80% { clip: rect(80px, 9999px, 95px, 0); }
    100% { clip: rect(30px, 9999px, 45px, 0); }
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    /* Touchscreen optimizations (Disable custom cursor on mobile viewports for standard touch scrolling indicators) */
    .cursor, .cursor-follower {
        display: none !important;
    }
    body, html, a, button, input, select, textarea, label {
        cursor: auto !important;
    }

    nav {
        padding: 1rem 5% !important;
    }
    nav.scrolled {
        padding: 0.6rem 5% !important;
    }
    .nav-logo {
        gap: 8px;
    }
    .nav-logo img {
        height: 38px !important;
    }
    .nav-logo span {
        font-size: 0.9rem !important;
        letter-spacing: 1px;
    }
    nav.scrolled .nav-logo img {
        height: 32px !important;
    }
    nav.scrolled .nav-logo span {
        font-size: 0.8rem !important;
    }
    
    /* Mobile Hamburger Overlay Navigation */
    .nav-toggle {
        display: flex !important;
    }
    
    .nav-links {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.96);
        border-left: 1px solid rgba(255, 34, 0, 0.2);
        backdrop-filter: blur(20px);
        padding: 8rem 2rem 2rem 2rem;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.25rem;
        font-family: var(--font-head);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 0.8rem;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
        background-color: var(--electric-red);
    }
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
        background-color: var(--electric-red);
    }
    
    /* Layout fixes */
    .about-grid { 
        grid-template-columns: 1fr; 
        gap: 2.5rem;
    }
    .form-grid { 
        grid-template-columns: 1fr; 
    }
    .form-group.full { 
        grid-column: span 1; 
    }
    
    /* Hero scaling & spacing */
    .hero-title { 
        font-size: 3rem; 
    }
    .hero-tagline {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    .hero-tagline-sub {
        font-size: 0.95rem !important;
        margin: -1rem 0 2rem 0 !important;
    }
    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        gap: 1rem;
        margin: 0 auto;
    }
    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }
    .hero-social-proof {
        font-size: 0.7rem !important;
        line-height: 1.4;
    }
    
    /* About section fixes */
    .about-text p {
        font-size: 1rem;
        line-height: 1.7;
    }
    .about-map { 
        height: 280px; 
        transform: none !important; 
    }
    
    /* Sections general padding */
    section { 
        padding: 50px 6%; 
    }
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    
    /* Box padding fixes to maximize screen real estate */
    .cta-highlight-box {
        padding: 1.5rem !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .cta-left h3 {
        font-size: 1.5rem !important;
        text-align: center;
    }
    .cta-right {
        grid-template-columns: 1fr !important;
        gap: 0.8rem !important;
    }
    .booking-container {
        padding: 1.8rem !important;
    }
}

/* Extra small viewport optimizations */
@media (max-width: 480px) {
    .games-grid { 
        grid-template-columns: 1fr !important; 
    }
    .game-card {
        padding: 1.5rem;
    }
    .event-badges {
        justify-content: center;
    }
    .event-chip {
        width: 100%;
        text-align: center;
        padding: 0.6rem 1rem;
    }
}

/* --- New Section Styles --- */
.hero-tagline-sub {
    font-family: 'Exo 2', sans-serif;
    font-style: italic;
    color: var(--text-dim);
    font-size: 1.1rem;
    margin: -1.5rem 0 2rem 0;
    opacity: 0.8;
}

.hero-social-proof {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Games Lineup */
.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.game-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.game-card:hover {
    border-color: var(--electric-red);
    box-shadow: 0 0 20px rgba(255, 34, 0, 0.1);
    transform: translateY(-5px);
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 20px; height: 20px;
    border-top: 2px solid var(--blood-red);
    border-left: 2px solid var(--blood-red);
}

.game-card h4 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.genre-tag {
    display: inline-block;
    background: rgba(204, 0, 0, 0.2);
    color: var(--electric-red);
    font-size: 0.7rem;
    padding: 2px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Pricing Badges */
.price-card {
    position: relative;
}

.price-badge {
    position: absolute;
    top: 15px; right: 15px;
    background: var(--blood-red);
    color: #fff;
    font-size: 0.7rem;
    padding: 4px 12px;
    font-family: var(--font-head);
    font-weight: 700;
    border-radius: 4px;
    box-shadow: 0 0 10px var(--blood-red);
}

/* Event Hosting */
.section-label {
    font-size: 0.8rem;
    color: var(--electric-red);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-family: var(--font-head);
    margin-bottom: 0.5rem;
    display: block;
}

.event-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.event-chip {
    border: 1px solid var(--blood-red);
    background: rgba(0, 0, 0, 0.5);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.cta-highlight-box {
    background: rgba(204, 0, 0, 0.1);
    border: 1px solid var(--blood-red);
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.cta-left h3 {
    font-size: 2rem;
    line-height: 1.2;
}

.cta-left span {
    color: var(--electric-red);
}

.cta-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.check-item span.checkmark {
    color: var(--electric-red);
    font-weight: bold;
}

@media (max-width: 768px) {
    .games-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-highlight-box { grid-template-columns: 1fr; gap: 2rem; }
    .cta-right { grid-template-columns: 1fr; }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9000;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    background-color: #111111;
    color: #ffffff;
    font-size: 12px;
    font-family: var(--font-body);
    padding: 6px 12px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

.whatsapp-float svg {
    display: block;
    width: 28px;
    height: 28px;
}

@media (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 16px;
    }
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
    .whatsapp-tooltip {
        display: none !important;
    }
}

/* Form AJAX Success Message styling */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.form-success-msg {
    background: rgba(180, 0, 0, 0.12);
    border: 1px solid rgba(230, 0, 0, 0.4);
    border-radius: 4px;
    padding: 1.25rem 1.5rem;
    color: #f0e6e6;
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: center;
    animation: fadeIn 0.4s ease forwards;
}

.voltraux-signature,
.voltraux-signature:visited,
.voltraux-signature:active {
    color: rgba(204, 0, 0, 0.75); /* Subtle deep blood red: noticed but extremely elegant and low-profile */
    font-weight: normal;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.voltraux-signature:hover {
    color: var(--electric-red) !important;
    text-shadow: 0 0 8px var(--electric-red);
}

#find-us a,
#find-us a:visited,
#find-us a:active,
footer a,
footer a:visited,
footer a:active {
    color: inherit;
    text-decoration: none;
}
