* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: url('../images/background.png') no-repeat fixed;
  background-size: cover;
  color: white;
  line-height: 1.6;
}

header {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 60px;
}

nav ul {
  display: flex;
  list-style: none;
  height: 60px;
}

nav ul li {
  height: 100%;
  min-width: 100px;
  margin: auto;
  text-align: center;
  padding-top: 15px;
}

nav ul li:hover {
  background-color: white;
}

nav ul li:hover a {
  color: black;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  color: black;
}

.hero {
  text-align: center;
  padding: 100px 20px;
  background-image: url('../images/wapper-bg.jpg');
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero .btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 25px;
  background-color: #c79a3f;
  color: black;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.hero .btn:hover{
  background-color: #cab791;
}

.trailer, .features, .news, .rank {
  padding: 10px 20px;
  background-color: rgba(0, 0, 0, 0.7);
  margin: 20px auto;
  max-width: 900px;
  border-radius: 10px;
}

.features ul {
  text-align: left;
  padding-left: 40px;
}

.news-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
}

.news-item:hover {
  /* background-color: rgba(36, 26, 26, 0.1); */
  background-color: white;
  color: black;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.9);
  font-size: 14px;
}

.wapper {
  width: 90%;
  margin: auto;
  display: flex;
}

.left, .right {
  width: 50%;
}

.left {
  padding-right: 20px;
}

.tab {
  overflow: hidden;
  border-bottom: 1px solid #ccc;
  background-color: #f1f1f1;
}

.tab button {
  background-color: inherit;
  border: none;
  outline: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
}

.tab button:hover {
  background-color: #ddd;
}

.tab button.active {
  background-color: #ccc;
}

.tabcontent {
  display: none;
  padding: 20px;
  border: 1px solid #ccc;
  border-top: none;
  min-height: 500px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 8px 12px;
  /* border: 1px solid #999; */
  text-align: left;
}

.section-title {
  padding-bottom: 10px;
}

.tablinks {
  width: 32.8%;
}

.news-links {
    text-decoration:none;
    color: white;
}