/* Reset some browser defaults */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

#hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: #222;
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.btn-hero {
    display: inline-block;
    background-color: #ff6600;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-hero:hover {
    background-color: #ff4500;
}

/* Countdown Timer */
#timer {
    text-align: center;
    padding: 50px;
    background-color: #f4f4f4;
    color: #333;
    font-size: 1.5rem;
}

/* About Section */
#about .container {
    text-align: center;
    padding: 50px;
    background-color: #fff;
}

#about p {
    font-size: 1.1rem;
    color: #333;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #222;
    color: #fff;
}
/* Navigation Bar */
nav {
    background-color: #ff6600;
    padding: 15px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

nav ul li a:hover {
    text-decoration: underline;
}
/* Reset some browser defaults */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

/* Navigation Bar */
nav {
    background-color: #ff6600;
    padding: 15px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Timeline Section */
#timeline {
    padding: 50px;
    background-color: #f4f4f4;
    text-align: center;
}

#timeline .container {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.timeline-item h3 {
    color: #ff6600;
    margin-bottom: 10px;
}

.timeline-item p {
    font-size: 1rem;
    color: #333;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #222;
    color: #fff;
}

/* Join Channel Section */
#join-channel {
    background-color: #f9f9f9;
    padding: 50px 0;
}

#join-channel .btn-hero {
    display: inline-block;
    background-color: #ff6600;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    margin-top: 20px;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#join-channel .btn-hero:hover {
    background-color: #ff4500;
}