     
   :root {
    --primary: #E43f5a;
    --primary-dark: #1b1b2f;
    --secondary: #E43f5a;
    --accent: #E43f5a;
    --dark: #0f172a;
    --darker: #0a0f1f;
    --light: #f8fafc;
    --gray: #94a3b8;
    --success: #10b981;
    --card-bg: rgba(15, 23, 42, 0.7);
    --card-border: rgba(255, 255, 255, 0.08);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    padding: 1.5rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(15, 23, 42, 0.8);
    border-bottom: 1px solid var(--card-border);
    transition: all 0.4s ease;
}

header.scrolled {
    padding: 1rem 5%;
    background: rgba(10, 15, 31, 0.95);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    font-size: 18px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.logo-text span {
    font-size: 1.5rem;
    font-weight: 800;
    background:var(--accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover:after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(111, 121, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(111, 121, 255, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--light);
    border: 1px solid var(--gray);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
}

.discord-icon {
    width: 36px;
    height: 36px;
    margin-top: 5px;
    border-radius: 50%;
    transition: 0.3s ease;;
    filter: brightness(0.95);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    filter: hue-rotate(120deg) brightness(0.95);
}
.logo-image-nav {
    width: 8vh;
    height:8vh;
    margin-top: 5px;
    transition: 0.3s ease;;
}