body {
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    margin: 0;
    line-height: 1.6;

}

a {
    color: #80cbc4;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
}

/* Header */
header {
    background-color: #1e1e1e;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li:first-child {
    margin-left: 0;
}

#logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    transition: color 0.3s ease;
}

#logo:hover {
    color: #80cbc4;
}

.line {
    color: #80cbc4;
}

.container {
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 15px;
}

/* Hero Section */
#hero {
    background-color: #1e1e1e;
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid #333;
}

#hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

#hero p {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: #80cbc4;
    color: #222;
    padding: 1rem 2rem;
    border-radius: 7px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: 500;
    display: inline-block;
}

.cta-button:hover {
    background-color: #fff;
    color: #222;
}

/* Featured Videos Section */
#featured-videos {
    padding: 3rem 0;
}

#featured-videos h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-item {
    background-color: #1e1e1e;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.video-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 7px;
}

.video-item h4 {
    margin: 1rem 0 0.5rem;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Latest News Section */
#latest-news {
    padding: 3rem 0;
    background-color: #1e1e1e;
    border-top: 1px solid #333;
}

#latest-news h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.news-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.news-item {
    background-color: #272727;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.news-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 7px;
}

.news-item h4 {
    margin: 1rem 0 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.view-all-button {
    display: block;
    background-color: #80cbc4;
    color: #222;
    padding: 0.8rem 1.5rem;
    border-radius: 7px;
    margin: 2rem auto 0;
    text-align: center;
    width: fit-content;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.view-all-button:hover {
    background-color: #fff;
    color: #222;
}

/* Footer */
footer {
    background-color: #1e1e1e;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #333;
    color: #999;
}
