/* --- ROOT VARIABLES --- */
:root {
    /* Basic Dark Tones (Color 1) */
    --primary-dark: #000000;
    --secondary-dark: #0A0A0A;
    --tertiary-dark: #1A1A1A;

    /* Vibrant Accent Color 2: Electric Blue */
    --vibrant-blue: #00FFFF;

    /* Vibrant Accent Color 3: Electric Magenta */
    --vibrant-magenta: #FF00FF;

    /* Text colors */
    --text-light: #E0E0E0;
    --text-white: #FFFFFF;
    
    /* Border and shadow colors based on accents */
    --border-accent-blue: rgba(0, 255, 255, 0.5);
    --border-accent-magenta: rgba(255, 0, 255, 0.5);
    --shadow-vibrant-blue: rgba(0, 255, 255, 0.3);
    --shadow-vibrant-magenta: rgba(255, 0, 255, 0.3);

    /* CTA Gradient using the two vibrant colors */
    --cta-gradient: linear-gradient(90deg, var(--vibrant-blue), var(--vibrant-magenta)); 
    --cta-hover-gradient: linear-gradient(90deg, var(--vibrant-magenta), var(--vibrant-blue));
}

/* --- GLOBAL STYLES --- */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('https://apextrack.site/public/images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--text-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- NAVBAR --- */
.navbar {
    background-color: var(--secondary-dark);
    padding: 15px 0;
    border-bottom: 1px solid var(--tertiary-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.navbar-brand {
    font-size: 1.8em;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-white);
    flex-shrink: 0;
}

.apex-color {
    color: var(--vibrant-blue);
}

.track-color {
    color: var(--vibrant-magenta);
}

/* Desktop Navigation Links */
.navbar-links {
    display: flex; 
    flex-grow: 1; 
    justify-content: center;
}

.navbar-links a {
    color: var(--text-light);
    text-decoration: none;
    margin: 0 15px; 
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-links a:hover {
    color: var(--vibrant-blue);
}

/* Desktop CTAs (Login/Register) */
.navbar-ctas-desktop {
    display: flex;
    flex-shrink: 0;
    align-items: center;
}

.navbar-ctas-desktop .navbar-cta {
    background: none;
    border: 1px solid var(--vibrant-blue);
    padding: 10px 20px;
    border-radius: 8px;
    color: var(--vibrant-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.navbar-ctas-desktop .navbar-cta:hover {
    background: var(--vibrant-blue);
    color: var(--primary-dark);
    box-shadow: 0 0 15px var(--shadow-vibrant-blue);
}

.navbar-ctas-desktop .login-button {
    border-color: var(--vibrant-magenta);
    color: var(--vibrant-magenta);
}
.navbar-ctas-desktop .login-button:hover {
    background: var(--vibrant-magenta);
    color: var(--primary-dark);
    box-shadow: 0 0 15px var(--shadow-vibrant-magenta);
}

/* Mobile Navigation Specifics (Sidebar) */
.hamburger-icon {
    font-size: 1.5em;
    color: var(--text-white);
    cursor: pointer;
    display: none;
    margin-left: 20px;
    z-index: 1001;
}

.nav-links-mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.nav-links-mobile-overlay.open {
    display: block;
    opacity: 1;
}

.nav-links-mobile {
    position: fixed;
    top: 0;
    right: 0;
    width: 70vw;
    max-width: 300px;
    height: 100%;
    background-color: var(--secondary-dark);
    display: flex;
    flex-direction: column;
    padding-top: 80px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
    overflow-y: auto;
}

.nav-links-mobile.open {
    transform: translateX(0);
}

.nav-links-mobile a {
    color: var(--text-light);
    text-decoration: none;
    padding: 15px 25px;
    font-weight: 500;
    transition: color 0.3s ease, background-color 0.3s ease;
    border-bottom: 1px solid var(--tertiary-dark);
}

.nav-links-mobile a:last-of-type {
    border-bottom: none;
}

.nav-links-mobile a:hover {
    color: var(--vibrant-blue);
    background-color: rgba(0, 255, 255, 0.1);
}

/* Styling for Login/Register buttons inside mobile menu */
.nav-links-mobile .mobile-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 25px;
    border-top: 1px solid var(--tertiary-dark);
    margin-top: 20px;
}

.nav-links-mobile .mobile-cta-buttons .navbar-cta {
    width: 100%;
    text-align: center;
    background: none;
    padding: 12px 0;
}

.nav-links-mobile .mobile-cta-buttons .navbar-cta:hover {
    background: var(--vibrant-blue);
    color: var(--primary-dark);
    box-shadow: 0 0 15px var(--shadow-vibrant-blue);
}

.nav-links-mobile .mobile-cta-buttons .login-button {
    border-color: var(--vibrant-magenta);
    color: var(--vibrant-magenta);
}
.nav-links-mobile .mobile-cta-buttons .login-button:hover {
    background: var(--vibrant-magenta);
    color: var(--primary-dark);
    box-shadow: 0 0 15px var(--shadow-vibrant-magenta);
}

/* --- HERO SECTION --- */
.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--tertiary-dark);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 255, 255, 0.07) 0%, transparent 70%);
    animation: rotateBackground 20s linear infinite;
    z-index: 0;
}

@keyframes rotateBackground {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-text-container {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-headline {
    font-size: 3.5em;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 0 15px var(--shadow-vibrant-blue);
}

.hero-subheadline {
    font-size: 1.2em;
    color: var(--text-light);
    margin-bottom: 40px;
    opacity: 0.8;
}

.main-cta-button {
    background: var(--cta-gradient);
    color: var(--text-white);
    padding: 18px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    display: inline-block;
    box-shadow: 0 8px 25px var(--shadow-vibrant-blue);
    border: 1px solid var(--border-accent-blue);
}

.main-cta-button:hover {
    background: var(--cta-hover-gradient);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px var(--shadow-vibrant-magenta);
    border-color: var(--border-accent-magenta);
}

.no-credit-card-text {
    margin-top: 15px;
    font-size: 0.9em;
    color: var(--text-light);
    opacity: 0.7;
}

/* --- SECTIONS GENERAL --- */
section {
    padding: 80px 0;
    background-color: rgba(10, 10, 10, 0.85); 
    margin-bottom: 60px; 
    border-bottom: 1px solid var(--tertiary-dark);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(3px);
}

section:last-of-type {
    border-bottom: none;
    margin-bottom: 60px;
}

.section-headline { 
    font-size: 2.8em;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.3;
    text-shadow: 0 0 15px var(--shadow-vibrant-blue);
    padding: 0 20px;
}

/* --- FEATURES & WHY SECTION (NEW FAQ STYLE) --- */
.faq-section-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    margin-bottom: 25px;
    border-left: 3px solid var(--vibrant-blue);
    padding-left: 20px;
    background-color: var(--tertiary-dark);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: border-color 0.3s ease;
}
.faq-item:hover {
    border-left-color: var(--vibrant-magenta);
}

.faq-question {
    font-size: 1.2em;
    color: var(--text-white);
    margin: 0;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600; 
}

.faq-question:hover {
    color: var(--vibrant-magenta);
}

.faq-question .toggle-icon {
    font-size: 0.8em;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.faq-question .toggle-icon.rotated {
    transform: rotate(90deg);
}

.faq-answer {
    color: var(--text-light);
    font-size: 1em;
    line-height: 1.7;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    padding-top: 0;
    padding-bottom: 0;
}

.faq-answer.open {
    max-height: 200px;
    padding-top: 15px;
    padding-bottom: 5px;
}
/* --- PRICING SECTION - 2x2 GRID STYLE --- */
.pricing-section {
    padding: 80px 20px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    align-items: stretch;
    padding: 0;
}

.pricing-card {
    background-color: var(--tertiary-dark);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px var(--shadow-vibrant-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 2px solid var(--border-accent-blue);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* CORRECT FIX FOR ::marker issue */
.pricing-card ul,
.pricing-card ol {
    list-style: none; /* This is the correct way to remove markers */
    padding-left: 0; /* Also important to remove indentation */
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px var(--shadow-vibrant-magenta);
    border-color: var(--border-accent-magenta);
}

.pricing-card h3 {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.pricing-card p.description {
    font-size: 1em;
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 25px;
}

.pricing-card .price {
    font-size: 2.8em;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 30px;
    display: block;
    text-shadow: 0 0 15px var(--shadow-vibrant-blue);
}

.pricing-card .price span {
    font-size: 0.5em;
    font-weight: 500;
    color: var(--text-light);
    opacity: 0.8;
}

.pricing-cta {
    display: block;
    background: var(--cta-gradient);
    color: var(--text-white);
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-vibrant-blue);
    border: 1px solid var(--border-accent-blue);
}

.pricing-cta:hover {
    background: var(--cta-hover-gradient);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--shadow-vibrant-magenta);
    border-color: var(--border-accent-magenta);
}

/* --- FOOTER - CONFORMING TO APEXTRACK STYLE --- */
.footer {
    background-color: var(--secondary-dark); 
    padding: 60px 0 20px;
    color: var(--text-light);
    border-top: 1px solid var(--tertiary-dark);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.7);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: 60px;
}

.footer .content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-col {
    flex: 1;
    min-width: 150px;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--vibrant-magenta);
}

.brand-col .footer-logo {
    font-size: 2.2em; /* Anda bisa mengubah nilai ini */
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 15px;
}

.brand-col p {
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--text-white);
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center; /* Tambahan: Menyelaraskan ikon secara vertikal */
}

/* Mengubah gaya untuk ikon Font Awesome */
.social-links a i {
    font-size: 28px; /* Gunakan font-size untuk mengubah ukuran ikon */
    color: var(--text-light); /* Atur warna ikon */
    opacity: 0.8;
    transition: opacity 0.3s, color 0.3s; /* Tambahkan transisi warna */
}

/* Mengubah gaya saat ikon di-hover */
.social-links a:hover i {
    opacity: 1;
    color: var(--vibrant-blue); /* Contoh: Ubah warna saat di-hover */
}

/* Tetap pertahankan gaya lama jika Anda masih menggunakan gambar */
.social-links img {
    width: 24px;
    height: 24px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.social-links img:hover {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--tertiary-dark);
    margin-top: 40px;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.legal-links p {
    color: var(--vibrant-blue);
    font-weight: bold;
    margin: 0;
}

.legal-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.6;
}

/* --- NEW PAGE SPECIFIC STYLES (for Privacy, Terms, Contact) --- */
.static-page-content {
    padding: 80px 0;
    background-color: rgba(10, 10, 10, 0.85); 
    min-height: calc(100vh - 180px);
    text-align: center;
    backdrop-filter: blur(3px);
}

.static-page-content h1 {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 10px var(--shadow-vibrant-blue);
}

.static-page-content h2 {
    font-size: 1.8em;
    color: var(--vibrant-blue);
    margin-top: 40px;
    margin-bottom: 15px;
    border-bottom: 1px dashed rgba(0, 255, 255, 0.3);
    padding-bottom: 5px;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.static-page-content p,
.static-page-content address {
    font-size: 1em;
    color: var(--text-light);
    margin-bottom: 1em;
    text-align: center;
}

.static-page-content ul {
    list-style: none;
    padding-left: 0;
    font-size: 1em;
    color: var(--text-light);
    margin-bottom: 1em;
    text-align: center;
}

.static-page-content ul li {
    margin-bottom: 0.5em;
    position: relative;
    padding-left: 1.5em;
    display: inline-block;
}

.static-page-content ul li::before {
    content: "\2022";
    color: var(--vibrant-magenta);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1.5em;
    text-align: right;
}

/* Styling for the contact form (simple example) */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--tertiary-dark);
    border-radius: 12px;
    box-shadow: 0 6px 20px var(--shadow-vibrant-magenta);
    border: 2px solid var(--border-accent-magenta);
    text-align: left;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-white);
    font-weight: 600;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: calc(100% - 24px);
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid var(--border-accent-blue);
    border-radius: 8px;
    background-color: var(--primary-dark);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--vibrant-magenta);
    box-shadow: 0 0 10px var(--shadow-vibrant-magenta);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    background: var(--cta-gradient);
    color: var(--text-white);
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-vibrant-blue);
    display: block;
    margin: 0 auto;
}

.contact-form button:hover {
    background: var(--cta-hover-gradient);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-vibrant-magenta);
}

/* --- RESPONSIVE ADJUSTMENTS --- */
/* Tablets (max-width: 900px) */
@media (max-width: 900px) {
    .hero-headline {
        font-size: 2.8em;
    }
    .hero-subheadline {
        font-size: 1.1em;
    }
    .section-headline {
        font-size: 2.2em;
    }
    
    /* Perbaikan Penting */
    .navbar-links {
        display: none;
    }
    .navbar-ctas-desktop {
        display: none;
    }
    .hamburger-icon {
        display: block; 
    }
    .navbar-content {
        justify-content: space-between; 
        flex-wrap: nowrap;
    }
    
    /* Corrected headline class */
    .features-section .section-headline,
    .static-page-content h1 {
        font-size: 2em;
    }
    .static-page-content h2 {
        font-size: 1.6em;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* Mobile Landscape (max-width: 768px) */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 15px; 
    }
    .hero-headline {
        font-size: 2.2em;
    }
    .hero-subheadline {
        font-size: 1em;
    }
    .main-cta-button {
        font-size: 1em;
        padding: 15px 25px;
    }
    .section-headline {
        font-size: 1.8em;
    }
    
    .faq-question {
        font-size: 1.1em;
    }
    .faq-item {
        padding-left: 15px;
    }
    .static-page-content h1 {
        font-size: 1.8em;
    }
    .static-page-content h2 {
        font-size: 1.4em;
    }
    .nav-links-mobile .mobile-cta-buttons .navbar-cta {
        padding: 10px 0; 
    }
}

/* Mobile Portrait (max-width: 480px) */
@media (max-width: 480px) {
    .hero-section {
        padding: 60px 15px;
    }
    .hero-headline {
        font-size: 1.8em;
    }
    .navbar-brand {
        font-size: 1.5em;
    }
    .section-headline {
        font-size: 1.5em;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    .footer-links a {
        margin: 0; 
    }
    .faq-question {
        font-size: 1em;
    }
    .faq-item {
        padding-left: 15px; 
    }
    .static-page-content h1 {
        font-size: 1.6em;
    }
    .static-page-content h2 {
        font-size: 1.2em;
    }
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form textarea {
        width: calc(100% - 20px); 
        padding: 10px;
    }
    .contact-form {
        padding: 15px;
    }

    /* CORRECT FIXES FOR MOBILE PRICING SECTION */
    .pricing-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0 15px 20px;
        width: 100%;
        max-width: none;
        box-sizing: border-box;
        justify-content: flex-start;
        gap: 20px; /* NEW: Use gap for correct spacing */
    }
    .pricing-card {
        flex: 0 0 280px;
        /* REMOVED: margin-right: 20px; to fix extra spacing */
        box-sizing: border-box;
    }

    /* FIX for potential lists inside pricing cards */
    .pricing-card ul,
    .pricing-card ol {
        list-style: none;
        padding-left: 0;
    }

    .pricing-grid::-webkit-scrollbar {
        height: 8px;
    }
    .pricing-grid::-webkit-scrollbar-track {
        background: var(--secondary-dark);
        border-radius: 10px;
    }
    .pricing-grid::-webkit-scrollbar-thumb {
        background: var(--vibrant-blue);
        border-radius: 10px;
        border: 2px solid var(--secondary-dark);
    }
}

/* Very Small Mobile (max-width: 375px) */
@media (max-width: 375px) {
    .hero-headline {
        font-size: 1.6em;
    }
    .faq-item {
        padding: 15px;
    }
    .pricing-card {
        flex: 0 0 260px;
        padding: 25px;
    }
}
.message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-weight: bold;
}

.success-message {
    color: green;
}

.error-message {
    color: red;
}
.promo-code-container {
    background-color: var(--primary-dark);
    padding: 20px 30px;
    border: 2px solid var(--vibrant-blue);
    border-radius: 12px;
    text-align: center;
    margin: 30px auto; /* Memberikan spasi di atas dan bawah serta menengahkan */
    max-width: 300px; /* Batasi lebar agar tidak terlalu besar di desktop */
    box-shadow: 0 0 15px var(--shadow-vibrant-blue);
    position: relative; /* Diperlukan untuk elemen pseudo atau positioning lainnya */
    overflow: hidden; /* Mengatur overflow jika ada efek tambahan */
    transition: all 0.3s ease;
}

.promo-code-container code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.5em;
    font-weight: bold;
    color: var(--vibrant-magenta);
    letter-spacing: 2px;
    user-select: all; /* Memungkinkan pengguna untuk memilih seluruh teks dengan mudah */
}

/* Efek Hover untuk meningkatkan interaksi */
.promo-code-container:hover {
    border-color: var(--vibrant-magenta);
    box-shadow: 0 0 20px var(--shadow-vibrant-magenta);
    transform: translateY(-3px);
}