html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    background: #000000;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
    linear-gradient(transparent 50%, rgba(0, 255, 0, 0.03) 50%),
    linear-gradient(90deg, transparent 50%, rgba(0, 255, 0, 0.03) 50%);
    background-size: 4px 4px;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: #0a0a0a;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.3), 0 0 60px rgba(0, 255, 0, 0.1);
    overflow: hidden;
    border: 2px solid #00ff00;
    position: relative;
    z-index: 1;
}

header {
    background: linear-gradient(135deg, #001a00 0%, #003300 100%);
    color: #00ff00;
    padding: 40px;
    text-align: center;
    border-bottom: 3px solid #00ff00;
    text-shadow: 0 0 10px #00ff00;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 0 0 20px #00ff00, 0 0 30px #00ff00;
    color: #00ff00;
}

nav {
    background: #001a00;
    padding: 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    border-bottom: 2px solid #00ff00;
    gap: 10px;
}

nav a {
    color: #00ff00;
    text-decoration: none;
    padding: 15px 25px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-shadow: 0 0 5px #00ff00;
    border-radius: 12px;
}

nav a:hover {
    background: rgba(0, 51, 0, 0.6);
    border: 1px solid #00ff00;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.4), inset 0 0 10px rgba(0, 255, 0, 0.2);
    transform: translateY(-2px);
}

.content {
    padding: 40px;
    background: #000000;
}

section {
    margin-bottom: 50px;
    padding: 30px;
    background: #0a0a0a;
    border-radius: 10px;
    border-left: 5px solid #00ff00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
    border: 1px solid #00ff00;
}

section h2 {
    color: #00ff00;
    font-size: 2em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #00ff00;
    text-shadow: 0 0 10px #00ff00;
}

section p {
    line-height: 1.8;
    color: #33ff33;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.fraud-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.fraud-card {
    background: #001a00;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #00ff00;
    display: flex;
    flex-direction: column;
}

.fraud-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.6);
    z-index: 10;
    background: #002200;
}

.fraud-card h3 {
    color: #00ff00;
    margin-bottom: 15px;
    font-size: 1.5em;
    text-shadow: 0 0 10px #00ff00;
}

.warning {
    background: #1a0000;
    border-left: 5px solid #ff0000;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
    border: 1px solid #ff0000;
    color: #ff9999;
}

.warning strong {
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000;
    font-size: 1.2em;
}

.warning p {
    color: #ff9999;
    margin: 0;
}

ul {
    margin-left: 20px;
    margin-top: 15px;
}

ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #33ff33;
}

ul li strong {
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

.fraud-card p {
    color: #66ff66;
}

#scrollToTop {
position: fixed;
bottom: 30px;
right: 30px;
background: #00ff00;
color: #000;
width: 50px;
height: 50px;
border-radius: 50%;
border: 2px solid #00ff00;
cursor: pointer;
display: none;
justify-content: center;
align-items: center;
font-size: 24px;
font-weight: bold;
box-shadow: 0 0 20px rgba(0, 255, 0, 0.6);
transition: all 0.3s;
z-index: 1000;
}

#scrollToTop:hover {
background: #00cc00;
box-shadow: 0 0 30px rgba(0, 255, 0, 0.9);
transform: scale(1.1);
}

#scrollToTop.show {
display: flex;
}

footer {
    background: #001a00;
    color: #00ff00;
    text-align: center;
    padding: 20px;
    border-top: 2px solid #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8em;
    }

    nav a {
        padding: 10px 15px;
        font-size: 0.9em;
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
    }

    .content {
        padding: 20px;
    }

    section {
        padding: 20px;
    }
}
/* --- ВСТАВИТИ В САМИЙ КІНЕЦЬ style.css --- */

/* Стилі для відео (оновлені) */
.video-container {
    margin: 30px auto;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border: 2px solid #00ff00;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    width: 100%;

}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Стилі для фото (оновлені) */
.content-img {
    display: block;
    width: 100%;
    height: auto;
    margin: 20px auto;
    border-radius: 10px;
    border: 2px solid #00ff00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    object-fit: cover;
}

/* =========================================
 *  НАЛАШТУВАННЯ ДЛЯ 2K МОНІТОРІВ (QHD)
 *  ========================================= */
@media (min-width: 1921px) {
    .container {
        max-width: 2200px !important; /* !important змушує блок розширитись */
        width: 100%; /* Займати 95% екрану */
    }

    body {
        font-size: 1.2rem;
    }



/* =========================================
 *  НАЛАШТУВАННЯ ДЛЯ 4K МОНІТОРІВ (UHD)
 *  ========================================= */
@media (min-width: 3000px) {
    .container {
        max-width: 3600px !important; /* Величезний контейнер для 4K */
        width: 98%;
        border-width: 5px;
    }

    body {
        font-size: 1.8rem; /* Дуже великий текст, щоб читалось на 4K */
    }

    h1 {
        font-size: 5em;
    }

