/* Bivex1 Global Core CSS - Managing Director: HBN Ameenudeen */
:root {
    --primary: #00deff;
    --accent: #ffd700;
    --danger: #ff4d4d;
    --bg: #050505;
    --card: #111;
    --border: #222;
    --text: #ffffff;
    --text-dim: #888;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    margin: 0;
    line-height: 1.6;
}

/* Layout Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Reusable Buttons */
.btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.btn-primary { background: var(--primary); color: #000; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,222,255,0.3); }

.btn-outline { border: 1px solid var(--border); color: #fff; }
.btn-outline:hover { background: var(--border); }

/* Inputs */
input {
    width: 100%;
    padding: 12px;
    background: #000;
    border: 1px solid var(--border);
    color: #fff;
    border-radius: 6px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

input:focus { border-color: var(--primary); outline: none; }

/* Bivex1 Main Action Button */
.btn-main {
    background: #00deff; /* Neon Cyan */
    color: #000;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 222, 255, 0.2);
}

.btn-main:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 222, 255, 0.4);
}

.btn-main:active {
    transform: translateY(1px);
}

/* Add this to ensure your labels and inputs are spaced nicely */
label {
    display: block;
    margin-bottom: 8px;
    margin-top: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Bivex1 Terminal CSS */
:root {
    --primary: #f0b90b;
    --success: #0ecb81;
    --danger: #f6465d;
    --border: #1a1a1a;
}

.terminal-main {
    background: #0a0a0a;
    border-radius: 15px;
    border: 1px solid var(--border);
    padding: 35px;
    margin-top: 20px;
}

.escrow-box {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
    border-top: 3px solid var(--primary);
}

.calc-input {
    width: 100%;
    background: #050505;
    border: 1px solid #222;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    font-family: 'JetBrains Mono', monospace;
    margin-top: 8px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: 0.3s;
}

.calc-input:focus {
    outline: none;
    border-color: var(--primary);
    background: #000;
}

.calc-input::placeholder {
    color: #333;
}

/* Radio Button Styling */
input[type="radio"] {
    accent-color: var(--primary);
    margin-right: 5px;
    vertical-align: middle;
}