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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #000000 100%);
    color: #f8fafc;
    scroll-behavior: smooth;
}

.hardware-image { filter: drop-shadow(0 0 40px rgba(245, 158, 11, 0.4)); }

.form-input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f8fafc;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}

.text-gray-300 { color: rgb(203, 213, 225); }

.glass-card {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.border-cyberAmber { border-color: #f59e0b !important; }
.bg-cyberAmber { background-color: #f59e0b !important; }
.text-cyberAmber { color: #f59e0b !important; }

.cookie-banner {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);
}

.btn-primary {
    background: #f59e0b;
    color: #000000;
    font-weight: 800;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    background: #fbbf24;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #f59e0b;
    border: 2px solid #f59e0b;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-secondary:hover { background: rgba(245, 158, 11, 0.1); }

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.6);
}

.compliance-banner {
    background: #d97706;
    color: #ffffff;
    text-align: center;
    padding: 14px 0;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
    z-index: 1000;
}