body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  text-align: center;
  padding-top: 80px; /* Adjust this value to the height of your navbar */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #1a1a1a; /* Add a background color */
}

.containerhome {
  max-width: 800px;
  padding: 20px;
}

h1 {
  font-size: 2.5em;
  margin: 0.5em 0;
  color: #e9975b;
}

h2 {
  font-size: 2em;
  margin: 0.5em 0;
  color: #ffffff;
}

p {
  font-size: 1.2em;
  margin: 1em 0;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #e9975b;
  color: #642449;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #e9975b;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
  background-color: #232529; /* Dark background color */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000; /* Ensure it is above other content */
}

.navbar .logo {
  font-size: 1.5em;
  color: white;
  font-weight: bold;
}

.navbar .menu {
  display: flex;
  gap: 2em;
}

.navbar .menu a {
  color: white;
  text-decoration: none;
  font-size: 1em;
  transition: color 0.3s;
}

.navbar .menu a:hover {
  color: #e9975b; /* Hover color */
}

.navbar .btn-group {
  display: flex;
  gap: 1em;
}

.navbar .contact-btn, .navbar .register-btn {
  padding: 0.5em 1em;
  background-color: #e9975b; /* Button background color */
  color: #642449; /* Button text color */
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1em;
  transition: background-color 0.3s;
}

.navbar .contact-btn:hover, .navbar .register-btn:hover {
  background-color: #d6874f; /* Button hover color */
}

.navbar .menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.navbar .menu-toggle span {
  height: 3px;
  width: 25px;
  background-color: white;
  margin: 4px 0;
}

@media (max-width: 768px) {
  .navbar .menu, .navbar .btn-group {
      display: none;
      flex-direction: column;
      width: 100%;
      text-align: center;
  }

  .navbar .menu a, .navbar .contact-btn, .navbar .register-btn {
      padding: 1em;
      border-bottom: 1px solid #444;
  }

  .navbar .menu-toggle {
      display: flex;
  }

  .navbar.active .menu, .navbar.active .btn-group {
      display: flex;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1050;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #232529;
  padding: 20px;
  border-radius: 5px;
  text-align: left;
  width: 400px;
  max-width: 100%;
}

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

.modal-content input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 5px;
}

.modal-content .close {
  color: white;
  font-size: 28px;
  font-weight: bold;
}

.modal-content .close:hover,
.modal-content .close:focus {
  color: #e9975b;
  cursor: pointer;
}

.modal-content .btn {
  width: 100%;
  text-align: center;
}

/* Download Section Styles */
.download-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  background-color: #1a1a1a;
}

.download-section h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #fff;
}

.download-category {
  margin-top: 20px;
}

.download-category h2 {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: #e9975b;
}

.download-item {
  background-color: #2c2c2c;
  padding: 20px;
  margin-bottom: 40px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 700px; /* Default width for desktop */
  height: auto;
}

/* Media query for tablets */
@media (min-width: 600px) and (max-width: 1024px) {
  .download-item {
    width: 80%; /* Adjust width for tablets */
  }
}

/* Media query for mobile devices */
@media (max-width: 599px) {
  .download-item {
    width: 100%; /* Full width for mobile devices */
    padding: 15px; /* Adjust padding for smaller screens */
    margin-bottom: 20px; /* Adjust margin for smaller screens */
  }
}



.download-item h3 {
  font-size: 1.5em;
  margin-bottom: 5px;
  color: #fff;
}

.download-item p {
  margin: 0;
  color: #888;
}

.download-links {
  display: flex;
  gap: 10px;
}

.download-links .btn {
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.download-links .btn:hover {
  background-color: #888;
}

.content-player-info {
  margin: 80px auto;
  padding: 20px;
  max-width: 800px;
  background-color: #2c2c2c;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.tabs {
  display: flex;
  justify-content: center;
  background-color: #2c2c2c;
  border-radius: 8px 8px 0 0;
  padding: 10px;
}

.tabs button {
  padding: 15px 20px;
  background: none;
  border: none;
  color: #888;
  font-size: 1.1em;
  cursor: pointer;
  transition: color 0.3s;
}

.tabs button:hover,
.tabs button.active {
  color: #e9975b;
}

.tab-content {
  padding: 20px;
  background-color: #2c2c2c;
  border-radius: 0 0 8px 8px;
}

.tab-content table {
  width: 100%;
  border-collapse: collapse;
}

.tab-content table,
th,
td {
  border: 1px solid #333;
}

th,
td {
  padding: 15px;
  text-align: left;
}

th {
  background-color: #333;
  color: #e9975b;
}

td {
  background-color: #2c2c2c;
}

.btn-change-password {
  background-color: #e74c3c;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-change-password:hover {
  background-color: #c0392b;
}

.item img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}
