.navbar {
    background: rgba(0, 0, 0, 0.95);
    padding: 1.2rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(118, 0, 255, 0.3);
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar.scrolled {
    padding: 0.8rem 2rem;
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 5px 20px rgba(118, 0, 255, 0.15);
}

.nav-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-brand:hover {
    background: rgba(118, 0, 255, 0.1);
    transform: translateY(-2px);
}

.nav-brand i {
    color: #7600ff;
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(118, 0, 255, 0.5);
    transition: all 0.3s ease;
}

.nav-brand:hover i {
    transform: rotate(15deg);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    background: rgba(118, 0, 255, 0.05);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(118, 0, 255, 0.1);
}

.nav-links a {
    color: #888;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #7600ff, #5500bb);
    border-radius: 20px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-links a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(118, 0, 255, 0.3);
    transform: translateY(-2px);
}

.nav-links a:hover::before {
    opacity: 0.2;
}

.nav-links a.active {
    color: #7600ff;
    background: rgba(118, 0, 255, 0.1);
}

.disclaimer {
    background: rgba(0, 0, 0, 0.95);
    padding: 1.5rem;
    text-align: center;
    color: #888;
    font-size: 1rem;
    border-bottom: 2px solid rgba(118, 0, 255, 0.3);
    margin-top: 80px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.5s ease;
    opacity: 1;
    transform: translateY(0);
}

.disclaimer.hidden {
    opacity: 0;
    transform: translateY(-100%);
    height: 0;
    padding: 0;
    margin: 0;
    border: none;
}

.disclaimer-icon {
    color: #7600ff;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.disclaimer-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.disclaimer-text {
    color: #fff;
    font-weight: 500;
}

.disclaimer a {
    color: #7600ff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(118, 0, 255, 0.3);
    border-radius: 20px;
    background: rgba(118, 0, 255, 0.1);
}

.disclaimer a:hover {
    color: #fff;
    background: rgba(118, 0, 255, 0.2);
    text-shadow: 0 0 10px rgba(118, 0, 255, 0.3);
    transform: translateY(-2px);
}

.disclaimer-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.disclaimer-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%) rotate(90deg);
}

footer {
    background: rgba(0, 0, 0, 0.95);
    padding: 3rem 2rem;
    margin-top: 4rem;
    border-top: 2px solid rgba(118, 0, 255, 0.3);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(118, 0, 255, 0.3),
            transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
}

.footer-content::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(118, 0, 255, 0.3),
            transparent);
}

.footer-links {
    display: flex;
    gap: 2.5rem;
    background: rgba(118, 0, 255, 0.05);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(118, 0, 255, 0.1);
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    border-radius: 20px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #7600ff, #5500bb);
    border-radius: 20px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.footer-links a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(118, 0, 255, 0.3);
    transform: translateY(-2px);
}

.footer-links a:hover::before {
    opacity: 0.2;
}

.footer-copyright {
    color: #888;
    font-size: 1rem;
    text-align: right;
    padding: 1rem 2rem;
    background: rgba(118, 0, 255, 0.05);
    border-radius: 50px;
    border: 1px solid rgba(118, 0, 255, 0.1);
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-brand {
        font-size: 1.5rem;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-copyright {
        width: 100%;
        text-align: center;
    }
}

.feature-card,
.stat-card {
    position: relative;
    overflow: hidden;
}

.feature-card::before,
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(118, 0, 255, 0.2),
            transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
}

.feature-card:hover::before,
.stat-card:hover::before {
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.feature-card:hover,
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(118, 0, 255, 0.2);
}

.feature-icon,
.stat-icon {
    background: linear-gradient(45deg, #7600ff, #5500bb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: 0.3s;
}

.feature-card:hover .feature-icon,
.stat-card:hover .stat-icon {
    transform: scale(1.1);
}