body {
    -webkit-font-smoothing: antialiased;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input,
textarea,
select {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

* {
    -webkit-tap-highlight-color: transparent;
}

.nav-transition {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-scrolled {
    background: rgba(26, 11, 5, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(244, 185, 66, 0.1);
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.nav-transparent {
    background: transparent;
    border-bottom: 1px solid transparent;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.link-underline {
    position: relative;
}

.link-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 50%;
    background-color: #f4b942;
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
}

.link-underline:hover::after {
    width: 100%;
}

.footer-gradient-top {
    background: linear-gradient(90deg, transparent 0%, #f4b942 50%, transparent 100%);
    height: 1px;
    width: 100%;
    opacity: 0.3;
}

.input-rich {
    background: rgba(45, 22, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.input-rich:focus {
    background: rgba(45, 22, 10, 0.9);
    border-color: #e86c18;
    box-shadow: 0 0 15px rgba(232, 108, 24, 0.15);
}

.pole-card:hover .pole-img {
    transform: scale(1.1);
}

.pole-card:hover .pole-overlay {
    opacity: 0.4;
}

.text-gradient {
    background: linear-gradient(135deg, #f4b942 0%, #e86c18 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-gradient {
    background: linear-gradient(135deg, #e86c18 0%, #f4b942 100%);
    transition: transform 0.2s;
    will-change: transform;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: inline-block;
    animation: marquee 40s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.mobile-curtain {
    clip-path: circle(0% at 100% 0);
    transition: clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-curtain.open {
    clip-path: circle(150% at 100% 0);
}