@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@400;700&family=Poppins:wght@300;400;600;900&display=swap');

:root {
    --accent: #3b82f6;
    --text-mor: #93c5fd;
    --bg: #050505;     
}

body {
    background-color: var(--bg);
    background-attachment: fixed;
    color: #e5e7eb;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding-top: 150px;
    overflow-x: hidden;
}

h1, h2, h3, h4, .font-black {
    font-family: 'Syncopate', sans-serif;
    text-transform: uppercase;
    color: #fff;
    transition: color 0.3s ease;
}

p, span, li {
    color: var(--text-mor);
    transition: color 0.3s ease;
}

.glass {
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 8px 32px 0 rgba(139, 92, 246, 0.1);
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--accent);
}

.nav-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.1rem;
    color: var(--text-mor);
    background: rgba(139, 92, 246, 0.05);
    transition: all 0.4s ease;
}

.nav-link:hover, .nav-link.active {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

.valthera-btn {
    padding: 16px 40px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(139, 92, 246, 0.1));
    border: 1px solid var(--accent);
    border-radius: 20px;
    color: #fff;
    font-family: 'Syncopate', sans-serif;
    font-weight: 900;
    transition: all 0.4s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.valthera-btn:hover {
    background: var(--accent);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.8);
    transform: translateY(-5px);
}

.card-hover {
    transition: all 0.4s ease;
}

.card-hover:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 5px; }

.animate-pulse { animation: pulse 2s infinite; }
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}