/* --- Digital Dominance Premium Overlay --- */
:root {
    --accent-glow: rgba(253, 105, 33, 0.2);
    --glass-grad: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
}

.premium-card {
    background: var(--glass-grad);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    padding: 40px;
    transition: var(--transition);
}

.premium-card:hover {
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px var(--accent-glow);
    transform: translateY(-8px);
}

.glow-text {
    text-shadow: 0 0 20px rgba(253, 105, 33, 0.4);
}

.glass-nav {
    background: rgba(11, 13, 14, 0.8) !important;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.floating-icon {
    animation: float 5s ease-in-out infinite;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, #fd6921 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.bg-blur {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.1;
    z-index: -1;
    border-radius: 50%;
}

/* Fix for overlapping header text */
.nav-links {
    flex-wrap: nowrap;
}

.mega-menu {
    border-radius: 24px;
    overflow: hidden;
}