body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: #f7f7f7;
    color: #333;
}
section {
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
}
#about {
    background: #ffffff;
}
#videos, #game {
    background: #e9ecef;
}
#team, #contacts {
    background: #ffffff;
}
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.photo-grid img {
    width: 100%;
    height: auto;
}
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.video-grid iframe {
    width: 100%;
    height: 200px;
    border: none;
}
.instructions {
    margin-top: 20px;
}
.download-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}
.download-btn:hover {
    background: #0056b3;
}
ul {
    list-style: none;
    padding: 0;
}

header {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.nav-buttons {
    margin-bottom: 10px;
}

.nav-buttons a {
    display: inline-block;
    margin: 0 5px;
    padding: 8px 12px;
    background: #444;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

.nav-buttons a:hover {
    background: #555;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}


footer a {
    color: #fff;
    margin: 0 5px;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
