img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

a[data-fancybox] {
    display: block;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

a[data-fancybox]::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 5;
    background: transparent;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.hero-overlay {
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.8) 80%, rgba(10, 10, 10, 1) 100%);
}

.bg-radial-glow {
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.03) 0%, rgba(10, 10, 10, 1) 70%);
}

.bg-mesh {
    background-color: #0A0A0A;
    background-image: 
        radial-gradient(at 0% 0%, rgba(212, 175, 55, 0.02) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(212, 175, 55, 0.02) 0px, transparent 50%);
}

.bg-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.text-gradient-gold {
    background: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 50%, #AA8C2C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.ota-notification {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #e5e7eb;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
    z-index: 40;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 320px;
    transform: translateX(-150%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ota-notification.show {
    transform: translateX(0);
}

.ota-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
}

.ota-content {
    font-size: 12px;
    line-height: 1.4;
}

.ota-content b {
    color: #D4AF37;
    font-weight: 600;
}

@media (max-width: 768px) {
    .ota-notification {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
    }
}