@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, #2e1065 0%, #0f172a 100%);
    color: #f5f3ff;
    scroll-behavior: smooth;
}

.hardware-image { filter: drop-shadow(0 0 35px rgba(139, 92, 246, 0.4)); }

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

.form-input:focus {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}

.text-gray-300 { color: rgb(216, 180, 254); }
.text-gray-400 { color: rgb(196, 181, 253); }

.glass-card {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

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

.border-cyberPurple { border-color: #8b5cf6 !important; }
.bg-cyberPurple { background-color: #8b5cf6 !important; }
.text-cyberPurple { color: #8b5cf6 !important; }

.cookie-banner {
    background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}

.btn-primary {
    background: #8b5cf6;
    color: #ffffff;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

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

.btn-secondary:hover { background: rgba(139, 92, 246, 0.15); }

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.6);
}

.compliance-banner {
    background: #7c3aed;
    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;
}