/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 10px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #ea580c;
}

/* Firefox Support */
* {
    scrollbar-width: thin;
    scrollbar-color: #222 #000;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    cursor: default;
}

@media (hover: hover) {
    body {
        cursor: none;
    }

    .custom-cursor,
    .cursor-dot {
        display: block;
    }
}

@media (hover: none) {

    .custom-cursor,
    .cursor-dot {
        display: none;
    }
}

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

.text-outline {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    color: transparent;
    transition: all 0.5s ease;
}

.text-outline:hover {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 1);
    color: white;
}

.custom-cursor {
    width: 30px;
    height: 30px;
    border: 1px solid #ea580c;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-difference: transition: transform 0.1s ease-out;
}

.cursor-dot {
    width: 4px;
    height: 4px;
    background: #ea580c;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
}

.story-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 10;
    padding: 80px 0;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-height: 700px) {
    .story-section {
        height: 100vh;
        position: sticky;
        top: 0;
        padding: 0;
    }
}

.intro-overlay {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.7s ease;
}

.group:hover video {
    filter: grayscale(0%);
}

.glass-nav {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
}

section,
footer {
    position: relative;
    z-index: 2;
}

.social-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
    transform: translateY(-5px);
    color: #ea580c;
}

.gallery-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.03);
}

.gallery-btn:hover {
    background: #ea580c;
    border-color: #ea580c;
    color: white;
    padding-right: 2rem;
}