* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Arial Black', Gadget, sans-serif;
}

body {
    line-height: 1.6;
    color: #eeeeee;
    background-color: #1a1a1a;
}

header {
    background-color: #000000;
    border-bottom: 4px solid #ff6600;
    padding: 30px;
    text-align: center;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 20px;
    transition: all 0.4s ease;
}

nav a:hover {
    background-color: #ff6600;
    color: #000;
    border-radius: 4px;
}

main {
    padding: 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

section {
    margin-bottom: 50px;
    background: #262626;
    padding: 30px;
    border-left: 5px solid #ff6600;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.col {
    flex: 1;
    min-width: 300px;
}

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

.main-video {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 20px auto;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: grayscale(40%);
    transition: 0.3s;
}

.gallery img:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #333;
}

th, td {
    padding: 15px;
    border: 1px solid #444;
    text-align: left;
}

th {
    background-color: #ff6600;
    color: black;
}

form {
    display: grid;
    gap: 15px;
}

input, select, textarea {
    padding: 12px;
    background: #333;
    border: 1px solid #555;
    color: white;
}

button {
    background: #ff6600;
    color: black;
    font-weight: bold;
    padding: 15px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

button:hover {
    background: #e65c00;
}

@media (max-width: 768px) {
    nav ul { flex-direction: column; align-items: center; }
    .row { flex-direction: column; }
}