@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, #111827 0%, #030712 100%);
    color: #f3f4f6;
    scroll-behavior: smooth;
}

.hardware-image { filter: drop-shadow(0 0 35px rgba(220, 38, 38, 0.4)); }

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

.form-input:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2);
    background: rgba(255, 255, 255, 0.06);
    outline: none;
}

.text-gray-300 { color: rgb(209, 213, 219); }

.glass-card {
    background: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

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

.border-cyberRed { border-color: #dc2626 !important; }
.bg-cyberRed { background-color: #dc2626 !important; }
.text-cyberRed { color: #dc2626 !important; }

.cookie-banner {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border: 1px solid rgba(220, 38, 38, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}

.btn-primary {
    background: #dc2626;
    color: #ffffff;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    background: #ef4444;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

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

.btn-secondary:hover { background: rgba(220, 38, 38, 0.1); }

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(220, 38, 38, 0.5);
}

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