body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #0b0f13;
    color: #bfe4ff;
    text-align: center;
}

.fenrir-header {
    padding: 50px 0;
}

.fenrir-header h1 {
    letter-spacing: 20px;
    font-size: 40px;
    margin: 10px 0 0 0;
    color: #9bd7ff;
}

.fenrir-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 40px;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(155, 215, 255, 0.1);
    backdrop-filter: blur(4px);
    box-shadow: 0 0 15px #0e6b9e44;
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 25px #52a8ff66;
}

.fenrir-logo {
    width: 200px;      /* můžeš zvětšit třeba na 260px */
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    image-rendering: optimizeQuality;
}


.rune-icon {
    font-size: 22px;
    margin-right: 10px;
    color: var(--cold-cyan);
    text-shadow: 0 0 6px #6ec9ff;
}

#recentHunts li {
    margin: 10px 0;
    text-align: left;
    padding: 8px 12px;
    background: rgba(255,255,255,0.03);
    border-left: 3px solid #4fc3f7;
    border-radius: 5px;
    list-style: none;
    box-shadow: 0 0 12px rgba(110,201,255,0.2);
    transition: 0.3s;
}

#recentHunts li:hover {
    transform: translateX(4px);
    box-shadow: 0 0 18px rgba(110,201,255,0.4);
}
