/* -- FULL CSS PREVIOUS BASE -- */
:root {
    --bg-dark: #05080a;
    --text-white: #e0e0e0;
    --text-gray: #8892b0;
    --accent-red: #ff3333;
    --accent-red-glow: rgba(255, 51, 51, 0.5);
    --accent-green: #00ff66;
    --accent-green-glow: rgba(0, 255, 102, 0.4);
    --glass-bg: rgba(10, 15, 20, 0.65);
    --border-color: rgba(0, 255, 102, 0.2);
    --font-main: 'Montserrat', sans-serif;
    --font-tech: 'Rajdhani', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
}

/* TOP TIMER BAR */
.top-timer-bar {
    width: 100%;
    background-color: var(--accent-red);
    color: #fff;
    text-align: center;
    padding: 0.6rem 1rem;
    font-family: var(--font-tech);
    font-weight: 700;
    position: relative;
    z-index: 100;
    box-shadow: 0 4px 15px var(--accent-red-glow);
}

.timer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.pulse-red-dot {
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 50%;
    animation: blinkLight 1s infinite alternate;
}

@keyframes blinkLight {
    0% {
        opacity: 0.5;
        box-shadow: 0 0 5px #fff;
    }

    100% {
        opacity: 1;
        box-shadow: 0 0 15px #fff;
    }
}

.timer-text {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.timer-clock {
    font-size: 1.4rem;
    background: #000;
    padding: 2px 10px;
    border-radius: 4px;
    color: var(--accent-green);
    text-shadow: 0 0 5px var(--accent-green-glow);
    border: 1px solid var(--accent-green);
}

/* Technological Trading Background - INFINITE */
.tech-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background-color: var(--bg-dark);
    pointer-events: none;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--border-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center;
    opacity: 0.15;
    perspective: 500px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(50px);
    }
}

.moving-chart-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 200vw;
    /* Double width for scrolling effect */
    height: 100%;
    animation: scrollChart 30s linear infinite;
    /* INFINITE SCROLL */
}

@keyframes scrollChart {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.chart-line-infinite {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.neon-line-infinite {
    stroke: var(--accent-green);
    stroke-width: 3;
    filter: drop-shadow(0 0 10px var(--accent-green));
}

.line-glow-infinite {
    opacity: 0.5;
}

.candlesticks-infinite {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.candle {
    position: absolute;
    width: 12px;
    border-radius: 2px;
    opacity: 0.4;
    box-shadow: 0 0 15px currentColor;
}

.candle::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 150%;
    top: -25%;
    left: 5px;
    background-color: inherit;
    z-index: -1;
}

.candle.green {
    background-color: var(--accent-green);
    color: var(--accent-green);
}

.candle.red {
    background-color: var(--accent-red);
    color: var(--accent-red);
}

/* Page Frame */
.page-wrapper {
    max-width: 700px;
    margin: 2rem auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

.glass-container {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 255, 102, 0.15);
    border-radius: 4px;
    padding: 2.5rem 2.5rem;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(0, 255, 102, 0.05);
}

.hud-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--accent-green);
    border-style: solid;
    pointer-events: none;
    opacity: 0.7;
}

.top-left {
    top: -1px;
    left: -1px;
    border-width: 2px 0 0 2px;
}

.top-right {
    top: -1px;
    right: -1px;
    border-width: 2px 2px 0 0;
}

.bottom-left {
    bottom: -1px;
    left: -1px;
    border-width: 0 0 2px 2px;
}

.bottom-right {
    bottom: -1px;
    right: -1px;
    border-width: 0 2px 2px 0;
}

/* TRANSPARENT LOGO */
.header {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.logo-wrapper-transparent {
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
    min-width: 250px;
    background: transparent;
    border: none;
}

/* Headlines */
.text-center {
    text-align: center;
}

.badge-tech {
    display: inline-block;
    color: #000;
    background-color: var(--accent-green);
    font-family: var(--font-tech);
    font-weight: 800;
    padding: 0.3rem 1rem;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    box-shadow: 0 0 15px var(--accent-green-glow);
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.limited-badge {
    background-color: var(--accent-red);
    color: #fff;
    box-shadow: 0 0 15px var(--accent-red-glow);
    animation: flashBadge 2s infinite;
}

@keyframes flashBadge {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.main-headline {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 0.2rem;
    font-family: var(--font-main);
    letter-spacing: -0.02em;
    text-shadow: 2px 0 0px var(--accent-red), -2px 0 0px #00f;
    text-transform: uppercase;
}

.sub-headline {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

/* HIGHLIGHTS FOR COPY */
.highlight-red-glow {
    color: var(--accent-red);
    text-shadow: 0 0 10px var(--accent-red-glow);
}

.highlight-red-bold {
    color: var(--accent-red);
    font-weight: 800;
    background: rgba(255, 51, 51, 0.1);
    padding: 0 4px;
    border-radius: 2px;
}

.highlight-green-bold {
    color: var(--accent-green);
    font-weight: 800;
    background: rgba(0, 255, 102, 0.05);
    padding: 0 4px;
    border-radius: 2px;
}

.highlight-white-bold {
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-decoration: underline;
    text-decoration-color: var(--accent-red);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

/* Copywriting section styles */
.copy-section {
    margin-bottom: 2rem;
}

.lead-text {
    font-size: 1.15rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--accent-red);
    padding-left: 1rem;
    background: linear-gradient(90deg, rgba(255, 51, 51, 0.05) 0%, transparent 100%);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.body-text {
    font-size: 1.05rem;
    color: #d0d0d0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Modules Grid */
.modules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.module-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 102, 0.2);
    padding: 1.5rem;
    border-radius: 4px;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 255, 102, 0.1);
    border-color: rgba(0, 255, 102, 0.5);
}

.module-number {
    position: absolute;
    top: -15px;
    left: 15px;
    background: var(--bg-dark);
    color: var(--accent-green);
    font-family: var(--font-tech);
    font-weight: 800;
    font-size: 1.5rem;
    padding: 0 10px;
    border: 1px solid var(--accent-green);
}

.module-card h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    margin-top: 5px;
    font-weight: 700;
}

.module-card p {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* VSL Video */
.vsl-section {
    width: 100%;
    margin-bottom: 2.5rem;
}

.video-container {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #000;
    border: 1px solid rgba(0, 255, 102, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 255, 102, 0.1);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: repeating-linear-gradient(transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.8) 2px,
            rgba(0, 0, 0, 0.8) 4px), linear-gradient(135deg, #0a1128, #05080a);
}

.vsl-text-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-family: var(--font-tech);
    color: var(--accent-green);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blinking-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-red);
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 10px var(--accent-red);
    }

    50% {
        opacity: 0.3;
        box-shadow: none;
    }
}

.play-button {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.play-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 51, 51, 0.4);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.play-button svg {
    width: 40px;
    height: 40px;
    color: var(--accent-red);
    margin-left: 5px;
    filter: drop-shadow(0 0 10px var(--accent-red));
    transition: transform 0.2s;
}

.play-button:hover svg {
    transform: scale(1.1);
    color: #ff6666;
}

/* Divider & Bridge */
.tech-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 2rem 0;
    color: var(--accent-green);
    font-family: var(--font-tech);
    opacity: 0.6;
}

.tech-divider .line {
    height: 1px;
    width: 100px;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
}

.bridge-text h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.bridge-text p {
    color: #bbb;
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Alert Urgency Copy */
.alert-italic {
    color: var(--accent-red) !important;
    font-weight: 500;
}

.bridge-text .small-italic {
    font-size: 0.85rem;
    font-style: italic;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

/* CTAs - Multiple Now */
.cta-wrapper {
    margin-top: 1.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.cyber-button {
    position: relative;
    width: 100%;
    padding: 1.4rem;
    background: rgba(0, 255, 102, 0.05);
    color: var(--accent-green);
    font-size: 1.25rem;
    font-weight: 800;
    font-family: var(--font-tech);
    border: 2px solid var(--accent-green);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.1), inset 0 0 10px rgba(0, 255, 102, 0.1);
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.pulse-btn {
    animation: btnPulse 2.5s infinite;
}

@keyframes btnPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 255, 102, 0.1), inset 0 0 10px rgba(0, 255, 102, 0.1);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 255, 102, 0.4), inset 0 0 30px rgba(0, 255, 102, 0.2);
        transform: scale(1.02);
    }
}

.cyber-button span {
    position: relative;
    z-index: 2;
    text-shadow: 0 0 5px var(--accent-green);
}

.cyber-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 102, 0.3), transparent);
    transition: left 0.4s ease;
    z-index: 1;
}

.cyber-button:hover {
    background-color: var(--accent-green);
    color: #000;
    box-shadow: 0 0 30px var(--accent-green-glow) !important;
}

.cyber-button:hover span {
    text-shadow: none;
    font-weight: 900;
}

.cyber-button:hover::before {
    left: 100%;
}

.cta-subtext {
    font-family: var(--font-tech);
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-top: 1rem;
    letter-spacing: 0.05em;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cyber-panel {
    background: #05080a;
    border: 1px solid var(--accent-green);
    padding: 3rem 2rem;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 0 40px rgba(0, 255, 102, 0.15), inset 0 0 20px rgba(0, 255, 102, 0.05);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .cyber-panel {
    transform: translateY(0);
}

.tech-font {
    font-family: var(--font-tech);
    letter-spacing: 0.1em;
}

.form-section h2 {
    color: var(--accent-green);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px var(--accent-green-glow);
}

.form-section p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-family: var(--font-main);
}

.cyber-input {
    position: relative;
    margin-bottom: 1.5rem;
}

.cyber-input input {
    width: 100%;
    padding: 1.2rem;
    background: rgba(0, 255, 102, 0.02);
    border: 1px solid rgba(0, 255, 102, 0.2);
    color: var(--text-white);
    font-family: var(--font-tech);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.cyber-input input:focus {
    border-color: var(--accent-green);
    background: rgba(0, 255, 102, 0.05);
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.1);
}

.input-scanner {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background-color: var(--accent-green);
    transition: width 0.3s ease;
}

.cyber-input input:focus~.input-scanner {
    width: 100%;
    box-shadow: 0 0 10px var(--accent-green);
}

.submit-btn {
    margin-top: 1rem;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--accent-green);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.close-btn:hover {
    opacity: 1;
    text-shadow: 0 0 10px var(--accent-green);
}

.privacy-note {
    font-size: 0.75rem !important;
    text-align: center;
    margin-top: 1rem;
    color: #444 !important;
    font-family: var(--font-tech);
    text-transform: uppercase;
}

.success-section {
    text-align: center;
}

.radar-ping {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent-green);
    top: 0;
    left: 0;
    animation: ping 1.5s infinite ease-out;
}

@keyframes ping {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.success-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.manual-download-link {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-tech);
    display: inline-block;
    margin-top: 10px;
}

.manual-download-link:hover {
    text-shadow: 0 0 10px var(--accent-green);
}

.hidden {
    display: none !important;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .modules-grid {
        grid-template-columns: 1fr;
    }

    .glass-container {
        padding: 1.5rem 1rem;
    }

    .main-headline {
        font-size: 1.6rem;
    }

    .sub-headline {
        font-size: 1.8rem;
    }

    .cyber-button {
        font-size: 1.1rem;
    }
}

/* ========================================================= */
/* ADDITIONS TO PREVIOUS CSS FOR PREMIUM ELEMENTS / FIXES    */
/* ========================================================= */

/* FIXING BONUS LIST (IMAGE REPLICATION) */
.bonus-section {
    background: transparent;
    border-left: 2px solid var(--accent-green);
    padding: 1rem 1.5rem;
    margin-bottom: 2.5rem;
}

.tech-check-header {
    color: var(--accent-green);
    font-family: var(--font-tech);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px var(--accent-green-glow);
}

.bonus-list-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

.bonus-list-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.check-box-green {
    color: var(--accent-green);
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0;
    margin-top: -3px;
    flex-shrink: 0;
}

.bonus-text {
    color: #e0e0e0;
    font-size: 1.05rem;
    line-height: 1.4;
    text-align: left;
}

/* NEW LOGO STYLES */
.logo-image {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
    /* This automatically removes the white/gray background and makes the black logo text/animals turn white */
    filter: grayscale(1) invert(1) brightness(1.5) contrast(1.5);
    mix-blend-mode: screen;
}

/* PREMIUM CTA BUTTON */
.premium-cta-wrapper {
    margin-bottom: 4rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 2.5rem 1rem;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.05);
    border-radius: 4px;
}

.tech-lines-decor {
    position: absolute;
    top: -1px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.8), transparent);
}

.tech-lines-decor::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.8), transparent);
}

.cta-pre-text {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cyber-button-premium {
    position: relative;
    width: 100%;
    padding: 1.4rem;
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    font-size: 1.25rem;
    font-weight: 800;
    font-family: var(--font-tech);
    border: 2px solid #ffd700;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.pulse-premium-btn {
    animation: btnPulsePremium 2s infinite;
}

@keyframes btnPulsePremium {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.2), inset 0 0 10px rgba(255, 215, 0, 0.1);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.5), inset 0 0 20px rgba(255, 215, 0, 0.3);
        transform: scale(1.02);
    }
}

.cyber-button-premium:hover {
    background-color: #ffd700;
    color: #000;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
}

.cta-subtext-premium {
    font-family: var(--font-tech);
    color: #ffd700;
    font-size: 0.85rem;
    margin-top: 1.2rem;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

/* HIGHLIGHT BOX */
.highlight-box {
    background: rgba(255, 51, 51, 0.05);
    border-left: 3px solid var(--accent-red);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    font-weight: 500;
}

/* BUY MODAL GOLD STYLES */
.gold-panel {
    border-color: #ffd700;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.15), inset 0 0 20px rgba(255, 215, 0, 0.05);
}

.gold-corner {
    border-color: #ffd700;
}

.premium-text {
    color: #ffd700 !important;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5) !important;
}

.gold-input input:focus {
    border-color: #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.gold-scanner {
    background-color: #ffd700;
}

.gold-input input:focus~.gold-scanner {
    box-shadow: 0 0 10px #ffd700;
}