/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0d0d0d; 
}
::-webkit-scrollbar-thumb {
    background: #2c2c2c; 
}
::-webkit-scrollbar-thumb:hover {
    background: #e62b1e; 
}

/* Selection */
::selection {
    background-color: #e62b1e;
    color: white;
}

/* Custom Cursor */
@media (hover: hover) {
    body {
        cursor: none;
    }
    a, button, select, input, textarea, [role="button"], .gsap-card, .gsap-gallery > div {
        cursor: none;
    }

    .custom-cursor-dot {
        width: 8px;
        height: 8px;
        background-color: #e62b1e;
        position: fixed;
        top: 0;
        left: 0;
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        will-change: transform;
        transition: width 0.2s, height 0.2s, background-color 0.2s;
    }

    .custom-cursor-ring {
        width: 40px;
        height: 40px;
        border: 2px solid rgba(230, 43, 30, 0.4);
        position: fixed;
        top: 0;
        left: 0;
        border-radius: 50%;
        pointer-events: none;
        z-index: 9998;
        will-change: transform;
        transition: width 0.3s, height 0.3s, border-color 0.3s, background-color 0.3s;
    }

    /* Hover State */
    .custom-cursor-hover .custom-cursor-dot {
        width: 4px;
        height: 4px;
        background-color: #ffffff;
    }

    .custom-cursor-hover .custom-cursor-ring {
        width: 60px;
        height: 60px;
        border-color: rgba(230, 43, 30, 0.8);
        background-color: rgba(230, 43, 30, 0.15);
    }
}

/* Loader Styles */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0d0d0d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.loader-logo {
    width: 120px;
    height: auto;
    animation: loader-pulse 2s ease-in-out infinite;
}

.loader-bar-container {
    width: 200px;
    height: 2px;
    background-color: #2c2c2c;
    margin-top: 32px;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.loader-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: #e62b1e;
    transition: width 0.4s cubic-bezier(0.1, 0.8, 0.2, 1);
}

.loader-text {
    font-family: 'Anton', sans-serif;
    color: #a3a3a3;
    font-size: 0.875rem;
    margin-top: 12px;
    letter-spacing: 0.1em;
}

@keyframes loader-pulse {
    0%, 100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

/* Hide Google Translate Banner and Widget */
iframe.goog-te-banner-frame,
.goog-te-banner-frame,
.goog-te-banner,
#goog-gt-tt,
.goog-te-balloon-frame,
.skiptranslate > iframe,
[class*="goog-te-banner-frame"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
}
body {
    top: 0px !important;
    position: static !important;
}
#google_translate_element {
    display: none !important;
}
.goog-tooltip {
    display: none !important;
}
.goog-tooltip:hover {
    display: none !important;
}
.goog-text-highlight {
    background-color: transparent !important;
    border: none !important; 
    box-shadow: none !important;
}
