@import url("/version.css");

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    box-sizing: border-box;
    padding: 72px 16px 48px;
    margin: 0;
    background-image: url('background.png'); /* Háttérkép */
    background-size: cover; /* Kép kitöltése az egész háttérre */
    background-repeat: no-repeat; /* Kép ne ismétlődjön */
    color: #ffffff; 
    text-shadow: 2px 2px 5px black, -1px -1px 0px black, 1px -1px 0px black, -1px 1px 0px black, 1px 1px 0px black;
}
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: inherit;
    filter: blur(6px);
    z-index: -1;
}
h1 {
    margin: 0 0 24px;
    text-align: center;
}
.guild-link { color: #ffffff; text-decoration-color: #78b7ff; text-underline-offset: 4px; }
.guild-link:hover { color: #9dcbff; }
.raid-progress {
    width: min(820px, 100%);
    margin-bottom: 20px;
    padding: 20px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.62);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 10px;
    text-align: center;
}
.raid-progress h2 { margin: 0 0 16px; }
.progress-era + .progress-era { margin-top: 22px; }
.progress-era > h3 { margin: 0 0 10px; color: #d8eaff; font-size: 1rem; }
.raid-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.raid-card { flex: 1 1 190px; padding: 14px; border: 1px solid rgba(255,255,255,.22); border-radius: 8px; background: rgba(0, 0, 0, .28); }
.raid-card.featured { border-color: rgba(255, 184, 61, .8); }
.raid-card h4, .raid-card p { margin: 0; }
.raid-card h4 { font-size: 1rem; }
.raid-highlight { margin: 10px 0 4px !important; color: #ffd166; font-size: 1.25rem; font-weight: bold; }
.raid-source { margin: 16px 0 0; color: #e1e1e1; font-size: .85rem; line-height: 1.4; }
.raid-source a { color: #9dcbff; }
.btn {
    display: inline-block;
    margin: 10px;
    padding: 12px 24px;
    font-size: 18px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}
.btn:hover {
    background-color: #0056b3;
}
.main-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.home-link {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    margin: 0;
}

body::after {
    content: var(--guild-version, "Guild v1.0.0");
    position: fixed;
    right: 12px;
    bottom: 10px;
    z-index: 1000;
    padding: 5px 8px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.55);
    color: #d8d8d8;
    font-family: Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-shadow: none;
    pointer-events: none;
}
