:root {
    --primary-color: #a672c6;
    --secondary-color: #1a1a1a;
    --accent-color: #a672c6;
    --bg-color: #0f0f0f;
    --text-color: #ffffff;
    --card-bg: #1a1a1a;
    --glow-color: rgba(255, 0, 0, 0.3);
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

header {
    background-color: #0f0f0f;
    padding: 0 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    box-shadow: 0 2px 20px rgba(193, 231, 3, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--accent-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    right: 0;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
    right: auto;
    left: 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.discord-btn {
    background: #a672c6; 
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.discord-btn i {
    color: white;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.discord-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(88, 101, 242, 0.3);
}

.discord-btn:hover i {
    transform: scale(1.1);
}


.discord-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.discord-btn:active::after {
    transform: scale(2);
    opacity: 0;
}

main {
    padding-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
}

footer {
    background: var(--secondary-color);
    color: var(--text-color);
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a672c6;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    header {
        padding: 0 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
}
.social-links {
    margin-top: 15px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-links a {
    color: #ffffff;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #a672c6; 
}

.discord-zero {
    background: linear-gradient(135deg, #a672c6 0%, #d4bc2a 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Tajawal', sans-serif;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 12px rgba(239, 216, 48, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    aspect-ratio: 1;
}

.discord-zero svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    color: white;
}


.discord-zero:hover {
    transform: translateY(-3px) scale(1.05);
    opacity: 0.9;
    box-shadow: 0 8px 15px rgba(88, 101, 242, 0.4);
}



.discord-zero:active {
    transform: scale(0.95) rotate(10deg);
}





