* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    background-color: #050505;
    background-image: url('/static/horror_bg.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #e8e8e8;
    font-family: 'Fira Mono', 'Courier New', monospace;
    padding: 30px 20px;
    line-height: 1.7;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 1;
}

/* HELP link - small text in bottom right corner */
.help-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 4px 8px;
    background: none;
    color: #ff2052;
    text-decoration: none;
    border: 1px solid #ff2052;
    font-size: 0.85em;
    font-weight: 700;
    font-family: 'Fira Mono', monospace;
    z-index: 9999;
    cursor: pointer;
}
.help-btn:hover { 
    color: #fff;
    background: #ff2052;
}

h1, h2, h3, h4, h5, h6 {
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

h1 {
    font-size: 2.5em;
    color: #ff2052;
    text-shadow: 0 0 15px #d90429, 0 0 30px #ff2052, 0 0 45px rgba(217, 4, 41, 0.5);
    border-bottom: 3px solid #d90429;
    padding-bottom: 15px;
    margin-bottom: 30px;
    animation: glitch-intense 2s infinite linear;
}

h2 {
    font-size: 1.8em;
    color: #d90429;
    text-shadow: 0 0 10px #ff2052;
    border-left: 4px solid #ff2052;
    padding-left: 15px;
}

h3 {
    font-size: 1.3em;
    color: #ff2052;
    border-bottom: 2px dashed #d90429;
    padding-bottom: 8px;
}

@keyframes glitch-intense {
    0% { text-shadow: 2px 0 #ff2052, -2px 0 #d90429, 0 2px #fff; }
    20% { text-shadow: -2px 2px #d90429, 2px -2px #ff2052, -4px 0 #fff; }
    40% { text-shadow: 2px -2px #ff2052, -2px 2px #d90429, 4px 0 #fff; }
    60% { text-shadow: -2px 0 #d90429, 2px 0 #ff2052, 0 -2px #fff; }
    80% { text-shadow: 2px 2px #ff2052, -2px -2px #d90429, -2px 2px #fff; }
    100% { text-shadow: 0 0 15px #d90429, 0 0 30px #ff2052, 0 0 45px rgba(217, 4, 41, 0.5); }
}

@keyframes glitch-soft {
    0% { text-shadow: 1px 0 #ff2052, -1px 0 #d90429; }
    50% { text-shadow: -1px 1px #d90429, 1px -1px #ff2052; }
    100% { text-shadow: 1px 0 #ff2052, -1px 0 #d90429; }
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    border: 2px solid #d90429;
    padding: 40px;
    box-shadow: 0 0 30px #d90429, 0 0 60px rgba(255, 32, 82, 0.3), inset 0 0 30px rgba(217, 4, 41, 0.08);
    background: linear-gradient(135deg, rgba(15, 5, 12, 0.95) 0%, rgba(25, 8, 18, 0.95) 100%);
    border-radius: 2px;
    position: relative;
    z-index: 2;
}

/* Forms & Inputs - Professional Clean */
input, select, textarea {
    background: rgba(20, 5, 15, 0.9);
    border: 1px solid #d90429;
    color: #e8e8e8;
    padding: 14px;
    width: 100%;
    margin-bottom: 16px;
    font-family: 'Fira Mono', 'Courier New', monospace;
    font-size: 0.95em;
    transition: all 0.3s ease;
    border-radius: 2px;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #ff2052;
    box-shadow: 0 0 15px rgba(255, 32, 82, 0.6), inset 0 0 10px rgba(217, 4, 41, 0.2);
    background: rgba(30, 8, 20, 0.95);
}

input::placeholder {
    color: #d90429;
    opacity: 0.6;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #ff2052;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(217, 4, 41, 0.5);
}

/* Buttons - Professional & Interactive */
button, .button {
    background: linear-gradient(135deg, #1a0a0a 0%, #2d0a15 100%);
    border: 1.5px solid #d90429;
    color: #e8e8e8;
    text-shadow: 0 0 5px #ff2052;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 14px 28px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Fira Mono', 'Courier New', monospace;
    transition: all 0.3s ease;
    border-radius: 2px;
    margin-right: 10px;
    position: relative;
    overflow: hidden;
    font-size: 0.95em;
}

button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 32, 82, 0.3), transparent);
    transition: left 0.5s ease;
}

button:hover:not(:disabled)::before {
    left: 100%;
}

button:hover:not(:disabled) {
    background: linear-gradient(135deg, #d90429 0%, #ff2052 100%);
    color: #0a0a0a;
    box-shadow: 0 0 25px rgba(255, 32, 82, 0.8), inset 0 0 15px rgba(255, 32, 82, 0.3);
    text-shadow: 0 0 10px #fff;
    border-color: #ff2052;
}

button:active:not(:disabled) {
    transform: scale(0.98);
}

button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Product Cards */
.product-card {
    border: 1px solid #d90429;
    padding: 20px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(217, 4, 41, 0.05) 0%, rgba(255, 32, 82, 0.02) 100%);
    transition: all 0.3s ease;
    border-radius: 2px;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #d90429 0%, #ff2052 100%);
    border-radius: 2px;
}

.product-card:hover {
    background: linear-gradient(135deg, rgba(217, 4, 41, 0.15) 0%, rgba(255, 32, 82, 0.08) 100%);
    border-color: #ff2052;
    box-shadow: 0 0 20px rgba(217, 4, 41, 0.4), inset 0 0 10px rgba(255, 32, 82, 0.1);
    transform: translateX(5px);
}

/* Messages & Alerts */
.glitch {
    color: #ff2052;
    font-weight: 700;
    text-shadow: 0 0 10px #d90429;
    animation: glitch-soft 0.3s infinite;
}

.success {
    border: 1px solid #22c55e;
    background: rgba(34, 197, 94, 0.08);
    color: #86efac;
    padding: 16px;
    margin: 16px 0;
    border-radius: 2px;
    border-left: 4px solid #22c55e;
}

.error {
    border: 1px solid #ff2052;
    background: rgba(255, 32, 82, 0.08);
    color: #ff6b9d;
    padding: 16px;
    margin: 16px 0;
    border-radius: 2px;
    border-left: 4px solid #ff2052;
}

/* Links */
a {
    color: #ff2052;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(217, 4, 41, 0.5);
    font-weight: 600;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 15px #ff2052;
    text-decoration: underline;
}

/* Tables - Professional */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th {
    background: linear-gradient(135deg, rgba(217, 4, 41, 0.15) 0%, rgba(255, 32, 82, 0.08) 100%);
    border: 1px solid #d90429;
    padding: 14px;
    text-align: left;
    color: #ff2052;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

td {
    border: 1px solid #333;
    padding: 12px;
    color: #e8e8e8;
}

tr:hover {
    background: rgba(217, 4, 41, 0.08);
}

/* Utility Classes */
.hidden {
    display: none;
}

hr {
    border: none;
    border-top: 1px solid #d90429;
    margin: 25px 0;
    box-shadow: 0 0 10px rgba(217, 4, 41, 0.3);
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-red {
    color: #ff2052;
}

.text-muted {
    color: #999;
}

.mt {
    margin-top: 20px;
}

.mb {
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 20px;
        border-width: 1px;
    }
    
    h1 {
        font-size: 1.8em;
    }
    
    .product-card {
        flex-direction: column;
        align-items: flex-start;
    }
    
    button, input, select {
        width: 100%;
    }
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes scan-line {
    0% { top: 0; }
    100% { top: 100%; }
}

.pulse {
    animation: pulse 2s infinite;
}

.scan-effect {
    position: relative;
    overflow: hidden;
}

.scan-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 32, 82, 0.6), transparent);
    animation: scan-line 3s infinite;
    pointer-events: none;
}

/* Code/Secret Display */
.secret-code {
    font-family: 'Fira Mono', 'Courier New', monospace;
    background: linear-gradient(135deg, rgba(217, 4, 41, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    border: 1px solid #ff2052;
    padding: 12px;
    margin: 12px 0;
    color: #86efac;
    word-break: break-all;
    border-radius: 2px;
    text-shadow: 0 0 5px rgba(34, 197, 94, 0.5);
}

/* Navigation */
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 2px solid #d90429;
    padding-bottom: 15px;
}

.nav-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-links a {
    color: #ff2052;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(217, 4, 41, 0.5);
    transition: all 0.2s;
    padding: 5px 10px;
    border: 1px solid transparent;
}

.nav-links a:hover {
    color: #fff;
    text-shadow: 0 0 15px #ff2052;
    border: 1px solid #ff2052;
    background: rgba(217, 4, 41, 0.1);
}

/* Footer */
footer {
    margin-top: 40px;
    text-align: center;
    color: #ff2052;
    font-size: 0.9em;
    border-top: 2px solid #d90429;
    padding-top: 20px;
    font-family: 'Fira Mono', 'Courier New', monospace;
}

footer p {
    text-shadow: 0 0 10px rgba(217, 4, 41, 0.5);
}

/* Status Indicators */
.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 2px;
    font-size: 0.85em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-active {
    background: rgba(34, 197, 94, 0.15);
    color: #86efac;
    border: 1px solid #22c55e;
}

.status-inactive {
    background: rgba(107, 114, 128, 0.15);
    color: #d1d5db;
    border: 1px solid #6b7280;
}
/* SCAM ALERT WARNING POPUP */
.warning-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-in;
}

.warning-popup-overlay.show {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.warning-popup-container {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 100%);
    border: 3px solid #ff2052;
    border-radius: 4px;
    max-width: 85%;
    width: 750px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 35px 45px;
    box-shadow: 0 0 40px rgba(255, 32, 82, 0.6), inset 0 0 20px rgba(255, 32, 82, 0.1);
    position: relative;
    animation: popupSlideIn 0.4s ease-out;
}

@keyframes popupSlideIn {
    from {
        transform: scale(0.8) translateY(-20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.warning-popup-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff2052, #d90429, #ff2052);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.warning-popup-header {
    color: #ff2052;
    font-size: 22px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 32, 82, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.warning-icon {
    font-size: 26px;
}

.warning-popup-content {
    color: #e8e8e8;
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 25px;
    font-family: 'Fira Mono', 'Courier New', monospace;
    display: block;
}

.warning-popup-content p {
    margin-bottom: 16px;
    color: #d1d5db;
    text-align: left;
}

.warning-popup-content strong {
    color: #ff2052;
    text-shadow: 0 0 5px rgba(255, 32, 82, 0.4);
}

.official-domains {
    background: rgba(255, 32, 82, 0.05);
    border-left: 4px solid #ff2052;
    padding: 20px;
    border-radius: 2px;
    grid-colu18px 20px;
    border-radius: 2px;
    margin: 20px 0;
}

.official-domains-title {
    color: #ff2052;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.domain-list {
    list-style: none;
}

.domain-list li {
    color: #a8d8ea;
    margin-bottom: 9px;
    padding-left: 18px;
    position: relative;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    word-break: break-word;
    text-align: left;
}

.domain-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff2052;
    font-weight: bold;
}

.warning-dangers {
    display: none
.danger-item {
    color: #ff6b9d;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-weight: 600;
    font-size: 14px;
}

.danger-item::before {
    content: '❌';
    position: absolute;
    text-align: left;
}

.danger-item::before {
    content: '❌';
    position: absolute;
    left: 0;
    font-size: 14px;
}

.warning-footer-text {
    color: #a8d8ea;
    text-align: center;
    margin-top: 0;
    font-size: 13px;
    border-top: 1px dashed #d90429;
    padding-top: 18px
    margin-top: 30px;
    justify-content: center;
}

.warning-btn {
    padding: 14px 35px;
    font-size: 14px;
    font-weight: 700;
    border: 2px solid #ff2052;
    background: transparent;
    color: #ff2052;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-family: 'Fira Mono', 'Courier New', monospace;
}

.warning-btn:hover {
    background: #ff2052;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 32, 82, 0.6);
}

.warning-btn.primary {
    background: #ff2052;
    color: #000;
}

.warning-btn.primary:hover {
    background: #d90429;
    border-color: #d90429;
    box-shadow: 0 0 30px rgba(217, 4, 41, 0.8);
}

/* QR professional black-on-white */
.qr-image {
  background: #ffffff;
  padding: 12px;
  border: 2px solid #000;
  display: inline-block;
}
.address-box {
  background:#111; color:#fff; padding:8px; border-radius:4px; font-family:monospace;
}
.copy-btn { background:#000;color:#fff;border:0;padding:6px 10px;border-radius:4px; }

<div id="qr-container"><img id="qr" class="qr-image" src="/static/qrs/placeholder.png" alt="QR"></div>
<div class="address-box" id="wallet-address">...</div>
<button class="copy-btn" id="copy-address">Copy</button>