/* Custom Font Import */
@font-face {
    font-family: 'ModernWarfare';
    src: url('../assets/fonts/ModernWarfare-8MM6z.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BankGothic';
    src: url('../assets/fonts/DEMO-bgt65.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables for Color Palette */
:root {
    --color-black: #000000;
    --color-dark-gray: #1a1a1a;
    --color-gray: #4a4a4a;
    --color-light-gray: #8a8a8a;
    --color-white: #ffffff;
    --color-red: #ff0000;
    --color-red-hover: #cc0000;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--color-black);
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
        url('../assets/backgrounds/textured-bg.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    line-height: 1.6;
}

/* Make zmod logo red globally */
img[src*="zmod_logo"] {
    filter: brightness(0) saturate(100%) invert(13%) sepia(100%) saturate(7500%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

/* Custom scrollbar styling - make scrollbars skinnier */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Firefox scrollbar styling */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) rgba(255, 255, 255, 0.05);
}