/* Загальні стилі */
body {
    background: #1c1f1b url("../images/camo.png"); /* додай свою камуфляжну картинку */
    background-size: cover;
    background-attachment: fixed;
    color: #e0e0e0;
    font-family: "Verdana", sans-serif;
    margin: 0;
}

/* Навігація */
.nav {
    background: #0f1a0e;
    border-bottom: 3px solid #4b5f3a;
    padding: 15px 0;
    box-shadow: 0 0 10px #000;
}

.nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav a {
    color: #c9d3c0;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s;
}

.nav a:hover {
    color: #8be472;
}

/* Заголовки */
h1, h2 {
    text-align: center;
    color: #d2e3be;
    text-shadow: 0 0 5px #000;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 26px;
    margin-top: -10px;
}

/* Контейнер */
.card {
    width: 70%;
    margin: 40px auto;
    background: rgba(33, 40, 29, 0.9);
    border: 3px solid #4f6a3d;
    padding: 25px;
    border-radius: 10px;
    backdrop-filter: blur(3px);
    box-shadow: 0 0 25px #000;
}

/* Текст */
.card p {
    font-size: 18px;
    line-height: 1.5;
}

/* Зображення танків */
.tank {
    max-width: 40%;
    border: 4px solid #4b5f3a;
    border-radius: 10px;
    box-shadow: 0 0 10px #000;
}

.left {
    float: left;
    margin-right: 20px;
    margin-bottom: 15px;
}

.right {
    float: right;
    margin-left: 20px;
    margin-bottom: 15px;
}
.video-gallery {
    width: 90%;
    margin: 30px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.video-item {
    width: 45%;
    border: 4px solid #4b5f3a;
    border-radius: 10px;
    box-shadow: 0 0 10px #000;
    transition: transform 0.5s, box-shadow 0.5s;
}

.video-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #8be472;
}
form[name="form1"] {
    background: rgba(33, 40, 29, 0.9);
    padding: 20px;
    margin: 30px auto;
    max-width: 500px;
    border-radius: 10px;
    border: 2px solid #4f6a3d;
    box-shadow: 0 0 25px #000;
}

form[name="form1"] input[type="text"] {
    width: 95%;
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #4b5f3a;
    background: #1c1f1b;
    color: #e0e0e0;
}

form[name="form1"] input[type="button"], 
form[name="form1"] input[type="reset"] {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    background-color: #2980b9;
    color: white;
    cursor: pointer;
    margin-right: 10px;
}

form[name="form1"] input[type="button"]:hover,
form[name="form1"] input[type="reset"]:hover {
    background-color: #8be472;
    color: #000;
}
form[action="#"] {
    background: rgba(28, 31, 27, 0.8);
    padding: 20px;
    margin: 30px auto;
    width: 90%;
    max-width: 400px;
    border-radius: 8px;
    border: 2px solid #4f6a3d;
    box-shadow: 0 0 15px #000;
    backdrop-filter: blur(2px);
    color: #e0e0e0;
}

form[action="#"] input[type="text"],
form[action="#"] input[type="email"],
form[action="#"] textarea {
    width: 95%;
    padding: 6px;
    margin-bottom: 8px;
    border-radius: 5px;
    border: 1px solid #4b5f3a;
    background: rgba(28, 31, 27, 0.8);
    color: #e0e0e0;
}

form[action="#"] input[type="submit"],
form[action="#"] input[type="reset"] {
    padding: 6px 12px;
    border: none;
    border-radius: 5px;
    background-color: #2980b9;
    color: white;
    cursor: pointer;
    margin-right: 8px;
}

form[action="#"] input[type]{
 }
