@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&family=Roboto+Mono&display=swap');

/* Base styles */
html {
    scroll-behavior: smooth;
}

body {
    transition: background-color 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--leather-black);
}

::-webkit-scrollbar-thumb {
    background: var(--leather-brown);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--leather-brass);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

/* Safe exit button styling */
.safe-exit {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: transparent;
    border: none;
    color: var(--leather-slate);
    font-size: 0.8rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.safe-exit:hover {
    opacity: 1;
    color: var(--leather-warning);
}

/* Leather texture overlay */
.leather-texture {
    position: relative;
}

.leather-texture::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="%235c4033" stroke-width="0.5" opacity="0.05" stroke-dasharray="2,2"/></svg>');
    pointer-events: none;
    opacity: 0.1;
}