/*
Theme Name: Mono Slot
Theme URI: https://example.com/mono-slot
Author: Serg_Kont
Author URI: https://example.com
Description: Premium, single-slot focused WordPress theme with responsive design, Polylang support, and extensive customization options.
Version: 1.0.0
Text Domain: mono_slot
*/

/* =================================================================*********
 *  Variables (Defaults - overridden by Customizer)
 * =================================================================********* */
:root {
    --ms-bg-color: #0d0d0d;
    --ms-text-color: #ffffff;
    --ms-primary-color: #d4af37;
    /* Gold */
    --ms-accent-color: #ff00ff;
    /* Neon Pink/Purple optional */
    --ms-header-bg: rgba(13, 13, 13, 0.95);

    --ms-font-primary: 'Inter', sans-serif;
    --ms-font-heading: 'Outfit', sans-serif;

    --ms-container-width: 1400px;
    --ms-header-height: 80px;
}

/* Base Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--ms-bg-color);
    color: var(--ms-text-color);
    font-family: var(--ms-font-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--ms-font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Screen Reader Text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}