@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');
@import url('layout/header.css');
@import url('layout/footer.css');
@import url('mobile.css');
@import url('preview-studio.css');
@import url('cards.css');
@import url('seo.css');
@import url('blog.css');



:root {
    --bg-color: #f8f8f8;
    --border-color: #eee;
    --panel-bg: #ffffff;
    --text-main: #333;
    --text-mute: #888;
}

body {
    margin: 0;
    padding-top: 70px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 70px;
    display: block;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}



.fullscreen-wrapper,
.radar-fullscreen-wrapper,
.hacker-fullscreen-wrapper,
.ransomware-fullscreen-wrapper,
.databreach-fullscreen-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
}

#tool-container>div {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}


#tool-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #050505;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease-out, visibility 0.15s ease-out;
}

#tool-loader.active {
    opacity: 1;
    visibility: visible;
}

.loader-terminal {
    color: #00ff00;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.loader-terminal::after {
    content: '';
    animation: blinkDots 0.6s infinite;
}

@keyframes blinkDots {
    0% {
        content: '';
    }

    33% {
        content: '.';
    }

    66% {
        content: '..';
    }

    100% {
        content: '...';
    }
}