
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  color: #ddd;
  user-select: none;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}


#videoBG {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}


.app {
  flex-grow: 1;
  display: flex;
  overflow: hidden;
}


nav.sidebar {
  width: 72px;
  background-color: #0f0e0e;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0;
  gap: 24px;
}
nav.sidebar .icon {
  color: #b88640;
  font-size: 22px;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}
nav.sidebar .icon:hover {
  color: #ddb86a;
  transform: scale(1.25);
}
nav.sidebar .icon.active {
  color: #ddb86a;
}


main.content {
  flex-grow: 1;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: rgba(15,14,14,0.7);
  overflow-y: auto;
}


header.top-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
}
header.top-bar h1.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #eee;
  margin: 0;
  user-select: text;
}
header.top-bar h1.logo .dot {
  color: #b88640;
}


.date-time {
  display: flex;
  flex-direction: column;
  font-family: monospace;
  font-weight: 500;
  font-size: 22px;
  color: #ddd;
  user-select: text;
  letter-spacing: 2px;
}
.date-box {
  background-color: #1e160b;
  border: 1.5px solid #b88640;
  padding: 6px 16px;
  border-radius: 6px;
  margin-bottom: 12px;
  width: fit-content;
  font-weight: 600;
}
.date-time-line {
  display: flex;
  align-items: center;
  gap: 12px;
}
.date-time-line span.prefix {
  font-weight: 700;
  color: #b88640;
  min-width: 14px;
}
.date-time-line span.time-word {
  letter-spacing: 4px;
  color: #ddd;
}
.date-time-line span.time-word span.highlight {
  color: #b88640;
}


.search-bar {
  display: flex;
  gap: 12px;
  max-width: 640px;
  width: 100%;
}
.search-bar input[type="text"] {
  flex-grow: 1;
  padding: 14px 18px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  font-family: inherit;
  background: #1e160b;
  color: #eee;
  outline-offset: 2px;
  outline-color: #b88640;
}
.search-bar input[type="text"]::placeholder {
  color: #b3a177cc;
}
.search-bar button {
  background-color: #b88640;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  color: #1e160b;
  transition: background-color 0.3s ease;
}
.search-bar button:hover {
  background-color: #ddb86a;
}


.quick-access {
  max-width: 900px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.quick-access a {
  flex: 1 0 100px;
  min-width: 100px;
  max-width: 140px;
  background: #1e160b;
  border-radius: 10px;
  padding: 18px 12px;
  text-align: center;
  color: #eee;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(184,134,72,0.15);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.quick-access a:hover {
  background: #b88640;
  color: #0f0e0e;
  box-shadow: 0 0 25px #b88640;
}
.quick-access a i {
  font-size: 22px;
  pointer-events: none;
}


.info-cards {
  display: flex;
  gap: 20px;
  max-width: 640px;
  flex-wrap: wrap;
}
.info-card {
  background: #1e160b;
  border-radius: 12px;
  padding: 18px 24px;
  box-shadow: 0 0 20px rgba(184,134,72,0.15);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-width: 280px;
  flex-grow: 1;
}
.info-card i {
  font-size: 28px;
  color: #b88640;
  margin-top: 2px;
  min-width: 30px;
}
.info-text {
  flex-grow: 1;
}
.info-text strong {
  display: block;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 6px;
  color: #ddd;
}
.info-text small {
  font-size: 13px;
  color: #bdb1a0;
}


footer.status-bar {
  background: #0f0e0e;
  color: #bdb1a0;
  padding: 6px 16px;
  font-family: monospace;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 12px;
  user-select: none;
}
footer.status-bar .status-dot {
  width: 10px;
  height: 10px;
  background: #3c8c2f;
  border-radius: 50%;
}


.credits-section {
  max-width: 900px;
  width: 100%;
}

.credits-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #eee;
  margin: 0 0 12px 0;
}

.credits-subtitle {
  font-size: 18px;
  color: #bdb1a0;
  margin: 0 0 40px 0;
}

.credits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.credit-card {
  background: #1e160b;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 0 20px rgba(184,134,72,0.15);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.credit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(184,134,72,0.3);
}

.credit-icon {
  font-size: 48px;
  color: #b88640;
  margin-bottom: 20px;
}

.credit-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ddd;
  margin: 0 0 20px 0;
  border-bottom: 2px solid #b88640;
  padding-bottom: 12px;
}

.credit-names {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.credit-name {
  font-size: 18px;
  color: #eee;
  font-weight: 600;
  padding: 10px 16px;
  background: rgba(184,134,72,0.1);
  border-radius: 6px;
  border-left: 3px solid #b88640;
}

.credits-footer {
  text-align: center;
  padding: 24px;
  background: #1e160b;
  border-radius: 12px;
  margin-top: 20px;
}

.credits-footer p {
  margin: 0;
  font-size: 16px;
  color: #bdb1a0;
  font-style: italic;
}


@media (max-width: 900px) {
  main.content {
    padding: 30px 20px;
  }
  .quick-access {
    justify-content: center;
  }
  .credits-grid {
    grid-template-columns: 1fr;
  }
  
  
  #bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/bg/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
  }  
}