@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600&display=swap');

/* Background */
body {
    background: #000a14
        url("../images/backgrounds/theme/tron/tron-grid.jpg")
        center/cover fixed no-repeat;
    font-family: "Orbitron", sans-serif;
    color: #7fe8ff;
}

/* Glow grid overlay */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center,
        rgba(0, 180, 255, 0.12),
        transparent 70%
    );
    pointer-events: none;
    z-index: 1;
}

/* Modal */
.sale-modal {
    background: rgba(0, 20, 40, 0.6);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(12px);

    border: 1px solid #00d5ff88;
    box-shadow: 0 0 30px #00d5ff55;

    position: relative;
    z-index: 2;
}
.sale-modal .domain-name {
    font-size: 2.7rem;
    color: #00d9ff;
    text-shadow: 0 0 10px #45f3ff, 0 0 20px #00d9ff;
}


/* Headline */
.sale-modal h1 {
    color: #00d5ff;
    text-shadow: 0 0 14px #00d5ffcc;
}

/* Paragraph */
.sale-modal p {
    color: #a8f6ff;
    opacity: 0.88;
}

/* Price */
.sale-price {
    color: #00d5ff;
    text-shadow: 0 0 15px #00d5ffaa;
}

/* Button */
a.contact-btn {
    background: #00d5ff;
    color: #002733;
    padding: 0.8rem 1.4rem;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.15s;
}
a.contact-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 0 25px #00d5ffaa;
}

/* QR */
#qr, img[alt="QR code"] {
    filter: drop-shadow(0 0 10px #00d5ffaa);
}
