
/* Custom styles for Exodus Wallet Support */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom animation for hover effects */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

/* Custom focus styles */
.focus-visible {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px rgba(0, 105, 255, 0.5);
}

/* Glassmorphism effect */
.backdrop-blur-sm {
    backdrop-filter: blur(8px);
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #0069ff 0%, #00d395 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Video Modal Styles */
#videoModal {
    backdrop-filter: blur(10px);
}

#videoModal video {
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Ensure video covers properly */
video {
    object-fit: cover;
}

/* Hero section specific styles */
.min-h-screen {
    min-height: 100vh;
}

/* Better mobile responsiveness */
@media (max-width: 768px) {
    .hero-video {
        height: 100vh;
    }
    
    .hero-content {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

/* Smooth transitions for modal */
#videoModal {
    transition: opacity 0.3s ease;
}

/* Prevent body scroll when modal is open */
body.no-scroll {
    overflow: hidden;
}
