/*
Theme Name: FinExamp
Theme URI: https://example.com/finexamp
Author: FinExamp
Author URI: https://example.com
Description: FinExamp is a demo trading site theme — a fictional execution-desk CFD broker interface ("VectorPrime Markets") with terminal-style market access, illustrative account tiers, risk-aware copy, and demo-only forms. No real accounts are opened and no trades are executed.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: finexamp
Tags: dark, one-column, custom-logo, custom-menu
*/

/* Custom CSS ported from the source includes/head.php <style> block.
   All layout/visual styling comes from the Tailwind CDN (enqueued in functions.php). */

* { box-sizing: border-box; }
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .055;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.8) 1px, transparent 0);
  background-size: 18px 18px;
}
.scanline {
  background: linear-gradient(180deg, rgba(32,211,255,.12), transparent 45%, rgba(34,197,94,.08));
  animation: scan 6s cubic-bezier(.16,1,.3,1) infinite;
}
@keyframes scan { 0%,100% { transform: translateY(-8%); opacity: .32; } 50% { transform: translateY(8%); opacity: .75; } }
.reveal { animation: rise .7s cubic-bezier(.16,1,.3,1) both; animation-delay: calc(var(--i, 0) * 80ms); }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
[aria-invalid="true"] { border-color: rgba(251,191,36,.8); }
