/* DJ Thief - Modern Layout without iframes */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Tahoma, 'Helvetica Neue', Arial, sans-serif;
  background-color: #777777;
  background-image: url(bg.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #000000;
  line-height: 1.6;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 30px;
}

.header-flash {
  display: inline-block;
  margin-bottom: 20px;
}

/* Navigation */
.nav-container {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 5px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.nav-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-menu li {
  border-right: 1px solid #2a2a2a;
}

.nav-menu li:last-child {
  border-right: none;
}

.nav-menu a {
  display: block;
  padding: 15px 25px;
  color: #999;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.nav-menu a:hover {
  color: #fff;
  background: #2a2a2a;
  border-bottom-color: #fff;
}

.nav-menu a.active {
  color: #fff;
  background: #2a2a2a;
  border-bottom-color: #fff;
  font-weight: 600;
}

/* Main Content */
.content {
  background: rgba(119, 119, 119, 0.95);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  min-height: 500px;
}

.content h1 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 20px;
  border-left: 4px solid #fff;
  padding-left: 15px;
}

.content h2 {
  font-size: 24px;
  color: #fff;
  margin: 30px 0 15px 0;
}

.content h3 {
  font-size: 18px;
  color: #fff;
  margin: 20px 0 10px 0;
}

.content p {
  font-size: 12px;
  margin-bottom: 15px;
  color: #fff;
}

.content img {
  max-width: 100%;
  height: auto;
}

.content a {
  color: #fff;
  text-decoration: underline;
}

.content a:hover {
  color: #ddd;
}

/* Footer */
.footer {
  text-align: center;
  padding: 30px 20px;
  color: #ccc;
  font-size: 11px;
}

/* Responsive */
@media (max-width: 768px) {
  .wrapper {
    padding: 10px;
  }

  .content {
    padding: 20px;
  }

  .nav-menu {
    flex-direction: column;
  }

  .nav-menu li {
    border-right: none;
    border-bottom: 1px solid #2a2a2a;
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu a {
    padding: 12px 20px;
    border-bottom: none;
    border-left: 3px solid transparent;
  }

  .nav-menu a:hover,
  .nav-menu a.active {
    border-left-color: #fff;
    border-bottom-color: transparent;
  }

  .header-flash {
    width: 100%;
    max-width: 430px;
  }

  .header-flash embed {
    width: 100%;
    height: auto;
  }
}

/* Specific content styling */
.bio-section {
  margin: 20px 0;
  padding: 20px;
  background: #5a5a5a;
  border-radius: 5px;
}

.top-ten {
  background: #333;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  margin: 20px 0;
}

.top-ten h3 {
  color: #fff;
  margin-bottom: 15px;
}

.top-ten ol {
  margin-left: 20px;
}

.top-ten li {
  margin-bottom: 8px;
  font-size: 12px;
}

.image-left {
  float: left;
  margin: 0 15px 15px 0;
  max-width: 200px;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
