/* muj.css - Moderní Dark Design pro data.rdp.cz */
body {
    font-family: 'Inter', sans-serif;
    background-color: #030303;
    color: #f1f1f1;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(80px);
    top: -200px;
    left: -200px;
}

.container {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    text-align: center;
}

/* Styl pro logo a jeho záři */
.logo-wrapper {
    position: relative;
    display: flex;   
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    width: 100%;        /* Aby se centrovalo vůči kontejneru */
}

.logo-img {
    height: auto;
    width: 350px;       /* šířka loga */
    max-width: 90%;     /* Pojistka pro mobily */
    filter: brightness(0) invert(1);
    position: relative;
    z-index: 10;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;       /* O něco větší než logo, aby zářilo kolem */
    height: 150px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    filter: blur(25px);
    pointer-events: none;
}

h1 {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, #fff 0%, #666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 10px 0;
}

.description {
    color: #555;
    font-size: 0.8rem;
    margin-bottom: 50px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Seznam souborů */
.file-list {
    text-align: left;
    display: grid;
    gap: 12px;
}

.file-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    text-decoration: none;
}

.file-item:hover {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
    transform: translateX(4px);
}

.file-name {
    color: #ccc;
    font-weight: 400;
    font-size: 0.95rem;
}

.file-item:hover .file-name {
    color: #fff;
}

.download-icon {
    color: #3b82f6;
    font-[10px];
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.footer-note {
    margin-top: 80px;
    opacity: 0.2;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}