* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Montserrat", sans-serif;
}

body {
background-color: #0e0e0e;
color: #fff;
}

.navbar {
position: fixed;
top: 0;
width: 100%;
background: rgba(0,0,0,0.6);
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 50px;
z-index: 10;
}

.navbar .logo img {
height: 40px;
}

.navbar ul {
list-style: none;
display: flex;
gap: 30px;
}

.navbar a {
text-decoration: none;
color: #fff;
font-weight: 600;
transition: 0.3s;
}

.navbar a:hover {
color: #f14e23;
}


.hero {
height: 100vh;
background: url('../icons/capsule_616x353.jpg') no-repeat center center/cover;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
position: relative;
}

.hero .overlay {
position: absolute;
top: 0; left: 0;
width: 100%; height: 100%;
background: rgba(0,0,0,0.5);
}

.hero-content {
position: relative;
z-index: 2;
max-width: 800px;
}

.hero h1 {
font-size: 42px;
line-height: 1.3;
font-weight: 800;
margin-bottom: 20px;
}

.quote {
font-style: italic;
color: #ccc;
margin-bottom: 30px;
}

.play-btn {
display: inline-block;
background: #f14e23;
color: #fff;
padding: 15px 40px;
font-size: 18px;
font-weight: 700;
border-radius: 5px;
text-decoration: none;
transition: 0.3s;
}

.play-btn:hover {
background: #ff6935;
}

.subtext {
margin-top: 10px;
color: #aaa;
}


.news {
padding: 100px 80px;
background: #111;
}

.news h2 {
font-size: 28px;
margin-bottom: 40px;
text-align: center;
}

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

.news-item {
background: #1a1a1a;
border-radius: 10px;
overflow: hidden;
transition: transform 0.3s ease;
}

.news-item:hover {
transform: translateY(-5px);
}

.news-item img {
width: 100%;
height: 180px;
object-fit: cover;
}

.news-item h3 {
font-size: 18px;
padding: 15px;
}

.date {
font-size: 14px;
color: #888;
padding: 0 15px 15px;
}
