body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #111;
  background-image: url("https://maseramer.neocities.org/Images/retrowall.jpg");
  color: white;
}

h1, h2, .top-menu a {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
}

.container {
  width: 1100px;
  margin: 40px auto;
  background: #1a1a1a;
  border: 2px solid #fc3558;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 1); 
}

header {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  background: url("https://maseramer.neocities.org/Images/futurebanner.png") center/cover no-repeat;
  padding: 5px 10px;
  border-bottom: 2px solid #fc3558;
}

footer {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.logo-area {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  width: 110px;
}

.top-menu {
  margin-top: 15px;
}

.top-menu a {
  color: white;
  text-decoration: none;
  margin-right: 20px;
  padding: 8px 12px;
  background: #f93550;
}

.top-menu a:hover {
  background: #a5021f;
}

.main {
  display: flex;
}

.sidebar {
  width: 250px;
  background: #a5021f;
  padding: 15px;
}

.sidebar h3 {
  border-bottom: 1px solid #090016;
  padding-bottom: 5px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  margin: 8px 0;
}

.sidebar a {
  color: #090016;
  text-decoration: none;
}

#menu-lateral a {
    color: #080014; 
    text-decoration: none;
    display: block; 
    padding: 3px 5px;
}

#menu-lateral a:hover {
    background-color: #080014; 
    color: #fc0c20; 
}

.sidebar .active a {
  background: red;
  display: block;
  padding: 5px;
}

.content {
  flex: 1;
  padding: 25px;
  background-color: #090016;
  background-repeat: repeat;
}


footer {
  text-align: center;
  padding: 15px;
  background: #19003e;
  border-top: 2px #fc3558 ;
}

#enlaces-footer a {
    color: #fc3558; 
    text-decoration: none;
    margin: 0 10px;
    padding-bottom: 2px;

    border-bottom: 1px dotted transparent; 
    transition: border-bottom 0.2s;
}

#enlaces-footer a:hover {
    color: #fc3558;
    border-bottom: 1px dotted #fc3558; 
}

.caja-contenido {
    background-color: #090016; 
    border: 1px solid #fc3558; 
    border-radius: 5px; 
    padding: 15px; 
    margin-bottom: 15px; 
}

.galeria-episodios {
  display: flex;
  flex-wrap: wrap; 
  gap: 20px;       
  justify-content: center; 
}

.galeria-episodios img {
  width: 60px;    
  height: 60px;   
  object-fit: cover; 
  border: 3px solid #fc3558; 
  box-shadow: 5px 5px 15px rgba(0,0,0,0.5); 
}