@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@500;700;900&display=swap');

/* === PODSTAWY === */
body {
    font-family: 'Inter', sans-serif;
    background-color: #0f0e1a;
    color: white;
    overflow-x: hidden;
}

/* Nagłówki */
h1, h2, h3, h4, .font-heading {
    font-family: 'Outfit', sans-serif;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0f0e1a; }
::-webkit-scrollbar-thumb { background: #6d28d9; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #8b5cf6; }

/* === TŁO === */
.bg-hero-pattern {
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.15), transparent 70%),
        linear-gradient(to bottom, rgba(15, 14, 26, 0.6), #0f0e1a),
        url('https://cdna.artstation.com/p/assets/images/images/028/139/534/large/3-bit-sadizef-sadyz-zef-gfx.jpg?1593598618'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* === GLASSPANEL === */
.glass-panel {
    background: rgba(20, 18, 35, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Kafelki w tabeli */
.feature-box {
    background-color: rgba(13, 12, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all 0.3s ease;
}
.feature-box:hover {
    background-color: rgba(255, 255, 255, 0.03);
    border-color: rgba(139, 92, 246, 0.3);
}

.ambient-glow {
    position: absolute; width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(139,92,246,0.4) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%; filter: blur(60px); z-index: -1; pointer-events: none;
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(2); opacity: 0; }
}
.ping-ring::before {
    content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%;
    background-color: inherit; border-radius: 50%; z-index: -1;
    animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}