body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: transparent;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
}

/* Capa Base: Video de Nebulosa */
#bg-video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    filter: brightness(0.6);
}

/* Capa de Proteccion Visual */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

/* Estructura de Contenido */
.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
}

.logo-ditcom {
    max-width: 300px;
    margin-bottom: 30px;
}

.status-box {
    border: 1px solid #00f2ff;
    padding: 15px 30px;
    background: rgba(0, 242, 255, 0.1);
    border-radius: 5px;
    margin-bottom: 40px;
}

.status-text {
    font-size: 1.2em;
    letter-spacing: 2px;
    color: #00f2ff;
    text-transform: uppercase;
}

.galaxy-table {
    border-collapse: collapse;
    width: 80%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    overflow: hidden;
}

.galaxy-table th, .galaxy-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.galaxy-table th {
    background: rgba(255, 255, 255, 0.1);
    text-align: left;
    color: #00f2ff;
}

.galaxy-table td {
    text-align: left;
    font-size: 0.9em;
}

.responsive-table {
    width: 100%;
    overflow-x: auto;
}