html {
    line-height: 1.225;
}
html,
body {
    margin: 0;
    padding: 0;
}
body {
    background-color: #880000;
    background-image: url("/Img/Background_1.jpg");
    background-attachment: fixed;
    background-position: center;
    background-size: 110% auto;
    background-repeat: repeat;
    font-family: verdana, arial, sans-serif, helvetica;
}
body::after {
    content: " ";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(18, 16, 16, 0.1);
    opacity: 0;
    z-index: 2;
    pointer-events: none;
    animation: flicker 0.15s infinite;
}
@keyframes flicker {
    0% { opacity: 0.27861; }
    5% { opacity: 0.34769; }
    10% { opacity: 0.23604; }
    15% { opacity: 0.90626; }
    20% { opacity: 0.18128; }
    25% { opacity: 0.83891; }
    30% { opacity: 0.65583; }
    35% { opacity: 0.67807; }
    40% { opacity: 0.26559; }
    45% { opacity: 0.84693; }
    50% { opacity: 0.96019; }
    55% { opacity: 0.08594; }
    60% { opacity: 0.20313; }
    65% { opacity: 0.71988; }
    70% { opacity: 0.53455; }
    75% { opacity: 0.37288; }
    80% { opacity: 0.71428; }
    85% { opacity: 0.70419; }
    90% { opacity: 0.7003; }
    95% { opacity: 0.36108; }
    100% { opacity: 0.24387; }
}
body::before {
    content: " ";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    z-index: 2;
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
}
.container {
    width: 810px;
    max-width: 100%;
    margin: 0 auto 10px;
}

/* --- NAV --- */

nav {
    border: 3px solid #000000;
}
nav::after { 
    content: "";
    display: block;
    width: 100%;
    height: 100px;
    background-image: url("https://i.postimg.cc/ZqWm6pY9/fantastic-distortion-banner-5.png");
    background-position: left center;
    background-repeat: repeat;
    background-size: auto 100%;
    animation: bgscroll 40s infinite linear;
}
@keyframes bgscroll {
    from { background-position: 0 50%; }
    to { background-position: 1000px 50%; }
}
nav .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000000;
    padding: 7px 10px;
}
nav .top .logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
nav .top .logo-link .LG {
    width: 100px;
    height: 100px;
    display: block;
}
nav .top .logo-link .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
nav .top .logo-link .logo-text .name {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 20px;
    color: #ffffff;
}
nav .top .logo-link .logo-text .domain {
    text-transform: lowercase;
    font-size: 15px;
    color: #808080;
}
nav .top .logo-link .logo-text .domain small {
    text-transform: uppercase;
    font-weight: bold;
    padding-left: 2px;
}
nav .top .search-bar form {
    display: flex;
    align-items: center;
    gap: 0; 
}
nav .top .search-bar input {
    background-color: #ffffff;
    border: 1px solid #444444;
    padding: 7px 10px;
    width: 200px;
    height: 30px;
    font-family: serif;
    font-style: italic;
    color: #222222;
    box-sizing: border-box;
}
nav .top .search-bar .search-actions {
    display: flex;
    align-items: center;
}
nav .top .search-bar .search-actions button {
    background: #000000;
    color: #cccccc;
    border: 1px solid #444444;
    margin-left: 5px;
    padding: 0 15px;
    height: 30px;
    cursor: pointer;
    font-family: 'Times New Roman', serif;
    text-transform: uppercase;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
nav .top .search-bar .search-actions button:hover {
    color: #ffffff;
    background: #222222;
}
nav .top .search-bar .search-actions .google-logo {
    height: 30px;
    width: auto;
    filter: drop-shadow(0px 0px 2px rgba(255,255,255,0.2));
    opacity: 0.8;
    transition: opacity 0.3s;
    margin-left: 5px;
    display: block;
}
nav .top .search-bar .search-actions .google-logo:hover {
    opacity: 1;
}
nav .top .EE {
    width: 100px;
    height: 100px;
}
nav .links {
    background-color: #000000;
    border-top: 2px solid #880000;
}
nav .links ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    background-color: #000000;
}
nav .links ul li {
    flex: 1;
    text-align: center;
}
nav .links ul li a {
    display: block;
    text-decoration: none;
    color: #ffffff;
    font-family: sans-serif;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 12px 5px;
    border-right: 1px solid #222222;
    transition: background 0.2s ease;
}
nav .links ul li a:hover {
    background: linear-gradient(to bottom, #aa0000, #440000);
    color: #ffffff;
}
nav .links ul li a:active {
    background: linear-gradient(to bottom, #880000, #220000);
    color: #ffffff;
}

/* --- Main --- */

main {
    display: flex;
    align-items: flex-start;
    background: #FFFFFF;
    padding: 7px 0px;  
    font-size: 80%;
    color: #000000;
}

/* Left */

.left-column {
    flex: 2;
    padding: 10px;
}

/* Section Info & Latest Uploads */

.section-info,
.main-display {
    background-color: #ece9d8;
    border: 3px solid #000000;
    border-radius: 8px 8px 0 0;
    margin: 10px 0;
}
.section-info .heading,
.main-display .heading {
    display: flex;
    align-items: center;
    height: 35px;
    padding: 0 8px;
    background-color: #000000;
    border-radius: 5px 5px 0 0;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.5);
}
.section-info .heading::before,
.main-display .heading::before {
    content: "";
    width: 25px;
    height: 25px;
    margin-right: 8px;
    flex-shrink: 0;
    background: url("/Icons/document_empty.png") no-repeat center / 100% 100%;
}
.section-info .heading h4,
.main-display .heading h4 {
    display: flex;
    align-items: center;
    margin: 0;
    flex-grow: 1;
    color: #ffffff;
    font: bold 13px 'Tahoma', 'Arial', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}
.section-info .heading::after,
.main-display .heading::after {
    content: "";
    width: 80px;
    height: 25px;
    flex-shrink: 0;
    cursor: pointer;
    background: url("/Img/boton-windows.png") no-repeat center / 100% 100%;
}
.section-info .inner-content,
.main-display .inner-content {
    background-color: #ece9d8;
    border: 2px solid #808080;
    border-bottom: none;
    padding: 7px 10px;
    justify-content: center;
    align-items: center;
}
.section-info .inner-content .contact-item,
.main-display .inner-content .contact-item {
    display: flex;
    align-items: center;
    gap: 12px; 
    margin-bottom: 15px;
    line-height: 1.2;
}
.section-info .inner-content .contact-item .icon,
.main-display .inner-content .contact-item .icon {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
}
.section-info .inner-content .contact-item strong, 
.section-info .inner-content .contact-item a {
    display: block;
}

















/* Section Generators */

.generators-section {
    background-color: #ece9d8;
    border: 3px solid #000000;
    border-radius: 8px 8px 0 0;
    margin: 10px 0;
}
.generators-section .heading {
    display: flex;
    align-items: center;
    height: 35px;
    padding: 0 8px;
    background-color: #000000;
    border-radius: 5px 5px 0 0;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.5);
}
.generators-section .heading::before {
    content: "";
    width: 25px;
    height: 25px;
    margin-right: 8px;
    flex-shrink: 0;
    background: url("/Icons/document_empty.png") no-repeat center / 100% 100%;
}
.generators-section .heading h4 {
    display: flex;
    align-items: center;
    margin: 0;
    flex-grow: 1;
    color: #ffffff;
    font: bold 13px 'Tahoma', 'Arial', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}
.generators-section .heading::after {
    content: "";
    width: 80px;
    height: 25px;
    flex-shrink: 0;
    cursor: pointer;
    background: url("/Img/boton-windows.png") no-repeat center / 100% 100%;
}
.generators-section .inner-content {
    background-color: #ece9d8;
    border: 2px solid #808080;
    border-bottom: none;
    padding: 7px 10px;
    justify-content: center;
    align-items: center;
}
.generators-section .inner-content .generators-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
    max-width: 508px;
    margin: 10px 0;
    padding: 7px 10px;
    box-sizing: border-box;
}
.generators-section .inner-content .generators-container .gen-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.generators-section .inner-content .generators-container .icon {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    text-align: center;
    display: block;
}
.generators-section .inner-content .generators-container .gen-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.generators-section .inner-content .generators-container .gen-text .adtitle a {
    font-weight: bold;
    color: #880000;
    text-decoration: none;
    font-size: 13px;
}
.generators-section .inner-content .generators-container .gen-text .adtitle a:hover {
    text-decoration: underline;
}
.generators-section .inner-content .generators-container .gen-text .adbody {
    font-size: 11px;
    color: #000000;
    line-height: 1.3;
}

/* Right */
.right-column {
    flex: 1;
    min-width: 300px;
    padding: 10px;
}

/* Profile Card */

.profile-card {
    background-color: #ece9d8;
    border: 3px solid #000000;
    border-radius: 8px 8px 0 0;
    margin: 10px 0;
}
.profile-card .heading {
    display: flex;
    align-items: center;
    height: 35px;
    padding: 0 8px;
    background-color: #000000;
    border-radius: 5px 5px 0 0;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.5);
}
.profile-card .heading::before {
    content: "";
    width: 25px;
    height: 25px;
    margin-right: 8px;
    flex-shrink: 0;
    background: url("/Icons/document_empty.png") no-repeat center / 100% 100%;
}
.profile-card .heading h4 {
    display: flex;
    align-items: center;
    margin: 0;
    flex-grow: 1;
    color: #ffffff;
    font: bold 13px 'Tahoma', 'Arial', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}
.profile-card .heading::after {
    content: "";
    width: 80px;
    height: 25px;
    flex-shrink: 0;
    cursor: pointer;
    background: url("/Img/boton-windows.png") no-repeat center / 100% 100%;
}
.profile-card .profile-photo {
    background-color: #ece9d8;
    border: 2px solid #808080;
    border-bottom: none;
    padding: 7px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.profile-card .profile-photo img {
    width: 130px;
    height: 130px;
    border: 2px solid #000000;
    object-fit: cover;
}
.profile-card .contact-links {
    background-color: #ece9d8;
    border: 2px solid #808080;
    border-top: none;
    padding: 7px 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.profile-card .contact-links a {
    display: block;
    text-decoration: none;
    color: #000000;
    background-color: #ece9d8; 
    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    border-right: 2px solid #808080;
    border-bottom: 2px solid #808080;
    padding: 5px;
    margin-bottom: 4px;
    text-align: center;
    font-family: 'Tahoma', sans-serif;
    font-size: 11px;
    font-weight: normal;
}
.profile-card .contact-links a:hover {
    background-color: #e5e2d1;
    border-top-color: #ffffff;
    border-left-color: #ffffff;
    border-right-color: #444444;
    border-bottom-color: #444444;
}
.profile-card .contact-links a:active {
    border-top: 2px solid #808080;
    border-left: 2px solid #808080;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    background-color: #d6d2c2;
    padding: 6px 4px 4px 6px;
}

/* Music Player */

.music-player {
    background: none;
    border: none;
    margin: 10px 0;
}
.music-player .heading {
    display: none;
}
.music-player .inner-content {
    background: none;
    border: none;
}
.music-player .inner-content .player {
    width: 100%;    
    background-color: #bfbfbf;
    background-image: url("https://i.postimg.cc/59r0Z0XL/56-sin-titulo-20260212061015.png");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: repeat;
    border: 1px solid #000000;
    display: flex; 
    flex-direction: row;
    align-items: center;
    padding: 7px 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
    flex-wrap: nowrap;
}
.music-player .inner-content .player .player-button {
    flex-shrink: 0;
}
.music-player .inner-content .player .player-button .icon-svg {
    width: 40px;
    height: 40px;
    background-color: #bfbfbf;
    background-image: url("https://i.postimg.cc/C5CwBFs6/63-sin-titulo-20260212063547.png");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: repeat;
    border: 1.5px solid #5a5a5a;
    border-radius: 7px;
    margin-right: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    fill: #5a5a5a;
    stroke: #ffffff;
    stroke-width: 0.5px;
    cursor: pointer;
}
.music-player .inner-content .player .player-button .icon-svg:hover {
    fill: #009900;
}
.music-player .inner-content .player .player-button .icon-svg:active {
    background-image: url("https://i.postimg.cc/GtPb8cxg/63-sin-titulo-20260212063530.png");
    fill: #009900;
    stroke: #000000;
}
.music-player .inner-content .player .player-button.error-state .icon-svg {
    pointer-events: none;
    fill: #5a5a5a;
}
.music-player .inner-content .player .player-display {
    display: flex;
    flex-grow: 1;
    align-items: center;
    padding: 0 12px;
    height: 40px; 
    background: #111111;
    border-radius: 6px;
    box-shadow: inset 0 2px 8px #000000;
    overflow: hidden;
    min-width: 0;
}
.music-player .inner-content .player .player-display .track-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow: hidden;
    min-width: 0;
}
.music-player .inner-content .player .player-display .track-info span {
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold; 
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.music-player .inner-content .player .player-display .equalizer {
    display: flex;
    align-items: flex-end;
    height: 25px;
    gap: 2px;
    margin: 0 10px;
    flex-shrink: 0;
}
.music-player .inner-content .player .player-display .equalizer span {
    width: 7px;
    height: 4px;
    background-image: url("https://i.postimg.cc/T3DxShTT/visuallizor.png");
    background-size: 7px 25px;
    background-position: bottom;
    background-repeat: no-repeat;
    animation: bounce 0.8s infinite ease-in-out;
    animation-play-state: paused;
}
@keyframes bounce {
    0%, 100% { height: 4px; }
    50% { height: 25px; }
}
.music-player .inner-content .player .player-display .vol-buttons {
    display: flex;
    flex-direction: column;
    margin-left: 5px;
}
.music-player .inner-content .player .player-display .vol-buttons .vol-btn {
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold; 
    user-select: none;
    cursor: pointer;
}
.music-player .inner-content .player .player-display .vol-buttons .vol-btn:hover {
    color: #009900;
}

/* Directory */

.navigation-links {
    background-color: #ece9d8;
    border: 3px solid #000000;
    border-radius: 8px 8px 0 0;
    margin: 10px 0;
}
.navigation-links .heading {
    display: flex;
    align-items: center;
    height: 35px;
    padding: 0 8px;
    background-color: #000000;
    border-radius: 5px 5px 0 0;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.5);
}
.navigation-links .heading::before {
    content: "";
    width: 25px;
    height: 25px;
    margin-right: 8px;
    flex-shrink: 0;
    background: url("/Icons/document_empty.png") no-repeat center / 100% 100%;
}
.navigation-links .heading h4 {
    display: flex;
    align-items: center;
    margin: 0;
    flex-grow: 1;
    color: #ffffff;
    font: bold 13px 'Tahoma', 'Arial', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}
.navigation-links .heading::after {
    content: "";
    width: 80px;
    height: 25px;
    flex-shrink: 0;
    cursor: pointer;
    background: url("/Img/boton-windows.png") no-repeat center / 100% 100%;
}
.navigation-links ul {
    list-style: none;
    padding: 7px 10px;
    margin: 0;
    background-color: #ece9d8;
    border: 2px solid #808080;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.navigation-links ul li a {
    text-decoration: none;
    color: #000000;
    background-color: #ece9d8;
    padding: 6px 10px;
    font: normal 11px 'Tahoma', sans-serif;
    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    border-right: 2px solid #808080;
    border-bottom: 2px solid #808080;
    display: flex;
    align-items: center;
    gap: 8px;
}
.navigation-links ul li a .icon {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
}
.navigation-links ul li a:hover {
    background-color: #e5e2d1;
    border-right-color: #444444;
    border-bottom-color: #444444;
}
.navigation-links ul li a:active {
    background-color: #d6d2c2;
    padding: 7px 9px 5px 11px;
    border-top: 2px solid #808080;
    border-left: 2px solid #808080;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
}

/* --- FOOTER --- */

footer {
    border: 3px solid #000000;
}
footer .footer-info {
    background-color: #ece9d8;
    color: #000000;
    padding: 7px 10px;
    font-size: 12px;
}
footer .footer-info strong {
    color: #880000;
    font-size: 14px;
    text-transform: uppercase;
}

footer .links {
    background-color: #000000;
    border-bottom: 2px solid #880000;
}
footer .links ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    background-color: #000000;
}
footer .links ul li {
    flex: 1;
    text-align: center;
}
footer .links ul li a {
    display: block;
    text-decoration: none;
    color: #ffffff;
    font-family: sans-serif;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 12px 5px;
    border-right: 1px solid #222222;
    transition: background 0.2s ease;
}
footer .links ul li a:hover {
    background: linear-gradient(to bottom, #aa0000, #440000);
    color: #ffffff;
}
footer .links ul li a:active {
    background: linear-gradient(to bottom, #880000, #220000);
    color: #ffffff;
}
footer .disclaimer {
    padding: 15px;
    background-color: #000000;
    font-size: 10px;
    text-align: center;
    color: #666666;
    line-height: 1.6;
}
footer .disclaimer i {
    color: #880000;
}
footer .disclaimer .copyright {
    margin-top: 10px;
    color: #444444;
    letter-spacing: 1px;
    font-weight: bold;
}

/* 📱 MOBILE 600px – TU ESTILO ORIGINAL */
/* ===================================== */

@media screen and (max-width: 600px) {

  /* Container centrado y simétrico */
  
  .container {
    width: 100%;
  }

  /* ================= NAV ================= */

  nav .top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  nav .top .logo-link {
    display: flex;
    align-items: center;
  }
  nav .top .search-bar {
    width: 100%;
  }
  nav .top .search-bar form {
    width: 100%;
    display: flex;
  }
  nav .top .search-bar input {
    flex: 1;
    width: 100%;
    box-sizing: border-box;
  }
  nav .top .search-bar .search-actions {
    display: flex;
    align-items: center;
  }
  nav .top .EE {
    display: none;
  }
  nav .links {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
  }
  nav .links ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 190%;
  }
  nav .links ul li {
    flex: 1;
    text-align: center;
  }
  main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px 0;
  }
  .left-column,
  .right-column {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }
}