body {
    margin: 0;
    background-color: #050505;
    color: #ffffff;
    font-family: 'Helvetica Neue', sans-serif;
}

header {
    padding: 20px 5%;
    border-bottom: 1px solid #222;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1 {
     font-weight: 200; 
     letter-spacing: 10px; 
     margin-bottom: 50px; 
}

h2 { 
    color: #f40; 
    font-weight: 300; 
    letter-spacing: 2px; 
}

.nav-link, .cta-button {
    text-decoration: none;
    color: #ff4500;
    font-weight: bold;
}
.container {
    text-align: center;
    max-width: 1000px; 
    margin: 0 auto; 
    padding: 60px 20px;
}

.feature-box {
    border-top: 1px solid #333; 
    padding-top: 40px;
    margin-top: 40px;
}
.video-main { 
    width: 100%; 
    border-radius: 8px; 
    box-shadow: 0 0 50px rgba(255, 68, 0, 0.2); 
}

.tech-description { 
    text-align: left; 
    line-height: 1.8; 
    color: #ccc;
    margin-top: 30px; 
}
.tech-description b { color: #fff; }


.gallery-container {
    padding: 50px 5%;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-item {
    background: #111;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #222;
}

video {
    width: 100%;
    display: block;
}

.label {
    padding: 20px;
}

.label h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    color: #ff4500;
}

.label p {
    margin: 0;
    font-size: 0.9rem;
    color: #888;
}